-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathavatar_export.py
343 lines (266 loc) · 9.27 KB
/
avatar_export.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
import struct
from io import BytesIO
import bpy
from bpy.props import StringProperty
from bpy.types import Operator
from bpy_extras.io_utils import ExportHelper
# these are the names of the animations that are required.
original_animation_names = [
"Fidget01",
"Fidget02",
"Fidget03",
"HangOn",
"moon",
"Conduct",
"ConductFidget01",
"ConductFidget02",
"ConductFidget03",
"Eng",
"EngFidget01",
"EngFidget02",
"EngFidget03",
"StandStill",
"walk",
"wave",
]
def matrix_to_flat_list(matrix):
return [matrix[i][j] for j in range(4) for i in range(4)]
def is_mesh_object(obj):
return obj.type == "MESH"
def get_all_mesh_indices(obj):
mesh_indices = []
# Check if the object has a mesh data block
if obj.type == "MESH":
mesh = obj.data
faces = mesh.polygons
for face in faces:
face_indices = face.vertices
if len(face_indices) != 3:
print(f"{mesh.name} is not triangular!")
continue
mesh_indices.extend(face_indices)
# Traverse child objects recursively
for child in obj.children:
mesh_indices.extend(get_all_mesh_indices(child))
return mesh_indices
def get_all_mesh_data(obj):
mesh_data = []
# Check if the object has a mesh data block
if obj.type == "MESH":
mesh = obj.data
# Retrieve vertex data
for vertex in mesh.vertices:
vertex_data = {}
vertex_data["position"] = vertex.co
vertex_data["uv"] = []
vertex_data["normal"] = vertex.normal
vertex_data["blend_weights"] = []
vertex_data["blend_indices"] = []
mesh_data.append(vertex_data)
# Get UV coordinates
uv_layer = mesh.uv_layers.active.data if mesh.uv_layers.active else None
if uv_layer:
for loop in mesh.loops:
vertex_index = loop.vertex_index
uv = uv_layer[loop.index].uv
mesh_data[vertex_index]["uv"] = uv
# Get vertex blend weights and blend indices
# vertex_groups = obj.vertex_groups
# for vertex_index, vertex in enumerate(mesh.vertices):
# blend_weights = []
# blend_indices = []
# for group in vertex.groups:
# blend_weights.append(group.weight)
# blend_indices.append(group.group)
# mesh_data[vertex_index]["blend_weights"] = blend_weights
# mesh_data[vertex_index]["blend_indices"] = blend_indices
# Traverse child objects recursively
for child in obj.children:
mesh_data.extend(get_all_mesh_data(child))
return mesh_data
def write(context, filepath):
obj = bpy.context.active_object
stream = BinaryWriter()
all_indices = get_all_mesh_indices(obj)
all_verticies = get_all_mesh_data(obj)
print("Index count: " + str(len(all_indices)))
print("Vertex count: " + str(len(all_verticies)))
stream.add("i", len(all_verticies) * 7) # write the number of verticies
# write verticies
for vertex in all_verticies:
stream.add_float(0.0) # reserved
stream.add_float(vertex["position"].x / 63.7)
stream.add_float(vertex["normal"].y * -1.732)
stream.add_float(vertex["position"].z * 16)
stream.add_float(vertex["uv"].x * 4.8)
stream.add_float(vertex["normal"].x * 10.962)
stream.add_float(0.0) # reserved
stream.add_float(vertex["normal"].z * 11.432)
stream.add_float(vertex["uv"].y * 9.6)
stream.add_float(vertex["position"].y / 6)
stream.add("<b", 0) # blend indice w
stream.add_float(0.0) # blend weight z
stream.add("<b", 0) # blend indice x
stream.add_float(0.0) # blend weight y
stream.add("<b", 0) # blend indice y
stream.add_float(0.0) # blend weight w
stream.add("<b", 0) # blend indice z
stream.add_float(0.0) # blend weight x
# texture count, currently 0
texture_count = 0
stream.add("<i", texture_count - 6)
# texture names
textures = [] # TODO:
for texture in textures:
stream += texture
# is ushort buffer
stream += False
# index buffer size
stream.add("<i", len(all_indices))
# write index buffer
for indice in all_indices:
stream.add("<i", indice)
# unknown struct size
stream.add("<i", 9)
# skeleton hierarchy count
skeleton_hierarchy = [] # TODO:
stream.add("<i", len(skeleton_hierarchy))
# write skeleton hierarchy
for sh in skeleton_hierarchy:
stream.add("<i", sh)
# bone indice count
bone_indices = [] # TODO:
stream.add("<i", len(bone_indices))
# write bone indices
for k in bone_indices:
v = bone_indices[k]
stream += k
stream.add("<i", v)
# bind pose count
bind_poses = [] # TODO:
stream.add("<i", len(bind_poses))
# write bind poses
for pose in bind_poses:
# array of floats
for i in pose:
stream.add("<f", i)
# inverse bind pose count
stream.add("<i", len(bind_poses))
# write inverse bind poses
for pose in bind_poses:
# array of floats
for i in pose:
stream.add("<f", i)
# animation count
animations = []
stream.add("<i", len(animations))
# write animations
# TODO:
data = stream.serial()
with open(filepath, "wb") as f:
f.write(data)
return {"FINISHED"}
class ExportRun8Avatar(Operator, ExportHelper):
"""This appears in the tooltip of the operator and in the generated docs"""
bl_idname = "run8_lib.export_avatar"
bl_label = "Export Avatar"
# ExportHelper mixin class uses this
filename_ext = ".rn8"
filter_glob: StringProperty(
default="*.rn8",
options={"HIDDEN"},
maxlen=255, # Max internal buffer length, longer would be clamped.
)
def execute(self, context):
return write(context, self.filepath)
# Only needed if you want to add into a dynamic menu
def run8_avatar_menu_func_export(self, context):
self.layout.operator(ExportRun8Avatar.bl_idname, text="Run8 Avatar")
# Register and add to the "file selector" menu (required to use F3 search "Text Export Operator" for quick access).
def register():
bpy.utils.register_class(ExportRun8Avatar)
# prevent duplicate menu entries
if hasattr(bpy.types.TOPBAR_MT_file_export.draw, "_draw_funcs"):
if run8_avatar_menu_func_export.__name__ not in (f.__name__ for f in bpy.types.TOPBAR_MT_file_export.draw._draw_funcs):
bpy.types.TOPBAR_MT_file_export.append(run8_avatar_menu_func_export)
else:
bpy.types.TOPBAR_MT_file_export.append(run8_avatar_menu_func_export)
def unregister():
clazz = bpy.types.NodeTree.bl_rna_get_subclass_py("run8_lib.export_avatar")
bpy.utils.unregister_class(clazz)
bpy.types.TOPBAR_MT_file_export.remove(run8_avatar_menu_func_export)
if __name__ == "__main__":
register()
# TODO: move this to a separate file
class BinaryStream(object):
_types = {
int: struct.Struct("<i"),
float: struct.Struct("<d"),
bool: struct.Struct("<?"),
}
_formats = {
int: "i",
float: "d",
bool: "?",
}
class BinaryWriter(BinaryStream):
def __init__(self):
self.stream = BytesIO()
def clear(self):
self.stream = BytesIO()
def __iadd__(self, value):
try:
self.stream.write(self._types[type(value)].pack(value))
except KeyError:
if type(value) == bytes:
self.add_string(value)
elif type(value) == str:
self.add_string(value.encode("ascii"))
elif type(value) == tuple:
for v in value:
self += v
elif type(value) == list:
self.add_list(value)
elif type(value) == dict:
self.add_dict(value)
else:
if hasattr(value, "dump"):
self.add_string(value.dump())
else:
raise
return self
def add(self, format, value):
self.stream.write(struct.pack(format, value))
def add_7bit_int(self, value):
temp = value
bytess = ""
while temp >= 128:
bytess += chr(0x000000FF & (temp | 0x80))
temp >>= 7
bytess += chr(temp)
self.stream.write(bytess.encode())
def add_string(self, value):
self.add_7bit_int(len(value))
self.stream.write(value)
def add_double(self, value):
self.stream.write(struct.pack("<d", value))
def add_float(self, value):
self.stream.write(struct.pack("<f", value))
def extend(self, value):
self.stream.write(value)
def add_dict(self, value):
self += len(value)
for k, v in list(value.items()):
self += k
self += v
def add_list(self, value):
self += len(value)
if value:
if type(value[0]) in self._types:
self.stream.write(struct.pack("<" + (self._formats[type(value[0])] * len(value)), *value))
else:
for s in value:
self += s
def serial(self):
self.stream.seek(0)
return self.stream.read()