forked from leomoon-studios/leomoon-lightstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.py
279 lines (219 loc) · 10.2 KB
/
common.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
import bpy
def get_user_keymap_item(keymap_name, keymap_item_idname, multiple_entries=False):
wm = bpy.context.window_manager
kc = wm.keyconfigs.user
km = kc.keymaps.get(keymap_name)
if multiple_entries:
return km, [i[1] for i in km.keymap_items.items() if i[0] == keymap_item_idname]
else:
return km, km.keymap_items.get(keymap_item_idname)
def replace_link(object, collection_name):
if isinstance(object, bpy.types.Collection):
bpy.context.scene.collection.children.unlink(bpy.context.scene.collection.children[object.name])
bpy.data.collections[collection_name].children.link(object)
else:
object.users_collection[0].objects.unlink(object)
bpy.data.collections[collection_name].objects.link(object)
def get_collection(object):
return [c for c in object.users_collection if c.name.startswith('LLS')][0]
def get_lls_collection(context):
return [c for c in context.scene.collection.children if c.name.startswith('LLS')][0]
def llscol_profilecol_profile_handle(context):
lls_collection = [c for c in context.scene.collection.children if c.name.startswith('LLS')][0]
profile_collection = [c for c in lls_collection.children if c.name.startswith('LLS_PROFILE')][0]
profile = [ob for ob in profile_collection.objects if ob.name.startswith('LLS_PROFILE')][0]
handle = [ob for ob in profile.children if ob.name.startswith('LLS_HANDLE')][0]
return lls_collection, profile_collection, profile, handle
def llscol_profilecol(context):
try:
lls_collection = [c for c in context.scene.collection.children if c.name.startswith('LLS')][0]
profile_collection = [c for c in lls_collection.children if c.name.startswith('LLS_PROFILE')][0]
return lls_collection, profile_collection
except IndexError:
return (None, None)
def find_view_layer(collection, layer_collection):
idx = layer_collection.children.find(collection.name)
if idx >= 0:
return layer_collection.children[idx]
else:
for vc in layer_collection.children:
rcol = find_view_layer(collection, layer_collection=vc)
if rcol:
return rcol
def get_view_layers(layer_collection):
for lc in layer_collection.children:
yield lc
for clc in get_view_layers(layer_collection=lc):
yield clc
def isFamily(ob=None):
if not ob:
ob = bpy.context.view_layer.objects.active
if not ob:
return False
if ob.name.startswith('LEOMOON_LIGHT_STUDIO'): return True
if not ob.name.startswith('LLS_'): return False
while ob.parent:
ob = ob.parent
if ob.name.startswith('LEOMOON_LIGHT_STUDIO'): return True
return False
def family(object):
''' Object + Grand children without ancestors '''
family = [object.children[:]+(object,)]
def rec(object, family):
family[0] += object.children
for ob in object.children:
rec(ob, family)
for ob in object.children:
rec(ob, family)
return family.pop()
def findLightGrp(ob):
while ob and ob.parent:
ob = ob.parent
if ob.name.startswith('LLS_LIGHT.'): return ob
return None
def getLightMesh():
#obs = bpy.context.scene.objects
#lightGrp = obs.active
#light_no = lightGrp.name.split('.')[1]
#return obs[obs.find('LLS_LIGHT_MESH.'+light_no)]
lg = findLightGrp(bpy.context.active_object)
lm = [l for l in family(lg) if l.name.startswith("LLS_LIGHT_MESH")]
return lm[0] if len(lm) else None
# def getLightHandle():
# lg = findLightGrp(bpy.context.active_object)
# lm = [l for l in family(lg) if l.name.startswith("LLS_LIGHT_HANDLE")]
# return lm[0] if len(lm) else None
def getLightController():
obs = bpy.context.view_layer.objects
lightGrp = obs.active
light_no = lightGrp.name.split('.')[1]
return obs[obs.find('LLS_CONTROLLER.'+light_no)]
def findLightProfile(ob):
if ob.name.startswith('LLS_PROFILE'):
return ob
while ob.parent:
ob = ob.parent
if ob.name.startswith('LLS_PROFILE'): return ob
return None
def getProfileHandle(ob=None):
if not ob:
ob = bpy.context.scene.objects.active
p = findLightProfile(ob)
if not p:
return None
h = [h for h in p.children if h.name.startswith('LLS_HANDLE')]
if len(h):
return h[0]
else:
return None
def refreshMaterials():
#controllers = [ob for ob in family(findLightGrp(context.active_object).parent) if ob.name.startswith('LLS_CONTROLLER.')]
controllers = (ob for ob in bpy.context.scene.objects if ob.name.startswith('LLS_CONTROLLER.') and isFamily(ob))
for cntrl in controllers:
mat = [m for m in cntrl.data.materials if m.name.startswith('LLS_icon_ctrl')][0]
mixNode = mat.node_tree.nodes['Mix Shader'].inputs['Fac']
mixNode.default_value = mixNode.default_value
# def duplicate_collection(collection, parent_collection):
# new_collection = bpy.data.collections.new(collection.name)
# new_names = {}
# matrix_data = {}
# for obj in collection.objects:
# new_obj = obj.copy()
# new_names[obj.name] = new_obj
# matrix_data[new_obj.name] = {
# "matrix_basis": obj.matrix_basis.copy(),
# "matrix_local": obj.matrix_local.copy(),
# "matrix_parent_inverse": obj.matrix_parent_inverse.copy(),
# "matrix_world": obj.matrix_world.copy()
# }
# if new_obj.data:
# new_obj.data = obj.data.copy()
# for slot in new_obj.material_slots:
# slot.material = slot.material.copy()
# new_obj.parent = obj.parent
# new_collection.objects.link(new_obj)
# for obj in new_collection.objects:
# if obj.parent:
# if obj.parent.name in new_names:
# obj.parent = new_names[obj.parent.name]
# obj.matrix_basis = matrix_data[obj.name]["matrix_basis"]
# #obj.matrix_local = matrix_data[obj.name]["matrix_local"]
# obj.matrix_parent_inverse = matrix_data[obj.name]["matrix_parent_inverse"]
# #obj.matrix_world = matrix_data[obj.name]["matrix_world"]
# if parent_collection:
# parent_collection.children.link(new_collection)
# iter_list = [collection.children]
# parent_collection = new_collection
# while len(iter_list) > 0:
# new_iter_list = []
# for iter in iter_list:
# for collection in iter:
# new_collection = bpy.data.collections.new(collection.name)
# for obj in collection.objects:
# new_obj = obj.copy()
# new_names[obj.name] = new_obj
# matrix_data[new_obj.name] = {
# "matrix_basis": obj.matrix_basis.copy(),
# "matrix_local": obj.matrix_local.copy(),
# "matrix_parent_inverse": obj.matrix_parent_inverse.copy(),
# "matrix_world": obj.matrix_world.copy()
# }
# if new_obj.data:
# new_obj.data = obj.data.copy()
# for slot in new_obj.material_slots:
# slot.material = slot.material.copy()
# new_obj.parent = obj.parent
# new_collection.objects.link(new_obj)
# for obj in new_collection.objects:
# if obj.parent:
# obj.parent = new_names[obj.parent.name]
# obj.matrix_basis = matrix_data[obj.name]["matrix_basis"]
# #obj.matrix_local = matrix_data[obj.name]["matrix_local"]
# obj.matrix_parent_inverse = matrix_data[obj.name]["matrix_parent_inverse"]
# #obj.matrix_world = matrix_data[obj.name]["matrix_world"]
# parent_collection.children.link(new_collection)
# if len(collection.children) > 0:
# new_iter_list.append(collection.children)
# iter_list = new_iter_list
# return parent_collection
def duplicate_collection(collection, parent_collection):
new_names = {}
matrix_data = {}
profile_handle = [obj for obj in collection.objects if obj.name.startswith("LLS_HANDLE")]
profile_handle = profile_handle[0] if profile_handle else None
print(profile_handle)
def rec_dup(collection, parent_collection):
new_collection = bpy.data.collections.new(collection.name)
for obj in collection.objects:
new_obj = obj.copy()
new_names[obj.name] = new_obj
matrix_data[new_obj.name] = {
"matrix_basis": obj.matrix_basis.copy(),
"matrix_local": obj.matrix_local.copy(),
"matrix_parent_inverse": obj.matrix_parent_inverse.copy(),
"matrix_world": obj.matrix_world.copy()
}
if new_obj.data:
new_obj.data = obj.data.copy()
for slot in new_obj.material_slots:
slot.material = slot.material.copy()
new_obj.parent = obj.parent
new_collection.objects.link(new_obj)
for obj in new_collection.objects:
if obj.parent:
if obj.parent.name in new_names:
obj.parent = new_names[obj.parent.name]
obj.matrix_basis = matrix_data[obj.name]["matrix_basis"]
#obj.matrix_local = matrix_data[obj.name]["matrix_local"]
obj.matrix_parent_inverse = matrix_data[obj.name]["matrix_parent_inverse"]
#obj.matrix_world = matrix_data[obj.name]["matrix_world"]
if profile_handle and obj.name.startswith("LLS_LIGHT_HANDLE"):
obj.constraints['Copy Location'].target = new_names[profile_handle.name]
if parent_collection:
parent_collection.children.link(new_collection)
iter_list = collection.children[:]
parent_collection = new_collection
for col in iter_list:
rec_dup(col, parent_collection)
return parent_collection
return rec_dup(collection, parent_collection)