forked from leomoon-studios/leomoon-lightstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlight_data.py
265 lines (227 loc) · 12 KB
/
light_data.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
import bpy
from . common import family
from . operators import VERBOSE
import os
class LightDict:
_dict = {
"advanced": {
"tex": "Soft Box A.exr",
"Texture Switch": 1.0,
"Color Overlay": [
1.0,
0.4000000059604645,
0.15000000596046448,
1.0
],
"Color Saturation": 0.0,
"Intensity": 2.0,
"Mask - Gradient Switch": 0.0,
"Mask - Gradient Type": 0.0,
"Mask - Gradient Amount": 0.0,
"Mask - Ring Switch": 0.0,
"Mask - Ring Inner Radius": 0.0,
"Mask - Ring Outer Radius": 0.0,
"Mask - Top to Bottom": 0.0,
"Mask - Bottom to Top": 0.0,
"Mask - Left to Right": 0.0,
"Mask - Right to Left": 0.0,
"Mask - Diagonal Top Left": 0.0,
"Mask - Diagonal Top Right": 0.0,
"Mask - Diagonal Bottom Right": 0.0,
"Mask - Diagonal Bottom Left": 0.0
},
"basic": {
"color": [
1.0,
1.0,
1.0
],
"color_saturation": 0.0,
"intensity": 2.0,
},
"light_name": "",
"order_index": 0,
"radius": 30.0,
"position": [
0.0,
0.0
],
"rotation": 0.0,
"scale": [
1.0,
1.0,
1.0
],
"type": "ADVANCED"
}
def __init__(self, real_dict=None):
import copy
self.dict = copy.deepcopy(self._dict)
if real_dict:
self.dict.update(real_dict)
def __getitem__(self, key):
return self.dict[key]
def __setitem__(self, key, val):
self.dict[key] = val
def __str__(self):
import json
return json.dumps(self.dict, indent=4, separators=(',', ': '))
def salvage_data(lls_collection):
# Salvage data
objects = [ob for ob in lls_collection.objects]
light_handle = [ob for ob in objects if ob.name.startswith("LLS_LIGHT.")]
if light_handle: light_handle = light_handle[0]
family_obs = family(light_handle)
lls_mesh = [ob for ob in family_obs if ob.name.startswith("LLS_LIGHT_MESH")]
if lls_mesh: lls_mesh = lls_mesh[0]
lls_basic = [ob for ob in family_obs if ob.name.startswith("LLS_LIGHT_AREA")]
if lls_basic: lls_basic = lls_basic[0]
lls_handle = [ob for ob in family_obs if ob.name.startswith("LLS_LIGHT_HANDLE")]
if lls_handle: lls_handle = lls_handle[0]
# old version
light = LightDict()
if lls_mesh:
# Include obsolete values. Newer lls_handle will override them (if found)
try:
light['light_name'] = lls_mesh.LLStudio.light_name
light['order_index'] = lls_mesh.LLStudio.order_index
light['radius'] = lls_mesh.location.x
light['position'] = [lls_mesh.parent.rotation_euler.x, lls_mesh.parent.rotation_euler.y]
light['rotation'] = -lls_mesh.rotation_euler.x
light['type'] = 'ADVANCED'
light['light_name'] = lls_mesh.LLStudio.light_name
light['order_index'] = lls_mesh.LLStudio.order_index
light['scale'] = [lls_mesh.scale.y, lls_mesh.scale.x, lls_mesh.scale.z]
# advanced
texpath = lls_mesh.material_slots[0].material.node_tree.nodes["Light Texture"].image.filepath
light['advanced']['tex'] = texpath.split(bpy.path.native_pathsep("\\textures_real_lights\\"))[-1]
mat_nodes = lls_mesh.active_material.node_tree.nodes
light['advanced']['Texture Switch'] = mat_nodes["Group"].inputs[2].default_value
light['advanced']['Color Overlay'] = [mat_nodes["Group"].inputs[3].default_value[0],
mat_nodes["Group"].inputs[3].default_value[1],
mat_nodes["Group"].inputs[3].default_value[2],
mat_nodes["Group"].inputs[3].default_value[3]]
light['advanced']['Color Saturation'] = mat_nodes["Group"].inputs[4].default_value
light['advanced']['Intensity'] = mat_nodes["Group"].inputs[5].default_value
light['advanced']['Mask - Gradient Switch'] = mat_nodes["Group"].inputs[6].default_value
light['advanced']['Mask - Gradient Type'] = mat_nodes["Group"].inputs[7].default_value
light['advanced']['Mask - Gradient Amount'] = mat_nodes["Group"].inputs[8].default_value
light['advanced']['Mask - Ring Switch'] = mat_nodes["Group"].inputs[9].default_value
light['advanced']['Mask - Ring Inner Radius'] = mat_nodes["Group"].inputs[10].default_value
light['advanced']['Mask - Ring Outer Radius'] = mat_nodes["Group"].inputs[11].default_value
light['advanced']['Mask - Top to Bottom'] = mat_nodes["Group"].inputs[12].default_value
light['advanced']['Mask - Bottom to Top'] = mat_nodes["Group"].inputs[13].default_value
light['advanced']['Mask - Left to Right'] = mat_nodes["Group"].inputs[14].default_value
light['advanced']['Mask - Right to Left'] = mat_nodes["Group"].inputs[15].default_value
light['advanced']['Mask - Diagonal Top Left'] = mat_nodes["Group"].inputs[16].default_value
light['advanced']['Mask - Diagonal Top Right'] = mat_nodes["Group"].inputs[17].default_value
light['advanced']['Mask - Diagonal Bottom Right'] = mat_nodes["Group"].inputs[18].default_value
light['advanced']['Mask - Diagonal Bottom Left'] = mat_nodes["Group"].inputs[19].default_value
except:
print("Error while parsing Mesh Light")
if lls_handle:
try:
light['light_name'] = lls_handle.LLStudio.light_name
light['order_index'] = lls_handle.LLStudio.order_index
light['radius'] = lls_handle.location.z
light['position'] = [lls_handle.parent.rotation_euler.x, lls_handle.parent.rotation_euler.y]
light['rotation'] = lls_handle.rotation_euler.y
light['scale'] = lls_handle.scale[:]
light['type'] = lls_handle.LLStudio.type
except:
print("Handled error while parsing lls_handle")
if lls_basic:
try:
light['basic']['color'] = [lls_basic.data.LLStudio.color.r, lls_basic.data.LLStudio.color.g, lls_basic.data.LLStudio.color.b]
light['basic']['color_saturation'] = lls_basic.data.LLStudio.color_saturation
light['basic']['intensity'] = lls_basic.data.LLStudio.intensity
except:
print("Handled error while parsing Light Handle")
else:
try:
light['basic']['color'] = light['advanced']['Color Overlay'][:3]
light['basic']['color_saturation'] = light['advanced']['Color Saturation']
light['basic']['intensity'] = light['advanced']['Intensity']
except:
print("Handled error while parsing Area Light")
if VERBOSE: print(light)
return light
def light_from_dict(from_dict, profile_collection):
if isinstance(from_dict, dict):
light_dict = LightDict(from_dict)
if not 'basic' in from_dict:
light_dict['basic']['color'] = light_dict['advanced']['Color Overlay'][:3]
light_dict['basic']['color_saturation'] = light_dict['advanced']['Color Saturation']
light_dict['basic']['intensity'] = light_dict['advanced']['Intensity']
if VERBOSE:
print('_'*5, 'LightDict', '_'*5)
print(light_dict)
if not 'order_index' in from_dict:
light_dict['order_index'] = None
else:
light_dict = from_dict
profile_empty = [ob for ob in profile_collection.objects if ob.name.startswith('LLS_PROFILE')][0]
# before
A = set(profile_empty.children)
bpy.ops.scene.add_leomoon_studio_light()
print(f"Added light: {light_dict['light_name']}")
# after operation
B = set(profile_empty.children)
# whats the difference
lgrp = (A ^ B).pop()
actuator = [c for c in family(lgrp) if "LLS_ROTATION" in c.name][0]
lhandle = [c for c in family(lgrp) if "LLS_LIGHT_HANDLE" in c.name][0]
ladvanced_object = [c for c in family(lgrp) if "LLS_LIGHT_MESH" in c.name][0]
lbasic_object = [c for c in family(lgrp) if "LLS_LIGHT_AREA" in c.name][0]
lhandle.location.z = light_dict['radius']
lhandle.rotation_euler.y = light_dict['rotation']
actuator.rotation_euler.x = light_dict['position'][0]
actuator.rotation_euler.y = light_dict['position'][1]
actuator.rotation_euler.z = 0
lhandle.LLStudio.light_name = light_dict['light_name']
if light_dict['order_index'] is not None:
lhandle.LLStudio.order_index = light_dict['order_index']
lhandle.scale = light_dict['scale']
lhandle.LLStudio.type = 'BASIC'
bpy.context.view_layer.objects.active = lbasic_object
lbasic_object.data.LLStudio.color = light_dict['basic']['color']
lbasic_object.data.LLStudio.color_saturation = light_dict['basic']['color_saturation']
lbasic_object.data.LLStudio.intensity = light_dict['basic']['intensity']
lhandle.LLStudio.type = light_dict['type']
# Advanced
new_mat_nodes = ladvanced_object.material_slots[0].material.node_tree.nodes
new_mat_nodes["Group"].inputs[2].default_value = light_dict['advanced']['Texture Switch']
new_mat_nodes["Group"].inputs[3].default_value[0] = light_dict['advanced']['Color Overlay'][0]
new_mat_nodes["Group"].inputs[3].default_value[1] = light_dict['advanced']['Color Overlay'][1]
new_mat_nodes["Group"].inputs[3].default_value[2] = light_dict['advanced']['Color Overlay'][2]
new_mat_nodes["Group"].inputs[3].default_value[3] = light_dict['advanced']['Color Overlay'][3]
new_mat_nodes["Group"].inputs[4].default_value = light_dict['advanced']['Color Saturation']
new_mat_nodes["Group"].inputs[5].default_value = light_dict['advanced']['Intensity']
new_mat_nodes["Group"].inputs[6].default_value = light_dict['advanced']['Mask - Gradient Switch']
new_mat_nodes["Group"].inputs[7].default_value = light_dict['advanced']['Mask - Gradient Type']
new_mat_nodes["Group"].inputs[8].default_value = light_dict['advanced']['Mask - Gradient Amount']
new_mat_nodes["Group"].inputs[9].default_value = light_dict['advanced']['Mask - Ring Switch']
new_mat_nodes["Group"].inputs[10].default_value = light_dict['advanced']['Mask - Ring Inner Radius']
new_mat_nodes["Group"].inputs[11].default_value = light_dict['advanced']['Mask - Ring Outer Radius']
new_mat_nodes["Group"].inputs[12].default_value = light_dict['advanced']['Mask - Top to Bottom']
new_mat_nodes["Group"].inputs[13].default_value = light_dict['advanced']['Mask - Bottom to Top']
new_mat_nodes["Group"].inputs[14].default_value = light_dict['advanced']['Mask - Left to Right']
new_mat_nodes["Group"].inputs[15].default_value = light_dict['advanced']['Mask - Right to Left']
new_mat_nodes["Group"].inputs[16].default_value = light_dict['advanced']['Mask - Diagonal Top Left']
new_mat_nodes["Group"].inputs[17].default_value = light_dict['advanced']['Mask - Diagonal Top Right']
new_mat_nodes["Group"].inputs[18].default_value = light_dict['advanced']['Mask - Diagonal Bottom Right']
new_mat_nodes["Group"].inputs[19].default_value = light_dict['advanced']['Mask - Diagonal Bottom Left']
script_file = os.path.realpath(__file__)
dir = os.path.dirname(script_file)
if os.path.isabs(light_dict['advanced']['tex']):
new_mat_nodes["Light Texture"].image.filepath = light_dict['advanced']['tex']
else:
new_mat_nodes["Light Texture"].image.filepath = os.path.join(dir, "textures_real_lights", light_dict['advanced']['tex'])
def convert_old_light(lls_mesh, profile_collection):
# Salvage data
col = lls_mesh.users_collection[0]
light = salvage_data(col)
if VERBOSE: print(light)
# Some crucial objects are missing. Delete whole light collection
bpy.ops.object.delete_custom({"selected_objects": [lls_mesh,]}, use_global=False, confirm=True)
light_from_dict(light, profile_collection)