-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoperators.py
305 lines (245 loc) · 10 KB
/
operators.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
import math
import bpy
from . import utils
class OBJECT_OT_lightfield_add(bpy.types.Operator):
"""
Operator to add a lightfield to the scene
"""
bl_idname = 'object.lightfield_add'
bl_label = "Lightfield"
bl_description = "Add a lightfield setup to the scene"
bl_options = {'REGISTER', 'UNDO'}
action = bpy.props.EnumProperty(
items=[
('PLANE', "Plane", ""),
('CUBOID', "Cuboid", ""),
('CYLINDER', "Cylinder", ""),
('SPHERE', "Sphere", "")]
)
def execute(self, context):
scn = context.scene
scn.lightfield_index = len(scn.lightfield)
lf = (utils.get_lightfield_class(self.action))(scn.lightfield.add())
lf.index = scn.lightfield_index
lf.construct()
return {'FINISHED'}
class LIGHTFIELD_OT_move(bpy.types.Operator):
"""Move items up and down"""
bl_idname = "lightfield.list_move"
bl_label = "List Move"
bl_description = "Move items up and down"
bl_options = {'REGISTER'}
direction = bpy.props.EnumProperty(
items=[
('UP', "Up", ""),
('DOWN', "Down", "")]
)
def invoke(self, context, event):
scn = context.scene
idx = scn.lightfield_index
try:
item = scn.lightfield[idx]
except IndexError:
pass
else:
if self.direction == 'DOWN' and idx < len(scn.lightfield) - 1:
item_next = scn.lightfield[idx + 1]
item.index += 1
item_next.index -= 1
scn.lightfield.move(idx, idx + 1)
scn.lightfield_index += 1
elif self.direction == 'UP' and idx >= 1:
item_prev = scn.lightfield[idx - 1]
item.index -= 1
item_prev.index += 1
scn.lightfield.move(idx, idx - 1)
scn.lightfield_index -= 1
return {"FINISHED"}
class LIGHTFIELD_OT_make_camera_active(bpy.types.Operator):
"""Make the camera of the selected light field the active one for the scene"""
bl_idname = "lightfield.make_camera_active"
bl_label = "Make Light Field camera active for scene"
bl_description = "Make the camera of the selected light field active the active one for the scene"
bl_options = {'REGISTER', 'UNDO'}
def invoke(self, context, event):
lf = context.scene.lightfield[context.scene.lightfield_index]
lf = (utils.get_lightfield_class(lf.lf_type))(lf)
context.scene.camera = lf.obj_camera
render_settings = bpy.context.scene.render
render_settings.resolution_x = lf.res_x
render_settings.resolution_y = lf.res_y
return {"FINISHED"}
class LIGHTFIELD_OT_select(bpy.types.Operator):
"""Select the current lightfield in the viewport"""
bl_idname = "lightfield.select"
bl_label = "Select in viewport"
bl_description = "Select the current lightfield in the viewport"
bl_options = {'REGISTER', 'UNDO'}
def execute(self, context):
scn = context.scene
idx = scn.lightfield_index
if idx == -1 or idx >= len(scn.lightfield):
return {'CANCELLED'}
ob = scn.lightfield[idx].obj_empty
bpy.ops.object.select_all(action='DESELECT')
ob.select_set(True)
context.view_layer.objects.active = ob
return {"FINISHED"}
class LIGHTFIELD_OT_update(bpy.types.Operator):
"""Update the light field setup"""
bl_idname = "lightfield.update"
bl_label = """Update the light field setup"""
bl_options = {'REGISTER'}
def execute(self, context):
lf = utils.get_active_lightfield(context)
collection = utils.get_lightfield_collection()
name = None
if lf.obj_grid:
name = lf.obj_grid.name
bpy.data.meshes.remove(lf.obj_grid.data)
grid = lf.create_grid()
lf.obj_grid = grid
if name:
grid.name = name
collection.objects.link(grid)
grid.parent = lf.obj_empty
grid.hide_select = True
bpy.context.view_layer.objects.active = lf.obj_empty
scene = bpy.context.scene
rb = scene.render
if context.scene.camera == lf.obj_camera:
# The camera is this one, update the resolution
rb.resolution_x = lf.res_x
rb.resolution_y = lf.res_y
return {'FINISHED'}
class LIGHTFIELD_OT_update_preview(bpy.types.Operator):
"""Update the light field setup"""
bl_idname = "lightfield.update_preview"
bl_label = """Update the light field preview"""
bl_options = {'REGISTER'}
def execute(self, context):
lf = context.scene.lightfield[context.scene.lightfield_index]
lf = (utils.get_lightfield_class(lf.lf_type))(lf)
if lf.lf_type == 'PLANE':
# Percentage part in the x direction
sides = [lf.num_cams_x, lf.num_cams_y]
num_cameras = sides[0] * sides[1]
cam_idx = int(lf.camera_preview_index * 0.01 * (num_cameras - 1))
cam_idx_x = cam_idx % sides[0]
cam_idx_y = cam_idx // sides[0]
pos = lf.get_camera_pos(cam_idx_x, cam_idx_y)
elif lf.lf_type == 'CUBOID':
side_map = lf.get_side_map()
sides = side_map[lf.camera_side]
num_cameras = sides[0] * sides[1]
cam_idx = int(lf.camera_preview_index * 0.01 * (num_cameras - 1))
cam_idx_x = cam_idx % sides[0]
cam_idx_y = cam_idx // sides[0]
pos = lf.get_camera_pos(lf.camera_side, cam_idx_x, cam_idx_y)
elif lf.lf_type == 'CYLINDER':
sides = [lf.num_cams_radius, lf.num_cams_y]
num_cameras = sides[0] * sides[1]
cam_idx = int(lf.camera_preview_index * 0.01 * (num_cameras - 1))
cam_idx_r = cam_idx % sides[0]
cam_idx_y = cam_idx // sides[0]
pos = lf.get_camera_pos(cam_idx_y, cam_idx_r)
elif lf.lf_type == 'SPHERE':
index = int((lf.camera_preview_index * 0.01) * (len(lf.obj_grid.data.vertices) - 1))
pos = lf.get_camera_pos(index)
else:
raise KeyError()
lf.obj_camera.location = pos.location()
lf.obj_camera.rotation_euler = pos.rotation()
return {'FINISHED'}
class LIGHTFIELD_OT_update_camera(bpy.types.Operator):
"""Update the light field setup camera"""
bl_idname = "lightfield.update_camera"
bl_label = """Update the light field camera"""
bl_options = {'REGISTER'}
def execute(self, context):
lf = utils.get_active_lightfield(context)
if lf.cube_camera:
lf.dummy_focal_length = lf.data_camera.lens
lf.data_camera.angle = math.pi / 2
else:
lf.data_camera.lens = lf.dummy_focal_length
return {'FINISHED'}
class LIGHTFIELD_OT_update_size(bpy.types.Operator):
"""Update the light field setup size"""
bl_idname = "lightfield.update_size"
bl_label = """Update the light field size"""
bl_options = {'REGISTER'}
def execute(self, context):
lf = utils.get_active_lightfield(context)
collection = utils.get_lightfield_collection()
return {'FINISHED'}
class LIGHTFIELD_OT_render(bpy.types.Operator):
"""Update the light field setup"""
bl_idname = "lightfield.render"
bl_label = """Render the lightfield"""
bl_options = {'REGISTER'}
def execute(self, context):
lf = context.scene.lightfield[context.scene.lightfield_index]
lf = (utils.get_lightfield_class(lf.lf_type))(lf)
lf.render()
return {'FINISHED'}
class OBJECT_OT_lightfield_delete(bpy.types.Operator):
"""
Operator to delete a lightfield from the scene
"""
bl_idname = 'object.lightfield_delete'
bl_label = "Delete"
bl_description = "Delete lightfield"
bl_options = {'REGISTER', 'UNDO'}
index = bpy.props.IntProperty(default=-1)
confirm = bpy.props.BoolProperty(name="Confirm", description="Prompt for confirmation", default=True)
def execute(self, context):
if self.index == -1:
lf = utils.get_active_lightfield(context)
if lf is None:
return
else:
lf = context.scene.lightfield[self.index]
lf = (utils.get_lightfield_class(lf.lf_type))(lf)
lf.deconstruct()
lightfields = context.scene.lightfield
for i in range(lf.index + 1, len(lightfields)):
lightfields[i].index -= 1
lightfields.remove(lf.index)
if context.scene.lightfield_index >= len(lightfields):
context.scene.lightfield_index = len(lightfields) - 1
return {'FINISHED'}
def invoke(self, context, event):
if not self.confirm:
return self.execute(context)
else:
return context.window_manager.invoke_confirm(self, event)
class LIGHTFIELD_OT_delete_override(bpy.types.Operator):
"""
Operator to delete a lightfield from the scene
"""
bl_idname = 'object.delete'
bl_label = "Delete"
bl_description = "Delete"
bl_options = {'REGISTER', 'UNDO'}
use_global = bpy.props.BoolProperty(name="Delete Globally", description="Remove object from all scenes")
confirm = bpy.props.BoolProperty(name="Confirm", description="Prompt for confirmation", default=True)
@classmethod
def poll(cls, context):
return context.active_object is not None
def execute(self, context):
lfs = [lf.obj_empty for lf in context.scene.lightfield]
for o in context.selected_objects:
if o in lfs:
bpy.ops.object.lightfield_delete('EXEC_DEFAULT',
index=context.scene.lightfield[lfs.index(o)].index,
confirm=self.confirm)
else:
bpy.data.objects.remove(o, do_unlink=True)
self.confirm = True
return {'FINISHED'}
def invoke(self, context, event):
if not self.confirm:
return self.execute(context)
else:
return context.window_manager.invoke_confirm(self, event)