-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgui.py
465 lines (368 loc) · 15.1 KB
/
gui.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
from bpy.types import Panel, UIList, Menu
import bpy
from . import utils
import os
# Whether to display data-panel or not.
class LightfieldButtonsPanel:
bl_space_type = 'PROPERTIES'
bl_region_type = 'WINDOW'
bl_context = 'data'
@classmethod
def poll(cls, context):
ob = context.object
if (not ob) or (not ob.type == 'EMPTY'):
return False
scn = context.scene
lf = scn.lightfield
for lightfield in lf:
if lightfield.obj_empty == ob:
return True
return False
# -------------------------------------------------------------------
# Data tab
# -------------------------------------------------------------------
class DATA_PT_lightfield_setup(LightfieldButtonsPanel, Panel):
bl_label = 'Setup'
bl_options = {'HIDE_HEADER'}
def draw(self, context):
lf = utils.get_active_lightfield(context)
if lf is None:
return
layout = self.layout
layout.label(text="Lightfield type: {}".format(lf.lf_type.capitalize()))
layout.use_property_split = True
layout.use_property_decorate = False
# Number of cameras
col = layout.column(align=True)
# Only needed for cuboid and plane
if lf.lf_type in ['CUBOID', 'PLANE']:
col.prop(lf, "num_cams_x", text='Cameras X')
# Needed for all types
if lf.lf_type != 'SPHERE':
col.prop(lf, "num_cams_y", text='Y')
# Only needed for cuboid
if lf.lf_type == 'CUBOID':
col.prop(lf, "num_cams_z", text='Z')
elif lf.lf_type == 'CYLINDER':
col.prop(lf, "num_cams_radius", text='Circumference')
elif lf.lf_type == 'SPHERE':
col.prop(lf, "num_cams_subdiv", text='Subdivisions')
layout.separator_spacer()
# if lf.lf_type not in ['CUBOID', 'PLANE']:
# col = layout.column(align=True)
# col.prop(lf, "size_x", text='Size X')
# col.prop(lf, "size_y", text='Y')
# col.prop(lf, "size_z", text='Z')
class DATA_PT_lightfield_camera(LightfieldButtonsPanel, Panel):
bl_label = 'Camera Settings'
def draw(self, context):
lf = utils.get_active_lightfield(context)
if lf is None:
return
layout = self.layout
layout.use_property_split = True
cam = lf.data_camera
# Render as cube camera
col = layout.column(align=True)
col.prop(lf, "cube_camera", text="Cube Camera")
col.prop(lf, "face_inside", text="Face Inside")
# Resolution
col.prop(lf, "res_x", text="Resolution X")
col.prop(lf, "res_y", text="Y")
# FOV
col = layout.column()
if not lf.cube_camera:
if cam.lens_unit == 'MILLIMETERS':
col.prop(cam, "lens")
elif cam.lens_unit == 'FOV':
col.prop(cam, "angle")
col.prop(cam, "lens_unit")
else:
scene = bpy.context.scene
rb = scene.render
res_x = lf.res_x
res_y = lf.res_y
if res_x != res_y:
col.label(text="Error: Resolution not square: %d x %d" % (res_x, res_y), icon='ERROR')
# Sensor fit
col = layout.column()
col.prop(cam, "sensor_fit")
if cam.sensor_fit == 'AUTO':
col.prop(cam, "sensor_width", text="Size")
else:
sub = col.column(align=True)
sub.active = cam.sensor_fit == 'HORIZONTAL'
sub.prop(cam, "sensor_width", text="Width")
sub = col.column(align=True)
sub.active = cam.sensor_fit == 'VERTICAL'
sub.prop(cam, "sensor_height", text="Height")
# Near and Far
col = layout.column()
col.separator()
col.separator()
sub = col.column(align=True)
sub.prop(cam, "clip_start", text="Clip Start")
sub.prop(cam, "clip_end", text="End")
class DATA_PT_lightfield_dof(LightfieldButtonsPanel, Panel):
bl_label = "Depth of Field"
COMPAT_ENGINES = {'BLENDER_EEVEE', 'BLENDER_WORKBENCH'}
def draw_header(self, context):
lf = utils.get_active_lightfield(context)
if lf is None:
return
cam = lf.data_camera
dof = cam.dof
self.layout.prop(dof, "use_dof", text="")
def draw(self, context):
lf = utils.get_active_lightfield(context)
if lf is None:
return
layout = self.layout
layout.use_property_split = True
cam = lf.data_camera
dof = cam.dof
layout.active = dof.use_dof
col = layout.column()
col.prop(dof, "focus_distance", text="Focus Distance")
class DATA_PT_lightfield_dof_aperture(LightfieldButtonsPanel, Panel):
bl_label = "Aperture"
bl_parent_id = "DATA_PT_lightfield_dof"
COMPAT_ENGINES = {'BLENDER_EEVEE', 'BLENDER_WORKBENCH'}
def draw(self, context):
lf = utils.get_active_lightfield(context)
if lf is None:
return
layout = self.layout
layout.use_property_split = True
cam = lf.data_camera
dof = cam.dof
layout.active = dof.use_dof
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=False)
col = flow.column()
col.prop(dof, "aperture_fstop")
col = flow.column()
col.prop(dof, "aperture_blades")
col.prop(dof, "aperture_rotation")
col.prop(dof, "aperture_ratio")
# -------------------------------------------------------------------
# Settings tab in 3D view
# -------------------------------------------------------------------
# Responsible for items in lightfield list
class LIGHTFIELD_UL_items(UIList):
def draw_item(self, context, layout, data, item, icon, active_data, active_property, index, flt_flag):
if item.lf_type == 'PLANE':
custom_icon = "MESH_GRID"
elif item.lf_type == 'CUBOID':
custom_icon = "CUBE"
elif item.lf_type == 'CYLINDER':
custom_icon = "MESH_CYLINDER"
elif item.lf_type == 'SPHERE':
custom_icon = "SPHERE"
else:
custom_icon = "OUTLINER_OB_EMPTY"
layout.label(text=item.obj_empty.name, icon=custom_icon)
def invoke(self, context, event):
print('invoke')
# List with all lightfields
class LIGHTFIELD_PT_list(Panel):
bl_label = "Lightfields"
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_category = 'Lightfield'
bl_context = "objectmode"
bl_options = {'HIDE_HEADER'}
def draw(self, context):
scn = context.scene
layout = self.layout
layout.use_property_split = True
list = layout.row()
items = list.column()
items.template_list("LIGHTFIELD_UL_items", "", scn, "lightfield", scn, "lightfield_index", rows=3)
buttons = items.row(align=True)
lf = utils.get_active_lightfield(context)
if lf and lf.index != scn.lightfield_index:
buttons.operator("lightfield.select", icon='RESTRICT_SELECT_OFF', text='')
else:
buttons.operator("lightfield.select", icon='RESTRICT_SELECT_ON', text='', emboss=False)
buttons.active = scn.lightfield_index != -1
buttons.operator("lightfield.render", icon='OUTLINER_DATA_CAMERA', text='Render Lightfield')
layout.prop(scn, "lightfield_autoselect", text="Auto-select")
layout.prop(scn, "lightfield_dryrun", text="Dry-run")
layout.prop(scn, "lightfield_donotoverwrite", text="Do not re-render existing view files")
operations = list.column()
add_del = operations.column(align=True)
add_del.menu("VIEW3D_MT_lightfield_add", icon='ADD', text="")
row_del = add_del.row(align=True)
row_del.operator("object.lightfield_delete", icon='REMOVE', text="").index = scn.lightfield_index
row_del.active = (scn.lightfield_index != -1)
move = operations.column(align=True)
if len(scn.lightfield) > 1:
move.operator("lightfield.list_move", icon='TRIA_UP', text="").direction = 'UP'
move.operator("lightfield.list_move", icon='TRIA_DOWN', text="").direction = 'DOWN'
layout.separator()
# Render-settings per lightfield
class LIGHTFIELD_PT_rendering(Panel):
bl_label = 'Rendering'
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_category = 'Lightfield'
bl_context = "objectmode"
def draw(self, context):
if context.scene.lightfield_index == -1:
return
lf = context.scene.lightfield[context.scene.lightfield_index]
lf = (utils.get_lightfield_class(lf.lf_type))(lf)
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False
col = layout.column(align=True)
col.prop(lf, "sequence_start", text="Frame Start")
col.prop(lf, "sequence_end", text="End")
col.prop(lf, "sequence_steps", text="Step")
col = layout.column(align=True)
col.prop(lf, "output_depth", text="Depth (OpenEXR)")
# Preview settings per lightfield
class LIGHTFIELD_PT_preview(Panel):
bl_label = 'Preview'
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_category = 'Lightfield'
bl_context = "objectmode"
def draw(self, context):
if context.scene.lightfield_index == -1:
return
lf = context.scene.lightfield[context.scene.lightfield_index]
lf = (utils.get_lightfield_class(lf.lf_type))(lf)
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False
col = layout.column(align=True)
col.label(text="Preview Camera:")
scene = bpy.context.scene
rb = scene.render
res_x = rb.resolution_x
res_y = rb.resolution_y
res_wrong = lf.res_x != res_x or lf.res_y != res_y
if res_wrong:
col.label(text="Resolution: %d x %d (Not updated!)" % (res_x, res_y), icon='ERROR')
else:
col.label(text="Resolution: %d x %d" % (res_x, res_y), icon='TEXTURE')
if lf.lf_type == 'CUBOID':
col.prop(lf, "camera_side", text="Side")
col.prop(lf, "camera_facing", text="Facing")
col = layout.column(align=True)
col.prop(lf, "camera_preview_index", text="Grid index")
if res_wrong or lf.obj_camera != scene.camera:
layout.operator("lightfield.make_camera_active",
icon='OUTLINER_DATA_CAMERA',
text='Make LF camera the active scene camera')
import textwrap
def _label_multiline(context, text, parent):
chars = int(context.region.width / 7) # 7 pix on 1 character
wrapper = textwrap.TextWrapper(width=chars)
text_lines = wrapper.wrap(text=text)
for i, text_line in enumerate(text_lines):
if i == 0:
parent.label(text=text_line, icon='FILE_FOLDER')
else:
parent.label(text=" " + text_line)
# Output settings per lightfield
class LIGHTFIELD_PT_output(Panel):
bl_label = 'Output'
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_category = 'Lightfield'
bl_context = "objectmode"
def draw(self, context):
if context.scene.lightfield_index == -1:
return
lf = context.scene.lightfield[context.scene.lightfield_index]
lf = (utils.get_lightfield_class(lf.lf_type))(lf)
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False
col = layout.column(align=True)
col.label(text="Base folder:")
col.prop(lf, "output_directory")
col = col.column(align=True)
col.scale_y = 0.8
col.separator(factor=1.6)
col.label(text=" --- Review --- ")
col.separator(factor=1.6)
col.label(text="Absolute path to base folder:")
col.label(text=lf.get_output_directory(), icon='FILE_FOLDER')
col.separator(factor=1.6)
col.label(text="Absolute path to config file:")
col.label(text=lf.get_path_config_file(), icon='FILE_BLANK')
col.separator(factor=1.6)
col.label(text="Absolute path to image folder:")
col.label(text=lf.get_output_image_directory(), icon='RENDERLAYERS')
col.separator(factor=1.6)
col.label(text="Absolute path to first image:")
first_image_name = next(lf.position_generator()).name + lf.get_extension()
col.label(text=os.path.join(lf.get_output_image_directory(), first_image_name), icon='FILE_IMAGE')
#_label_multiline(context=context, text=lf.get_output_directory(), parent=col)
# TODO: add settings like RGB, image format, color depth and compression (see render tab)
# Persistence settings per lightfield
class LIGHTFIELD_PT_persistence(Panel):
bl_label = 'Persistence'
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_category = 'Lightfield'
bl_context = "objectmode"
def draw(self, context):
if context.scene.lightfield_index == -1:
return
lf = context.scene.lightfield[context.scene.lightfield_index]
lf = (utils.get_lightfield_class(lf.lf_type))(lf)
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False
col = layout.column(align=True)
col.prop(lf, "path_config_file")
# TODO: add persistence
# row = layout.column(align=True)
# row.operator("scene.load_lightfield", text="Load", icon="EXPORT")
# row.operator("scene.save_lightfield", text="Save", icon="IMPORT")
# Not used
class LIGHTFIELD_PT_settings(Panel):
bl_label = "Lightfield"
bl_idname = "LIGHTFIELD_PT_settings"
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_category = 'Lightfield'
bl_context = "objectmode"
def draw(self, context):
scn = context.scene
layout = self.layout
layout.use_property_split = True
# -------------------------------------------------------------------
# Menus
# -------------------------------------------------------------------
class VIEW3D_MT_lightfield_add(Menu):
"""
Menu for adding lightfields
"""
bl_idname = "VIEW3D_MT_lightfield_add"
bl_label = "Lightfield"
def draw(self, context):
layout = self.layout
layout.operator_context = 'INVOKE_REGION_WIN'
layout.operator('object.lightfield_add',
text="Lightfield Plane",
icon='MESH_GRID').action = 'PLANE'
layout.operator('object.lightfield_add',
text="Lightfield Cuboid",
icon='CUBE').action = 'CUBOID'
layout.operator('object.lightfield_add',
text="Lightfield Cylinder",
icon='MESH_CYLINDER').action = 'CYLINDER'
layout.operator('object.lightfield_add',
text="Lightfield Sphere",
icon='SPHERE').action = 'SPHERE'
def add_lightfield(self, context):
"""
Function to be appended to an existing menu.
Allows for adding lightfields to the scene.
"""
self.layout.menu("VIEW3D_MT_lightfield_add", icon='LIGHTPROBE_GRID')