assorted crap
[carveJwlIkooP6JGAAIwe30JlM.git] / blender_export.py
1 #
2 # =============================================================================
3 #
4 # Copyright . . . -----, ,----- ,---. .---.
5 # 2021-2022 |\ /| | / | | | | /|
6 # | \ / | +-- / +----- +---' | / |
7 # | \ / | | / | | \ | / |
8 # | \/ | | / | | \ | / |
9 # ' ' '--' [] '----- '----- ' ' '---' SOFTWARE
10 #
11 # =============================================================================
12 #
13 # Python exporter for Blender, compiles .mdl format for Skate Rift.
14 #
15 # Its really slow, sorry, I don't know how to speed it up.
16 # Also not sure why you need to put # before {} in code blocks, there is errors
17 # otherwise
18 #
19
20 import bpy, math, gpu, os
21 import cProfile
22 from ctypes import *
23 from mathutils import *
24 from gpu_extras.batch import batch_for_shader
25
26 bl_info = {
27 "name":"Skate Rift model compiler",
28 "author": "Harry Godden (hgn)",
29 "version": (0,2),
30 "blender":(3,1,0),
31 "location":"Export",
32 "descriptin":"",
33 "warning":"",
34 "wiki_url":"",
35 "category":"Import/Export",
36 }
37
38 class mdl_vert(Structure): # 48 bytes. Quite large. Could compress
39 #{ # the normals and uvs to i16s. Not an
40 _pack_ = 1 # real issue, yet.
41 _fields_ = [("co",c_float*3),
42 ("norm",c_float*3),
43 ("uv",c_float*2),
44 ("colour",c_uint8*4),
45 ("weights",c_uint16*4),
46 ("groups",c_uint8*4)]
47 #}
48
49 class mdl_submesh(Structure):
50 #{
51 _pack_ = 1
52 _fields_ = [("indice_start",c_uint32),
53 ("indice_count",c_uint32),
54 ("vertex_start",c_uint32),
55 ("vertex_count",c_uint32),
56 ("bbx",(c_float*3)*2),
57 ("material_id",c_uint32)] # index into the material array
58 #}
59
60 class mdl_texture(Structure):
61 #{
62 _pack_ = 1
63 _fields_ = [("pstr_name",c_uint32),
64 ("pack_offset",c_uint32),
65 ("pack_length",c_uint32)]
66 #}
67
68 class mdl_material(Structure):
69 #{
70 _pack_ = 1
71 _fields_ = [("pstr_name",c_uint32),
72 ("shader",c_uint32),
73 ("flags",c_uint32),
74 ("surface_prop",c_uint32),
75 ("colour",c_float*4),
76 ("colour1",c_float*4),
77 ("tex_diffuse",c_uint32),
78 ("tex_decal",c_uint32),
79 ("tex_normal",c_uint32)]
80 #}
81
82 class mdl_node(Structure):
83 #{
84 _pack_ = 1
85 _fields_ = [("co",c_float*3),
86 ( "q",c_float*4),
87 ( "s",c_float*3),
88 ("sub_uid",c_uint32), # dont use
89 ("submesh_start",c_uint32),
90 ("submesh_count",c_uint32),
91 ("classtype",c_uint32),
92 ("offset",c_uint32),
93 ("parent",c_uint32),
94 ("pstr_name",c_uint32)]
95 #}
96
97 class mdl_header(Structure):
98 #{
99 _pack_ = 1
100 _fields_ = [("identifier",c_uint32),
101 ("version",c_uint32),
102 ("file_length",c_uint32),
103 ("pad0",c_uint32),
104
105 ("node_count",c_uint32),
106 ("node_offset",c_uint32),
107
108 ("submesh_count",c_uint32),
109 ("submesh_offset",c_uint32),
110
111 ("material_count",c_uint32),
112 ("material_offset",c_uint32),
113
114 ("texture_count",c_uint32),
115 ("texture_offset",c_uint32),
116
117 ("anim_count",c_uint32),
118 ("anim_offset",c_uint32),
119
120 ("entdata_size",c_uint32),
121 ("entdata_offset",c_uint32),
122
123 ("strings_size",c_uint32),
124 ("strings_offset",c_uint32),
125
126 ("keyframe_count",c_uint32),
127 ("keyframe_offset",c_uint32),
128
129 ("vertex_count",c_uint32),
130 ("vertex_offset",c_uint32),
131
132 ("indice_count",c_uint32),
133 ("indice_offset",c_uint32),
134
135 ("pack_size",c_uint32),
136 ("pack_offset",c_uint32)]
137 #}
138
139 class mdl_animation(Structure):
140 #{
141 _pack_ = 1
142 _fields_ = [("pstr_name",c_uint32),
143 ("length",c_uint32),
144 ("rate",c_float),
145 ("offset",c_uint32)]
146 #}
147
148 class mdl_keyframe(Structure):
149 #{
150 _pack_ = 1
151 _fields_ = [("co",c_float*3),
152 ("q",c_float*4),
153 ("s",c_float*3)]
154 #}
155
156 # ---------------------------------------------------------------------------- #
157 # #
158 # Entity definitions #
159 # #
160 # ---------------------------------------------------------------------------- #
161 #
162 # ctypes _fields_ defines the data which is filled in by:
163 # def encode_obj( _, node, node_def ):
164 #
165 # gizmos get drawn into the viewport via:
166 # @staticmethod
167 # def draw_scene_helpers( obj ):
168 #
169 # editor enterface, simiraliy:
170 # @staticmethod
171 # def editor_interface( layout, obj ):
172 #
173
174 # Classtype 1
175 #
176 # Purpose: A rift. must target another gate, the target gate can not have more
177 # than one target nodes of its own.
178 #
179 class classtype_gate(Structure):
180 #{
181 _pack_ = 1
182 _fields_ = [("target",c_uint32),
183 ("dims",c_float*3)]
184
185 def encode_obj(_, node,node_def):
186 #{
187 node.classtype = 1
188
189 obj = node_def['obj']
190
191 if obj.cv_data.target != None:
192 _.target = obj.cv_data.target.cv_data.uid
193
194 if obj.type == 'MESH':
195 #{
196 _.dims[0] = obj.data.cv_data.v0[0]
197 _.dims[1] = obj.data.cv_data.v0[1]
198 _.dims[2] = obj.data.cv_data.v0[2]
199 #}
200 else:
201 #{
202 _.dims[0] = obj.cv_data.v0[0]
203 _.dims[1] = obj.cv_data.v0[1]
204 _.dims[2] = obj.cv_data.v0[2]
205 #}
206 #}
207
208 @staticmethod
209 def draw_scene_helpers( obj ):
210 #{
211 global cv_view_verts, cv_view_colours
212
213 if obj.type == 'MESH':
214 dims = obj.data.cv_data.v0
215 else:
216 dims = obj.cv_data.v0
217
218 vs = [None]*9
219 c = Vector((0,0,dims[2]))
220
221 vs[0] = obj.matrix_world @ Vector((-dims[0],0.0,-dims[1]+dims[2]))
222 vs[1] = obj.matrix_world @ Vector((-dims[0],0.0, dims[1]+dims[2]))
223 vs[2] = obj.matrix_world @ Vector(( dims[0],0.0, dims[1]+dims[2]))
224 vs[3] = obj.matrix_world @ Vector(( dims[0],0.0,-dims[1]+dims[2]))
225 vs[4] = obj.matrix_world @ (c+Vector((-1,0,-2)))
226 vs[5] = obj.matrix_world @ (c+Vector((-1,0, 2)))
227 vs[6] = obj.matrix_world @ (c+Vector(( 1,0, 2)))
228 vs[7] = obj.matrix_world @ (c+Vector((-1,0, 0)))
229 vs[8] = obj.matrix_world @ (c+Vector(( 1,0, 0)))
230
231 indices = [(0,1),(1,2),(2,3),(3,0),(4,5),(5,6),(7,8)]
232
233 for l in indices:
234 #{
235 v0 = vs[l[0]]
236 v1 = vs[l[1]]
237 cv_view_verts += [(v0[0],v0[1],v0[2])]
238 cv_view_verts += [(v1[0],v1[1],v1[2])]
239 cv_view_colours += [(1,1,0,1),(1,1,0,1)]
240 #}
241
242 sw = (0.4,0.4,0.4,0.2)
243 if obj.cv_data.target != None:
244 cv_draw_arrow( obj.location, obj.cv_data.target.location, sw )
245 #}
246
247 @staticmethod
248 def editor_interface( layout, obj ):
249 #{
250 layout.prop( obj.cv_data, "target" )
251
252 mesh = obj.data
253 layout.label( text=F"(i) Data is stored in {mesh.name}" )
254 layout.prop( mesh.cv_data, "v0", text="Gate dimensions" )
255 #}
256 #}
257
258 # Classtype 3
259 #
260 # Purpose: player can reset here, its a safe place
261 # spawns can share the same name, the closest one will be picked
262 #
263 # when the world loads it will pick the one named 'start' first.
264 #
265 class classtype_spawn(Structure):
266 #{
267 _pack_ = 1
268 _fields_ = [("pstr_alias",c_uint32)]
269
270 def encode_obj(_, node,node_def):
271 #{
272 node.classtype = 3
273 _.pstr_alias = encoder_process_pstr( node_def['obj'].cv_data.strp )
274 #}
275
276 @staticmethod
277 def draw_scene_helpers( obj ):
278 #{
279 global cv_view_verts, cv_view_colours
280
281 vs = [None]*4
282 vs[0] = obj.matrix_world @ Vector((0,0,0))
283 vs[1] = obj.matrix_world @ Vector((0,2,0))
284 vs[2] = obj.matrix_world @ Vector((0.5,1,0))
285 vs[3] = obj.matrix_world @ Vector((-0.5,1,0))
286 indices = [(0,1),(1,2),(1,3)]
287
288 for l in indices:
289 #{
290 v0 = vs[l[0]]
291 v1 = vs[l[1]]
292
293 cv_view_verts += [(v0[0],v0[1],v0[2])]
294 cv_view_verts += [(v1[0],v1[1],v1[2])]
295 cv_view_colours += [(0,1,1,1),(0,1,1,1)]
296 #}
297
298 cv_draw_sphere( obj.location, 20.0, [0.1,0,0.9,0.4] )
299 #}
300
301 @staticmethod
302 def editor_interface( layout, obj ):
303 #{
304 layout.prop( obj.cv_data, "strp", text="Alias" )
305 #}
306 #}
307
308 # Classtype 4
309 #
310 # Purpose: Tells the game to draw water HERE, at this entity.
311 #
312 class classtype_water(Structure):
313 #{
314 _pack_ = 1
315 _fields_ = [("temp",c_uint32)]
316
317 def encode_obj(_, node,node_def):
318 #{
319 node.classtype = 4
320 # no data, spooky
321 #}
322 #}
323
324 # Classtype 8
325 #
326 # Purpose: Defines a route node and links to up to two more nodes
327 #
328 class classtype_route_node(Structure):
329 #{
330 _pack_ = 1
331 _fields_ = [("target",c_uint32),
332 ("target1",c_uint32)]
333
334 def encode_obj(_, node,node_def):
335 #{
336 node.classtype = 8
337 obj = node_def['obj']
338
339 if obj.cv_data.target != None:
340 _.target = obj.cv_data.target.cv_data.uid
341 if obj.cv_data.target1 != None:
342 _.target1 = obj.cv_data.target1.cv_data.uid
343 #}
344
345 @staticmethod
346 def draw_scene_helpers( obj ):
347 #{
348 global cv_view_verts, cv_view_colours
349
350 sw = Vector((0.4,0.4,0.4,0.2))
351 sw2 = Vector((1.5,0.2,0.2,0.0))
352 if obj.cv_data.target != None:
353 cv_draw_bpath( obj, obj.cv_data.target, sw, sw )
354 if obj.cv_data.target1 != None:
355 cv_draw_bpath( obj, obj.cv_data.target1, sw, sw )
356
357 cv_draw_bhandle( obj, 1.0, (0.8,0.8,0.8,1.0) )
358 cv_draw_bhandle( obj, -1.0, (0.4,0.4,0.4,1.0) )
359
360 p1 = obj.location+ \
361 obj.matrix_world.to_quaternion() @ Vector((0,0,-6+1.5))
362 cv_draw_arrow( obj.location, p1, sw )
363 #}
364
365 @staticmethod
366 def editor_interface( layout, obj ):
367 #{
368 layout.prop( obj.cv_data, "target", text="Left" )
369 layout.prop( obj.cv_data, "target1", text="Right" )
370 #}
371 #}
372
373 # Classtype 9
374 #
375 # Purpose: Defines a route, its 'starting' point, and the colour to use for it
376 #
377 class classtype_route(Structure):
378 #{
379 _pack_ = 1
380 _fields_ = [("id_start",c_uint32),
381 ("pstr_name",c_uint32),
382 ("colour",c_float*3)]
383
384 def encode_obj(_, node,node_def):
385 #{
386 node.classtype = 9
387 obj = node_def['obj']
388
389 _.colour[0] = obj.cv_data.colour[0]
390 _.colour[1] = obj.cv_data.colour[1]
391 _.colour[2] = obj.cv_data.colour[2]
392 _.pstr_name = encoder_process_pstr( obj.cv_data.strp )
393
394 if obj.cv_data.target != None:
395 _.id_start = obj.cv_data.target.cv_data.uid
396 #}
397
398 @staticmethod
399 def draw_scene_helpers( obj ):
400 #{
401 global cv_view_verts, cv_view_colours, cv_view_course_i
402
403 if obj.cv_data.target:
404 cv_draw_arrow( obj.location, obj.cv_data.target.location, [1,1,1,1] )
405
406 # Tries to simulate how we do it in the game
407 #
408 stack = [None]*64
409 stack_i = [0]*64
410 stack[0] = obj.cv_data.target
411 si = 1
412 loop_complete = False
413
414 while si > 0:
415 #{
416 if stack_i[si-1] == 2:
417 #{
418 si -= 1
419 continue
420
421 if si == 0: # Loop failed to complete
422 break
423 #}
424
425 node = stack[si-1]
426
427 targets = [None,None]
428 targets[0] = node.cv_data.target
429
430 if node.cv_data.classtype == 'classtype_route_node':
431 #{
432 targets[1] = node.cv_data.target1
433 #}
434
435 nextnode = targets[stack_i[si-1]]
436 stack_i[si-1] += 1
437
438 if nextnode != None: # branch
439 #{
440 if nextnode == stack[0]: # Loop completed
441 #{
442 loop_complete = True
443 break
444 #}
445
446 valid=True
447 for sj in range(si):
448 #{
449 if stack[sj] == nextnode: # invalidated path
450 #{
451 valid=False
452 break
453 #}
454 #}
455
456 if valid:
457 #{
458 stack_i[si] = 0
459 stack[si] = nextnode
460 si += 1
461 continue
462 #}
463 #}
464 #}
465
466 if loop_complete:
467 #{
468 cc = Vector((obj.cv_data.colour[0],\
469 obj.cv_data.colour[1],\
470 obj.cv_data.colour[2],\
471 1.0))
472
473 for sj in range(si):
474 #{
475 sk = (sj+1)%si
476
477 if stack[sj].cv_data.classtype == 'classtype_gate' and \
478 stack[sk].cv_data.classtype == 'classtype_gate':
479 #{
480 dist = (stack[sj].location-stack[sk].location).magnitude
481 cv_draw_sbpath( stack[sj], stack[sk], cc*0.4, cc, dist, dist )
482 #}
483 else:
484 cv_draw_bpath( stack[sj], stack[sk], cc, cc )
485 #}
486
487 cv_view_course_i += 1
488 #}
489 #}
490
491 @staticmethod
492 def editor_interface( layout, obj ):
493 #{
494 layout.prop( obj.cv_data, "target", text="'Start' from" )
495 layout.prop( obj.cv_data, "colour" )
496 layout.prop( obj.cv_data, "strp", text="Name" )
497 #}
498 #}
499
500 # Classtype 12
501 #
502 # Purpose: links an mesh node to a type 11
503 #
504 class classtype_skin(Structure):
505 #{
506 _pack_ = 1
507 _fields_ = [("skeleton",c_uint32)]
508
509 def encode_obj(_, node,node_def):
510 #{
511 node.classtype = 12
512
513 armature_def = node_def['linked_armature']
514 _.skeleton = armature_def['obj'].cv_data.uid
515 #}
516 #}
517
518 # Classtype 11
519 #
520 # Purpose: defines the allocation requirements for a skeleton
521 #
522 class classtype_skeleton(Structure):
523 #{
524 _pack_ = 1
525 _fields_ = [("channels",c_uint32),
526 ("ik_count",c_uint32),
527 ("collider_count",c_uint32),
528 ("anim_start",c_uint32),
529 ("anim_count",c_uint32)]
530
531 def encode_obj(_, node,node_def):
532 #{
533 node.classtype = 11
534
535 _.channels = len( node_def['bones'] )
536 _.ik_count = node_def['ik_count']
537 _.collider_count = node_def['collider_count']
538 _.anim_start = node_def['anim_start']
539 _.anim_count = node_def['anim_count']
540 #}
541 #}
542
543
544 # Classtype 10
545 #
546 # Purpose: intrinsic bone type, stores collision information and limits too
547 #
548 class classtype_bone(Structure):
549 #{
550 _pack_ = 1
551 _fields_ = [("deform",c_uint32),
552 ("ik_target",c_uint32),
553 ("ik_pole",c_uint32),
554 ("collider",c_uint32),
555 ("use_limits",c_uint32),
556 ("angle_limits",(c_float*3)*2),
557 ("hitbox",(c_float*3)*2)]
558
559 def encode_obj(_, node,node_def):
560 #{
561 node.classtype = 10
562
563 armature_def = node_def['linked_armature']
564 obj = node_def['bone']
565
566 _.deform = node_def['deform']
567
568 if 'ik_target' in node_def:
569 #{
570 _.ik_target = armature_def['bones'].index( node_def['ik_target'] )
571 _.ik_pole = armature_def['bones'].index( node_def['ik_pole'] )
572 #}
573
574 # For ragdolls
575 #
576 if obj.cv_data.collider:
577 #{
578 _.collider = 1
579 _.hitbox[0][0] = obj.cv_data.v0[0]
580 _.hitbox[0][1] = obj.cv_data.v0[2]
581 _.hitbox[0][2] = -obj.cv_data.v1[1]
582 _.hitbox[1][0] = obj.cv_data.v1[0]
583 _.hitbox[1][1] = obj.cv_data.v1[2]
584 _.hitbox[1][2] = -obj.cv_data.v0[1]
585 #}
586
587 if obj.cv_data.con0:
588 #{
589 _.use_limits = 1
590 _.angle_limits[0][0] = obj.cv_data.mins[0]
591 _.angle_limits[0][1] = obj.cv_data.mins[2]
592 _.angle_limits[0][2] = -obj.cv_data.maxs[1]
593 _.angle_limits[1][0] = obj.cv_data.maxs[0]
594 _.angle_limits[1][1] = obj.cv_data.maxs[2]
595 _.angle_limits[1][2] = -obj.cv_data.mins[1]
596 #}
597 #}
598 #}
599
600 # Classtype 100
601 #
602 # Purpose: sends a signal to another entity
603 #
604 class classtype_trigger(Structure):
605 #{
606 _pack_ = 1
607 _fields_ = [("target",c_uint32)]
608
609 def encode_obj(_, node,node_def ):
610 #{
611 node.classtype = 100
612 if node_def['obj'].cv_data.target:
613 _.target = node_def['obj'].cv_data.target.cv_data.uid
614 #}
615
616 @staticmethod
617 def draw_scene_helpers( obj ):
618 #{
619 global cv_view_verts, cv_view_colours
620 cv_draw_ucube( obj.matrix_world, [0,1,0,1] )
621
622 if obj.cv_data.target:
623 cv_draw_arrow( obj.location, obj.cv_data.target.location, [1,1,1,1] )
624 #}
625
626 @staticmethod
627 def editor_interface( layout, obj ):
628 #{
629 layout.prop( obj.cv_data, "target", text="Triggers" )
630 #}
631 #}
632
633 # Classtype 101
634 #
635 # Purpose: Gives the player an achievement.
636 # No cheating! You shouldn't use this entity anyway, since only ME can
637 # add achievements to the steam ;)
638 #
639 class classtype_logic_achievement(Structure):
640 #{
641 _pack_ = 1
642 _fields_ = [("pstr_name",c_uint32)]
643
644 def encode_obj(_, node,node_def ):
645 #{
646 node.classtype = 101
647 _.pstr_name = encoder_process_pstr( node_def['obj'].cv_data.strp )
648 #}
649
650 @staticmethod
651 def editor_interface( layout, obj ):
652 #{
653 layout.prop( obj.cv_data, "strp", text="Achievement ID" )
654 #}
655 #}
656
657 # Classtype 102
658 #
659 # Purpose: sends a signal to another entity
660 #
661 class classtype_logic_relay(Structure):
662 #{
663 _pack_ = 1
664 _fields_ = [("targets",c_uint32*4)]
665
666 def encode_obj(_, node,node_def ):
667 #{
668 node.classtype = 102
669 obj = node_def['obj']
670 if obj.cv_data.target:
671 _.targets[0] = obj.cv_data.target.cv_data.uid
672 if obj.cv_data.target1:
673 _.targets[1] = obj.cv_data.target1.cv_data.uid
674 if obj.cv_data.target2:
675 _.targets[2] = obj.cv_data.target2.cv_data.uid
676 if obj.cv_data.target3:
677 _.targets[3] = obj.cv_data.target3.cv_data.uid
678 #}
679
680 @staticmethod
681 def draw_scene_helpers( obj ):
682 #{
683 global cv_view_verts, cv_view_colours
684
685 if obj.cv_data.target:
686 cv_draw_arrow( obj.location, obj.cv_data.target.location, [1,1,1,1] )
687 if obj.cv_data.target1:
688 cv_draw_arrow( obj.location, obj.cv_data.target1.location, [1,1,1,1] )
689 if obj.cv_data.target2:
690 cv_draw_arrow( obj.location, obj.cv_data.target2.location, [1,1,1,1] )
691 if obj.cv_data.target3:
692 cv_draw_arrow( obj.location, obj.cv_data.target3.location, [1,1,1,1] )
693 #}
694
695 @staticmethod
696 def editor_interface( layout, obj ):
697 #{
698 layout.prop( obj.cv_data, "target", text="Triggers" )
699 layout.prop( obj.cv_data, "target1", text="Triggers" )
700 layout.prop( obj.cv_data, "target2", text="Triggers" )
701 layout.prop( obj.cv_data, "target3", text="Triggers" )
702 #}
703 #}
704
705 # Classtype 14
706 #
707 # Purpose: Plays some audio (44100hz .ogg vorbis only)
708 # NOTE: There is a 32mb limit on the audio buffer, world audio is
709 # decompressed and stored in signed 16 bit integers (2 bytes)
710 # per sample.
711 #
712 # volume: not used if has 3D flag
713 # flags:
714 # AUDIO_FLAG_LOOP 0x1
715 # AUDIO_FLAG_ONESHOT 0x2 (DONT USE THIS, it breaks semaphores)
716 # AUDIO_FLAG_SPACIAL_3D 0x4 (Probably what you want)
717 # AUDIO_FLAG_AUTO_START 0x8 (Play when the world starts)
718 # ......
719 # the rest are just internal flags, only use the above 3.
720 #
721 class classtype_audio(Structure):
722 #{
723 _pack_ = 1
724 _fields_ = [("pstr_file",c_uint32),
725 ("flags",c_uint32),
726 ("volume",c_float)]
727
728 def encode_obj(_, node,node_def ):
729 #{
730 node.classtype = 14
731
732 obj = node_def['obj']
733
734 _.pstr_file = encoder_process_pstr( obj.cv_data.strp )
735
736 flags = 0x00
737 if obj.cv_data.bp0: flags |= 0x1
738 if obj.cv_data.bp1: flags |= 0x4
739 if obj.cv_data.bp2: flags |= 0x8
740
741 _.flags = flags
742 _.volume = obj.cv_data.fltp
743 #}
744
745 @staticmethod
746 def editor_interface( layout, obj ):
747 #{
748 layout.prop( obj.cv_data, "strp" )
749
750 layout.prop( obj.cv_data, "bp0", text = "Looping" )
751 layout.prop( obj.cv_data, "bp1", text = "3D Audio" )
752 layout.prop( obj.cv_data, "bp2", text = "Auto Start" )
753 #}
754
755 @staticmethod
756 def draw_scene_helpers( obj ):
757 #{
758 global cv_view_verts, cv_view_colours
759
760 cv_draw_sphere( obj.location, obj.scale[0], [1,1,0,1] )
761 #}
762 #}
763
764 class classtype_spawn_link(Structure):
765 #{
766 _pack_ = 1
767 _fields_ = [("connections",c_uint32*4)]
768
769 def encode_obj(_, node,node_def ):
770 #{
771 node.classtype = 0
772 #}
773
774 @staticmethod
775 def editor_interface( layout, obj ):
776 #{
777 pass
778 #}
779
780 @staticmethod
781 def draw_scene_helpers( obj ):
782 #{
783 global cv_view_verts, cv_view_colours
784
785 count = 0
786
787 for obj1 in bpy.context.collection.objects:
788 #{
789 if (obj1.cv_data.classtype != 'classtype_spawn_link') and \
790 (obj1.cv_data.classtype != 'classtype_spawn') :
791 continue
792
793 if (obj1.location - obj.location).length < 40.0:
794 #{
795 cv_draw_line( obj.location, obj1.location, [1,1,1,1] )
796 count +=1
797 #}
798
799 if count == 4:
800 break
801 #}
802
803 cv_draw_sphere( obj.location, 20.0, [0.5,0,0.2,0.4] )
804 #}
805 #}
806
807 # ---------------------------------------------------------------------------- #
808 # #
809 # Compiler section #
810 # #
811 # ---------------------------------------------------------------------------- #
812
813 # Current encoder state
814 #
815 g_encoder = None
816
817 # Reset encoder
818 #
819 def encoder_init( collection ):
820 #{
821 global g_encoder
822
823 g_encoder = \
824 {
825 # The actual file header
826 #
827 'header': mdl_header(),
828
829 # Options
830 #
831 'pack_textures': collection.cv_data.pack_textures,
832
833 # Compiled data chunks (each can be read optionally by the client)
834 #
835 'data':
836 {
837 #1---------------------------------
838 'node': [], # Metadata 'chunk'
839 'submesh': [],
840 'material': [],
841 'texture': [],
842 'anim': [],
843 'entdata': bytearray(), # variable width
844 'strings': bytearray(), # .
845 #2---------------------------------
846 'keyframe': [], # Animations
847 #3---------------------------------
848 'vertex': [], # Mesh data
849 'indice': [],
850 #4---------------------------------
851 'pack': bytearray() # Other generic packed data
852 },
853
854 # All objects of the model in their final heirachy
855 #
856 "uid_count": 1,
857 "scene_graph":{},
858 "graph_lookup":{},
859
860 # Allows us to reuse definitions
861 #
862 'string_cache':{},
863 'mesh_cache': {},
864 'material_cache': {},
865 'texture_cache': {}
866 }
867
868 g_encoder['header'].identifier = 0xABCD0000
869 g_encoder['header'].version = 1
870
871 # Add fake NoneID material and texture
872 #
873 none_material = mdl_material()
874 none_material.pstr_name = encoder_process_pstr( "" )
875 none_material.texture_id = 0
876
877 none_texture = mdl_texture()
878 none_texture.pstr_name = encoder_process_pstr( "" )
879 none_texture.pack_offset = 0
880 none_texture.pack_length = 0
881
882 g_encoder['data']['material'] += [none_material]
883 g_encoder['data']['texture'] += [none_texture]
884
885 g_encoder['data']['pack'].extend( b'datapack\0\0\0\0\0\0\0\0' )
886
887 # Add root node
888 #
889 root = mdl_node()
890 root.co[0] = 0
891 root.co[1] = 0
892 root.co[2] = 0
893 root.q[0] = 0
894 root.q[1] = 0
895 root.q[2] = 0
896 root.q[3] = 1
897 root.s[0] = 1
898 root.s[1] = 1
899 root.s[2] = 1
900 root.pstr_name = encoder_process_pstr('')
901 root.submesh_start = 0
902 root.submesh_count = 0
903 root.offset = 0
904 root.classtype = 0
905 root.parent = 0xffffffff
906
907 g_encoder['data']['node'] += [root]
908 #}
909
910
911 # fill with 0x00 until a multiple of align. Returns how many bytes it added
912 #
913 def bytearray_align_to( buffer, align, offset=0 ):
914 #{
915 count = 0
916
917 while ((len(buffer)+offset) % align) != 0:
918 #{
919 buffer.extend( b'\0' )
920 count += 1
921 #}
922
923 return count
924 #}
925
926 # Add a string to the string buffer except if it already exists there then we
927 # just return its ID.
928 #
929 def encoder_process_pstr( s ):
930 #{
931 global g_encoder
932
933 cache = g_encoder['string_cache']
934
935 if s in cache:
936 return cache[s]
937
938 cache[s] = len( g_encoder['data']['strings'] )
939
940 buffer = g_encoder['data']['strings']
941 buffer.extend( s.encode('utf-8') )
942 buffer.extend( b'\0' )
943
944 bytearray_align_to( buffer, 4 )
945 return cache[s]
946 #}
947
948 def get_texture_resource_name( img ):
949 #{
950 return os.path.splitext( img.name )[0]
951 #}
952
953 # Pack a texture
954 #
955 def encoder_process_texture( img ):
956 #{
957 global g_encoder
958
959 if img == None:
960 return 0
961
962 cache = g_encoder['texture_cache']
963 buffer = g_encoder['data']['texture']
964 pack = g_encoder['data']['pack']
965
966 name = get_texture_resource_name( img )
967
968 if name in cache:
969 return cache[name]
970
971 cache[name] = len( buffer )
972
973 tex = mdl_texture()
974 tex.pstr_name = encoder_process_pstr( name )
975
976 if g_encoder['pack_textures']:
977 #{
978 tex.pack_offset = len( pack )
979 pack.extend( qoi_encode( img ) )
980 tex.pack_length = len( pack ) - tex.pack_offset
981 #}
982 else:
983 tex.pack_offset = 0
984
985 buffer += [ tex ]
986 return cache[name]
987 #}
988
989 def material_tex_image(v):
990 #{
991 return {
992 "Image Texture":
993 {
994 "image": F"{v}"
995 }
996 }
997 #}
998
999 cxr_graph_mapping = \
1000 {
1001 # Default shader setup
1002 "Principled BSDF":
1003 {
1004 "Base Color":
1005 {
1006 "Image Texture":
1007 {
1008 "image": "tex_diffuse"
1009 },
1010 "Mix":
1011 {
1012 "Color1": material_tex_image("tex_diffuse"),
1013 "Color2": material_tex_image("tex_decal")
1014 },
1015 },
1016 "Normal":
1017 {
1018 "Normal Map":
1019 {
1020 "Color": material_tex_image("tex_normal")
1021 }
1022 }
1023 }
1024 }
1025
1026 # https://harrygodden.com/git/?p=convexer.git;a=blob;f=__init__.py;#l1164
1027 #
1028 def material_info(mat):
1029 #{
1030 info = {}
1031
1032 # Using the cv_graph_mapping as a reference, go through the shader
1033 # graph and gather all $props from it.
1034 #
1035 def _graph_read( node_def, node=None, depth=0 ):
1036 #{
1037 nonlocal mat
1038 nonlocal info
1039
1040 # Find rootnodes
1041 #
1042 if node == None:
1043 #{
1044 _graph_read.extracted = []
1045
1046 for node_idname in node_def:
1047 #{
1048 for n in mat.node_tree.nodes:
1049 #{
1050 if n.name == node_idname:
1051 #{
1052 node_def = node_def[node_idname]
1053 node = n
1054 break
1055 #}
1056 #}
1057 #}
1058 #}
1059
1060 for link in node_def:
1061 #{
1062 link_def = node_def[link]
1063
1064 if isinstance( link_def, dict ):
1065 #{
1066 node_link = node.inputs[link]
1067
1068 if node_link.is_linked:
1069 #{
1070 # look for definitions for the connected node type
1071 #
1072 from_node = node_link.links[0].from_node
1073
1074 node_name = from_node.name.split('.')[0]
1075 if node_name in link_def:
1076 #{
1077 from_node_def = link_def[ node_name ]
1078
1079 _graph_read( from_node_def, from_node, depth+1 )
1080 #}
1081
1082 # No definition! :(
1083 # TODO: Make a warning for this?
1084 #}
1085 else:
1086 #{
1087 if "default" in link_def:
1088 #{
1089 prop = link_def['default']
1090 info[prop] = node_link.default_value
1091 #}
1092 #}
1093 #}
1094 else:
1095 #{
1096 prop = link_def
1097 info[prop] = getattr( node, link )
1098 #}
1099 #}
1100 #}
1101
1102 _graph_read( cxr_graph_mapping )
1103 return info
1104 #}
1105
1106 # Add a material to the material buffer. Returns 0 (None ID) if invalid
1107 #
1108 def encoder_process_material( mat ):
1109 #{
1110 global g_encoder
1111
1112 if mat == None:
1113 return 0
1114
1115 cache = g_encoder['material_cache']
1116 buffer = g_encoder['data']['material']
1117
1118 if mat.name in cache:
1119 return cache[mat.name]
1120
1121 cache[mat.name] = len( buffer )
1122
1123 dest = mdl_material()
1124 dest.pstr_name = encoder_process_pstr( mat.name )
1125
1126 flags = 0x00
1127 if mat.cv_data.collision:
1128 flags |= 0x2
1129 if mat.cv_data.skate_surface: flags |= 0x1
1130 if mat.cv_data.grind_surface: flags |= (0x8|0x1)
1131
1132 if mat.cv_data.grow_grass: flags |= 0x4
1133 dest.flags = flags
1134
1135 if mat.cv_data.surface_prop == 'concrete': dest.surface_prop = 0
1136 if mat.cv_data.surface_prop == 'wood': dest.surface_prop = 1
1137 if mat.cv_data.surface_prop == 'grass': dest.surface_prop = 2
1138
1139 if mat.cv_data.shader == 'standard': dest.shader = 0
1140 if mat.cv_data.shader == 'standard_cutout': dest.shader = 1
1141 if mat.cv_data.shader == 'terrain_blend':
1142 #{
1143 dest.shader = 2
1144
1145 dest.colour[0] = pow( mat.cv_data.sand_colour[0], 1.0/2.2 )
1146 dest.colour[1] = pow( mat.cv_data.sand_colour[1], 1.0/2.2 )
1147 dest.colour[2] = pow( mat.cv_data.sand_colour[2], 1.0/2.2 )
1148 dest.colour[3] = 1.0
1149
1150 dest.colour1[0] = mat.cv_data.blend_offset[0]
1151 dest.colour1[1] = mat.cv_data.blend_offset[1]
1152 #}
1153
1154 if mat.cv_data.shader == 'vertex_blend':
1155 #{
1156 dest.shader = 3
1157
1158 dest.colour1[0] = mat.cv_data.blend_offset[0]
1159 dest.colour1[1] = mat.cv_data.blend_offset[1]
1160 #}
1161
1162 if mat.cv_data.shader == 'water':
1163 #{
1164 dest.shader = 4
1165
1166 dest.colour[0] = pow( mat.cv_data.shore_colour[0], 1.0/2.2 )
1167 dest.colour[1] = pow( mat.cv_data.shore_colour[1], 1.0/2.2 )
1168 dest.colour[2] = pow( mat.cv_data.shore_colour[2], 1.0/2.2 )
1169 dest.colour[3] = 1.0
1170 dest.colour1[0] = pow( mat.cv_data.ocean_colour[0], 1.0/2.2 )
1171 dest.colour1[1] = pow( mat.cv_data.ocean_colour[1], 1.0/2.2 )
1172 dest.colour1[2] = pow( mat.cv_data.ocean_colour[2], 1.0/2.2 )
1173 dest.colour1[3] = 1.0
1174 #}
1175
1176 inf = material_info( mat )
1177
1178 if mat.cv_data.shader == 'standard' or \
1179 mat.cv_data.shader == 'standard_cutout' or \
1180 mat.cv_data.shader == 'terrain_blend' or \
1181 mat.cv_data.shader == 'vertex_blend':
1182 #{
1183 if 'tex_diffuse' in inf:
1184 dest.tex_diffuse = encoder_process_texture(inf['tex_diffuse'])
1185 #}
1186
1187 buffer += [dest]
1188 return cache[mat.name]
1189 #}
1190
1191 # Create a tree structure containing all the objects in the collection
1192 #
1193 def encoder_build_scene_graph( collection ):
1194 #{
1195 global g_encoder
1196
1197 print( " creating scene graph" )
1198
1199 # initialize root
1200 #
1201 graph = g_encoder['scene_graph']
1202 graph_lookup = g_encoder['graph_lookup']
1203 graph["obj"] = None
1204 graph["depth"] = 0
1205 graph["children"] = []
1206 graph["uid"] = 0
1207 graph["parent"] = None
1208
1209 def _new_uid():
1210 #{
1211 global g_encoder
1212 uid = g_encoder['uid_count']
1213 g_encoder['uid_count'] += 1
1214 return uid
1215 #}
1216
1217 for obj in collection.all_objects:
1218 #{
1219 if obj.parent: continue
1220
1221 def _extend( p, n, d ):
1222 #{
1223 uid = _new_uid()
1224 tree = {}
1225 tree["uid"] = uid
1226 tree["children"] = []
1227 tree["depth"] = d
1228 tree["obj"] = n
1229 tree["parent"] = p
1230 n.cv_data.uid = uid
1231
1232 # Descend into amature
1233 #
1234 if n.type == 'ARMATURE':
1235 #{
1236 tree["bones"] = [None] # None is the root transform
1237 tree["ik_count"] = 0
1238 tree["collider_count"] = 0
1239
1240 # Here also collects some information about constraints, ik and
1241 # counts colliders for the armature.
1242 #
1243 def _extendb( p, n, d ):
1244 #{
1245 nonlocal tree
1246
1247 btree = {}
1248 btree["bone"] = n
1249 btree["linked_armature"] = tree
1250 btree["uid"] = _new_uid()
1251 btree["children"] = []
1252 btree["depth"] = d
1253 btree["parent"] = p
1254 tree["bones"] += [n.name]
1255
1256 for c in n.children:
1257 #{
1258 _extendb( btree, c, d+1 )
1259 #}
1260
1261 for c in tree['obj'].pose.bones[n.name].constraints:
1262 #{
1263 if c.type == 'IK':
1264 #{
1265 btree["ik_target"] = c.subtarget
1266 btree["ik_pole"] = c.pole_subtarget
1267 tree["ik_count"] += 1
1268 #}
1269 #}
1270
1271 if n.cv_data.collider:
1272 tree['collider_count'] += 1
1273
1274 btree['deform'] = n.use_deform
1275 p['children'] += [btree]
1276 #}
1277
1278 for b in n.data.bones:
1279 if not b.parent:
1280 _extendb( tree, b, d+1 )
1281 #}
1282
1283 # Recurse into children of this object
1284 #
1285 for obj1 in n.children:
1286 #{
1287 nonlocal collection
1288 for c1 in obj1.users_collection:
1289 #{
1290 if c1 == collection:
1291 #{
1292 _extend( tree, obj1, d+1 )
1293 break
1294 #}
1295 #}
1296 #}
1297
1298 p["children"] += [tree]
1299 graph_lookup[n] = tree
1300
1301 #}
1302
1303 _extend( graph, obj, 1 )
1304
1305 #}
1306 #}
1307
1308
1309 # Kind of a useless thing i made but it looks cool and adds complexity!!1
1310 #
1311 def encoder_graph_iterator( root ):
1312 #{
1313 for c in root['children']:
1314 #{
1315 yield c
1316 yield from encoder_graph_iterator(c)
1317 #}
1318 #}
1319
1320
1321 # Push a vertex into the model file, or return a cached index (c_uint32)
1322 #
1323 def encoder_vertex_push( vertex_reference, co,norm,uv,colour,groups,weights ):
1324 #{
1325 global g_encoder
1326 buffer = g_encoder['data']['vertex']
1327
1328 TOLERENCE = 4
1329 m = float(10**TOLERENCE)
1330
1331 # Would be nice to know if this can be done faster than it currently runs,
1332 # its quite slow.
1333 #
1334 key = (int(co[0]*m+0.5),
1335 int(co[1]*m+0.5),
1336 int(co[2]*m+0.5),
1337 int(norm[0]*m+0.5),
1338 int(norm[1]*m+0.5),
1339 int(norm[2]*m+0.5),
1340 int(uv[0]*m+0.5),
1341 int(uv[1]*m+0.5),
1342 colour[0], # these guys are already quantized
1343 colour[1], # .
1344 colour[2], # .
1345 colour[3], # .
1346 weights[0], # v
1347 weights[1],
1348 weights[2],
1349 weights[3],
1350 groups[0],
1351 groups[1],
1352 groups[2],
1353 groups[3])
1354
1355 if key in vertex_reference:
1356 return vertex_reference[key]
1357 else:
1358 #{
1359 index = c_uint32( len(vertex_reference) )
1360 vertex_reference[key] = index
1361
1362 v = mdl_vert()
1363 v.co[0] = co[0]
1364 v.co[1] = co[2]
1365 v.co[2] = -co[1]
1366 v.norm[0] = norm[0]
1367 v.norm[1] = norm[2]
1368 v.norm[2] = -norm[1]
1369 v.uv[0] = uv[0]
1370 v.uv[1] = uv[1]
1371 v.colour[0] = colour[0]
1372 v.colour[1] = colour[1]
1373 v.colour[2] = colour[2]
1374 v.colour[3] = colour[3]
1375 v.weights[0] = weights[0]
1376 v.weights[1] = weights[1]
1377 v.weights[2] = weights[2]
1378 v.weights[3] = weights[3]
1379 v.groups[0] = groups[0]
1380 v.groups[1] = groups[1]
1381 v.groups[2] = groups[2]
1382 v.groups[3] = groups[3]
1383
1384 buffer += [v]
1385 return index
1386 #}
1387 #}
1388
1389
1390 # Compile a mesh (or use one from the cache) onto node, based on node_def
1391 # No return value
1392 #
1393 def encoder_compile_mesh( node, node_def ):
1394 #{
1395 global g_encoder
1396
1397 graph = g_encoder['scene_graph']
1398 graph_lookup = g_encoder['graph_lookup']
1399 mesh_cache = g_encoder['mesh_cache']
1400 obj = node_def['obj']
1401 armature_def = None
1402 can_use_cache = True
1403
1404 # Check for modifiers that typically change the data per-instance
1405 # there is no well defined rule for the choices here, its just what i've
1406 # needed while producing the game.
1407 #
1408 # It may be possible to detect these cases automatically.
1409 #
1410 for mod in obj.modifiers:
1411 #{
1412 if mod.type == 'DATA_TRANSFER' or mod.type == 'SHRINKWRAP' or \
1413 mod.type == 'BOOLEAN' or mod.type == 'CURVE' or \
1414 mod.type == 'ARRAY':
1415 #{
1416 can_use_cache = False
1417 #}
1418
1419 if mod.type == 'ARMATURE':
1420 armature_def = graph_lookup[mod.object]
1421
1422 # Check the cache first
1423 #
1424 if can_use_cache and (obj.data.name in mesh_cache):
1425 #{
1426 ref = mesh_cache[obj.data.name]
1427 node.submesh_start = ref.submesh_start
1428 node.submesh_count = ref.submesh_count
1429 return
1430 #}
1431
1432 # Compile a whole new mesh
1433 #
1434 node.submesh_start = len( g_encoder['data']['submesh'] )
1435 node.submesh_count = 0
1436
1437 dgraph = bpy.context.evaluated_depsgraph_get()
1438 data = obj.evaluated_get(dgraph).data
1439 data.calc_loop_triangles()
1440 data.calc_normals_split()
1441
1442 # Mesh is split into submeshes based on their material
1443 #
1444 mat_list = data.materials if len(data.materials) > 0 else [None]
1445 for material_id, mat in enumerate(mat_list):
1446 #{
1447 mref = {}
1448
1449 sm = mdl_submesh()
1450 sm.indice_start = len( g_encoder['data']['indice'] )
1451 sm.vertex_start = len( g_encoder['data']['vertex'] )
1452 sm.vertex_count = 0
1453 sm.indice_count = 0
1454 sm.material_id = encoder_process_material( mat )
1455
1456 for i in range(3):
1457 #{
1458 sm.bbx[0][i] = 999999
1459 sm.bbx[1][i] = -999999
1460 #}
1461
1462 # Keep a reference to very very very similar vertices
1463 #
1464 vertex_reference = {}
1465
1466 # Write the vertex / indice data
1467 #
1468 for tri_index, tri in enumerate(data.loop_triangles):
1469 #{
1470 if tri.material_index != material_id:
1471 continue
1472
1473 for j in range(3):
1474 #{
1475 vert = data.vertices[tri.vertices[j]]
1476 li = tri.loops[j]
1477 vi = data.loops[li].vertex_index
1478
1479 # Gather vertex information
1480 #
1481 co = vert.co
1482 norm = data.loops[li].normal
1483 uv = (0,0)
1484 colour = (255,255,255,255)
1485 groups = [0,0,0,0]
1486 weights = [0,0,0,0]
1487
1488 # Uvs
1489 #
1490 if data.uv_layers:
1491 uv = data.uv_layers.active.data[li].uv
1492
1493 # Vertex Colours
1494 #
1495 if data.vertex_colors:
1496 #{
1497 colour = data.vertex_colors.active.data[li].color
1498 colour = (int(colour[0]*255.0),\
1499 int(colour[1]*255.0),\
1500 int(colour[2]*255.0),\
1501 int(colour[3]*255.0))
1502 #}
1503
1504 # Weight groups: truncates to the 3 with the most influence. The
1505 # fourth bone ID is never used by the shader so it is
1506 # always 0
1507 #
1508 if armature_def:
1509 #{
1510 src_groups = [_ for _ in data.vertices[vi].groups \
1511 if obj.vertex_groups[_.group].name in \
1512 armature_def['bones']]
1513
1514 weight_groups = sorted( src_groups, key = \
1515 lambda a: a.weight, reverse=True )
1516 tot = 0.0
1517 for ml in range(3):
1518 #{
1519 if len(weight_groups) > ml:
1520 #{
1521 g = weight_groups[ml]
1522 name = obj.vertex_groups[g.group].name
1523 weight = g.weight
1524
1525 weights[ml] = weight
1526 groups[ml] = armature_def['bones'].index(name)
1527 tot += weight
1528 #}
1529 #}
1530
1531 if len(weight_groups) > 0:
1532 #{
1533 inv_norm = (1.0/tot) * 65535.0
1534 for ml in range(3):
1535 #{
1536 weights[ml] = int( weights[ml] * inv_norm )
1537 weights[ml] = min( weights[ml], 65535 )
1538 weights[ml] = max( weights[ml], 0 )
1539 #}
1540 #}
1541 #}
1542 else:
1543 #{
1544 li1 = tri.loops[(j+1)%3]
1545 vi1 = data.loops[li1].vertex_index
1546 e0 = data.edges[ data.loops[li].edge_index ]
1547
1548 if e0.use_freestyle_mark and \
1549 ((e0.vertices[0] == vi and e0.vertices[1] == vi1) or \
1550 (e0.vertices[0] == vi1 and e0.vertices[1] == vi)):
1551 #{
1552 weights[0] = 1
1553 #}
1554 #}
1555
1556 # Add vertex and expand bound box
1557 #
1558 index = encoder_vertex_push( vertex_reference, co, \
1559 norm, \
1560 uv, \
1561 colour, \
1562 groups, \
1563 weights )
1564 g_encoder['data']['indice'] += [index]
1565 #}
1566 #}
1567
1568 # How many unique verts did we add in total
1569 #
1570 sm.vertex_count = len(g_encoder['data']['vertex']) - sm.vertex_start
1571 sm.indice_count = len(g_encoder['data']['indice']) - sm.indice_start
1572
1573 # Make sure bounding box isn't -inf -> inf if no vertices
1574 #
1575 if sm.vertex_count == 0:
1576 for j in range(2):
1577 for i in range(3):
1578 sm.bbx[j][i] = 0
1579 else:
1580 #{
1581 for j in range(sm.vertex_count):
1582 #{
1583 vert = g_encoder['data']['vertex'][ sm.vertex_start + j ]
1584
1585 for i in range(3):
1586 #{
1587 sm.bbx[0][i] = min( sm.bbx[0][i], vert.co[i] )
1588 sm.bbx[1][i] = max( sm.bbx[1][i], vert.co[i] )
1589 #}
1590 #}
1591 #}
1592
1593 # Add submesh to encoder
1594 #
1595 g_encoder['data']['submesh'] += [sm]
1596 node.submesh_count += 1
1597
1598 #}
1599
1600 # Save a reference to this node since we want to reuse the submesh indices
1601 # later.
1602 g_encoder['mesh_cache'][obj.data.name] = node
1603 #}
1604
1605
1606 def encoder_compile_ent_as( name, node, node_def ):
1607 #{
1608 global g_encoder
1609
1610 if name == 'classtype_none':
1611 #{
1612 node.offset = 0
1613 node.classtype = 0
1614 return
1615 #}
1616 elif name not in globals():
1617 #{
1618 print( "Classtype '" +name + "' is unknown!" )
1619 return
1620 #}
1621
1622 buffer = g_encoder['data']['entdata']
1623 node.offset = len(buffer)
1624
1625 cl = globals()[ name ]
1626 inst = cl()
1627 inst.encode_obj( node, node_def )
1628
1629 buffer.extend( bytearray(inst) )
1630 bytearray_align_to( buffer, 4 )
1631 #}
1632
1633 # Compiles animation data into model and gives us some extra node_def entries
1634 #
1635 def encoder_compile_armature( node, node_def ):
1636 #{
1637 global g_encoder
1638
1639 entdata = g_encoder['data']['entdata']
1640 animdata = g_encoder['data']['anim']
1641 keyframedata = g_encoder['data']['keyframe']
1642 mesh_cache = g_encoder['mesh_cache']
1643 obj = node_def['obj']
1644 bones = node_def['bones']
1645
1646 # extra info
1647 node_def['anim_start'] = len(animdata)
1648 node_def['anim_count'] = 0
1649
1650 # Compile anims
1651 #
1652 if obj.animation_data:
1653 #{
1654 # So we can restore later
1655 #
1656 previous_frame = bpy.context.scene.frame_current
1657 previous_action = obj.animation_data.action
1658 POSE_OR_REST_CACHE = obj.data.pose_position
1659 obj.data.pose_position = 'POSE'
1660
1661 for NLALayer in obj.animation_data.nla_tracks:
1662 #{
1663 for NLAStrip in NLALayer.strips:
1664 #{
1665 # set active
1666 #
1667 for a in bpy.data.actions:
1668 #{
1669 if a.name == NLAStrip.name:
1670 #{
1671 obj.animation_data.action = a
1672 break
1673 #}
1674 #}
1675
1676 # Clip to NLA settings
1677 #
1678 anim_start = int(NLAStrip.action_frame_start)
1679 anim_end = int(NLAStrip.action_frame_end)
1680
1681 # Export strips
1682 #
1683 anim = mdl_animation()
1684 anim.pstr_name = encoder_process_pstr( NLAStrip.action.name )
1685 anim.rate = 30.0
1686 anim.offset = len(keyframedata)
1687 anim.length = anim_end-anim_start
1688
1689 # Export the keyframes
1690 for frame in range(anim_start,anim_end):
1691 #{
1692 bpy.context.scene.frame_set(frame)
1693
1694 for bone_name in bones:
1695 #{
1696 for pb in obj.pose.bones:
1697 #{
1698 if pb.name != bone_name: continue
1699
1700 rb = obj.data.bones[ bone_name ]
1701
1702 # relative bone matrix
1703 if rb.parent is not None:
1704 #{
1705 offset_mtx = rb.parent.matrix_local
1706 offset_mtx = offset_mtx.inverted_safe() @ \
1707 rb.matrix_local
1708
1709 inv_parent = pb.parent.matrix @ offset_mtx
1710 inv_parent.invert_safe()
1711 fpm = inv_parent @ pb.matrix
1712 #}
1713 else:
1714 #{
1715 bone_mtx = rb.matrix.to_4x4()
1716 local_inv = rb.matrix_local.inverted_safe()
1717 fpm = bone_mtx @ local_inv @ pb.matrix
1718 #}
1719
1720 loc, rot, sca = fpm.decompose()
1721
1722 # local position
1723 final_pos = Vector(( loc[0], loc[2], -loc[1] ))
1724
1725 # rotation
1726 lc_m = pb.matrix_channel.to_3x3()
1727 if pb.parent is not None:
1728 #{
1729 smtx = pb.parent.matrix_channel.to_3x3()
1730 lc_m = smtx.inverted() @ lc_m
1731 #}
1732 rq = lc_m.to_quaternion()
1733
1734 kf = mdl_keyframe()
1735 kf.co[0] = final_pos[0]
1736 kf.co[1] = final_pos[1]
1737 kf.co[2] = final_pos[2]
1738
1739 kf.q[0] = rq[1]
1740 kf.q[1] = rq[3]
1741 kf.q[2] = -rq[2]
1742 kf.q[3] = rq[0]
1743
1744 # scale
1745 kf.s[0] = sca[0]
1746 kf.s[1] = sca[2]
1747 kf.s[2] = sca[1]
1748
1749 keyframedata += [kf]
1750 break
1751 #}
1752 #}
1753 #}
1754
1755 # Add to animation buffer
1756 #
1757 animdata += [anim]
1758 node_def['anim_count'] += 1
1759
1760 # Report progress
1761 #
1762 status_name = F" " + " |"*(node_def['depth']-1)
1763 print( F"{status_name} | *anim: {NLAStrip.action.name}" )
1764 #}
1765 #}
1766
1767 # Restore context to how it was before
1768 #
1769 bpy.context.scene.frame_set( previous_frame )
1770 obj.animation_data.action = previous_action
1771 obj.data.pose_position = POSE_OR_REST_CACHE
1772 #}
1773 #}
1774
1775 # We are trying to compile this node_def
1776 #
1777 def encoder_process_definition( node_def ):
1778 #{
1779 global g_encoder
1780
1781 # data sources for object/bone are taken differently
1782 #
1783 if 'obj' in node_def:
1784 #{
1785 obj = node_def['obj']
1786 obj_type = obj.type
1787 obj_co = obj.location
1788
1789 if obj_type == 'ARMATURE':
1790 obj_classtype = 'classtype_skeleton'
1791 else:
1792 #{
1793 obj_classtype = obj.cv_data.classtype
1794
1795 # Check for armature deform
1796 #
1797 for mod in obj.modifiers:
1798 #{
1799 if mod.type == 'ARMATURE':
1800 #{
1801 obj_classtype = 'classtype_skin'
1802
1803 # Make sure to freeze armature in rest while we collect
1804 # vertex information
1805 #
1806 armature_def = g_encoder['graph_lookup'][mod.object]
1807 POSE_OR_REST_CACHE = armature_def['obj'].data.pose_position
1808 armature_def['obj'].data.pose_position = 'REST'
1809 node_def['linked_armature'] = armature_def
1810 break
1811 #}
1812 #}
1813 #}
1814 #}
1815
1816 elif 'bone' in node_def:
1817 #{
1818 obj = node_def['bone']
1819 obj_type = 'BONE'
1820 obj_co = obj.head_local
1821 obj_classtype = 'classtype_bone'
1822 #}
1823
1824 # Create node
1825 #
1826 node = mdl_node()
1827 node.pstr_name = encoder_process_pstr( obj.name )
1828
1829 if node_def["parent"]:
1830 node.parent = node_def["parent"]["uid"]
1831
1832 # Setup transform
1833 #
1834 node.co[0] = obj_co[0]
1835 node.co[1] = obj_co[2]
1836 node.co[2] = -obj_co[1]
1837
1838 # Convert rotation quat to our space type
1839 #
1840 quat = obj.matrix_local.to_quaternion()
1841 node.q[0] = quat[1]
1842 node.q[1] = quat[3]
1843 node.q[2] = -quat[2]
1844 node.q[3] = quat[0]
1845
1846 # Bone scale is just a vector to the tail
1847 #
1848 if obj_type == 'BONE':
1849 #{
1850 node.s[0] = obj.tail_local[0] - node.co[0]
1851 node.s[1] = obj.tail_local[2] - node.co[1]
1852 node.s[2] = -obj.tail_local[1] - node.co[2]
1853 #}
1854 else:
1855 #{
1856 node.s[0] = obj.scale[0]
1857 node.s[1] = obj.scale[2]
1858 node.s[2] = obj.scale[1]
1859 #}
1860
1861 # Report status
1862 #
1863 tot_uid = g_encoder['uid_count']-1
1864 obj_uid = node_def['uid']
1865 obj_depth = node_def['depth']-1
1866
1867 status_id = F" [{obj_uid: 3}/{tot_uid}]" + " |"*obj_depth
1868 status_name = status_id + F" L {obj.name}"
1869
1870 if obj_classtype != 'classtype_none': status_type = obj_classtype
1871 else: status_type = obj_type
1872
1873 status_parent = F"{node.parent: 3}"
1874 status_armref = ""
1875
1876 if obj_classtype == 'classtype_skin':
1877 status_armref = F" [armature -> {armature_def['obj'].cv_data.uid}]"
1878
1879 print(F"{status_name:<32} {status_type:<22} {status_parent} {status_armref}")
1880
1881 # Process mesh if needed
1882 #
1883 if obj_type == 'MESH':
1884 #{
1885 encoder_compile_mesh( node, node_def )
1886 #}
1887 elif obj_type == 'ARMATURE':
1888 #{
1889 encoder_compile_armature( node, node_def )
1890 #}
1891
1892 encoder_compile_ent_as( obj_classtype, node, node_def )
1893
1894 # Make sure to reset the armature we just mucked about with
1895 #
1896 if obj_classtype == 'classtype_skin':
1897 armature_def['obj'].data.pose_position = POSE_OR_REST_CACHE
1898
1899 g_encoder['data']['node'] += [node]
1900 #}
1901
1902 # The post processing step or the pre processing to the writing step
1903 #
1904 def encoder_write_to_file( path ):
1905 #{
1906 global g_encoder
1907
1908 # Compile down to a byte array
1909 #
1910 header = g_encoder['header']
1911 file_pos = sizeof(header)
1912 file_data = bytearray()
1913 print( " Compositing data arrays" )
1914
1915 for array_name in g_encoder['data']:
1916 #{
1917 file_pos += bytearray_align_to( file_data, 16, sizeof(header) )
1918 arr = g_encoder['data'][array_name]
1919
1920 setattr( header, array_name + "_offset", file_pos )
1921
1922 print( F" {array_name:<16} @{file_pos:> 8X}[{len(arr)}]" )
1923
1924 if isinstance( arr, bytearray ):
1925 #{
1926 setattr( header, array_name + "_size", len(arr) )
1927
1928 file_data.extend( arr )
1929 file_pos += len(arr)
1930 #}
1931 else:
1932 #{
1933 setattr( header, array_name + "_count", len(arr) )
1934
1935 for item in arr:
1936 #{
1937 bbytes = bytearray(item)
1938 file_data.extend( bbytes )
1939 file_pos += sizeof(item)
1940 #}
1941 #}
1942 #}
1943
1944 # This imperitive for this field to be santized in the future!
1945 #
1946 header.file_length = file_pos
1947
1948 print( " Writing file" )
1949 # Write header and data chunk to file
1950 #
1951 fp = open( path, "wb" )
1952 fp.write( bytearray( header ) )
1953 fp.write( file_data )
1954 fp.close()
1955 #}
1956
1957 # Main compiler, uses string as the identifier for the collection
1958 #
1959 def write_model(collection_name):
1960 #{
1961 global g_encoder
1962 print( F"Model graph | Create mode '{collection_name}'" )
1963 folder = bpy.path.abspath(bpy.context.scene.cv_data.export_dir)
1964 path = F"{folder}{collection_name}.mdl"
1965 print( path )
1966
1967 collection = bpy.data.collections[collection_name]
1968
1969 encoder_init( collection )
1970 encoder_build_scene_graph( collection )
1971
1972 # Compile
1973 #
1974 print( " Comping objects" )
1975 it = encoder_graph_iterator( g_encoder['scene_graph'] )
1976 for node_def in it:
1977 encoder_process_definition( node_def )
1978
1979 # Write
1980 #
1981 encoder_write_to_file( path )
1982
1983 print( F"Completed {collection_name}.mdl" )
1984 #}
1985
1986 # ---------------------------------------------------------------------------- #
1987 # #
1988 # GUI section #
1989 # #
1990 # ---------------------------------------------------------------------------- #
1991
1992 cv_view_draw_handler = None
1993 cv_view_shader = gpu.shader.from_builtin('3D_SMOOTH_COLOR')
1994 cv_view_verts = []
1995 cv_view_colours = []
1996 cv_view_course_i = 0
1997
1998 # Draw axis alligned sphere at position with radius
1999 #
2000 def cv_draw_sphere( pos, radius, colour ):
2001 #{
2002 global cv_view_verts, cv_view_colours
2003
2004 ly = pos + Vector((0,0,radius))
2005 lx = pos + Vector((0,radius,0))
2006 lz = pos + Vector((0,0,radius))
2007
2008 pi = 3.14159265358979323846264
2009
2010 for i in range(16):
2011 #{
2012 t = ((i+1.0) * 1.0/16.0) * pi * 2.0
2013 s = math.sin(t)
2014 c = math.cos(t)
2015
2016 py = pos + Vector((s*radius,0.0,c*radius))
2017 px = pos + Vector((s*radius,c*radius,0.0))
2018 pz = pos + Vector((0.0,s*radius,c*radius))
2019
2020 cv_view_verts += [ px, lx ]
2021 cv_view_verts += [ py, ly ]
2022 cv_view_verts += [ pz, lz ]
2023
2024 cv_view_colours += [ colour, colour, colour, colour, colour, colour ]
2025
2026 ly = py
2027 lx = px
2028 lz = pz
2029 #}
2030 cv_draw_lines()
2031 #}
2032
2033 # Draw transformed -1 -> 1 cube
2034 #
2035 def cv_draw_ucube( transform, colour ):
2036 #{
2037 global cv_view_verts, cv_view_colours
2038
2039 a = Vector((-1,-1,-1))
2040 b = Vector((1,1,1))
2041
2042 vs = [None]*8
2043 vs[0] = transform @ Vector((a[0], a[1], a[2]))
2044 vs[1] = transform @ Vector((a[0], b[1], a[2]))
2045 vs[2] = transform @ Vector((b[0], b[1], a[2]))
2046 vs[3] = transform @ Vector((b[0], a[1], a[2]))
2047 vs[4] = transform @ Vector((a[0], a[1], b[2]))
2048 vs[5] = transform @ Vector((a[0], b[1], b[2]))
2049 vs[6] = transform @ Vector((b[0], b[1], b[2]))
2050 vs[7] = transform @ Vector((b[0], a[1], b[2]))
2051
2052 indices = [(0,1),(1,2),(2,3),(3,0),(4,5),(5,6),(6,7),(7,4),\
2053 (0,4),(1,5),(2,6),(3,7)]
2054
2055 for l in indices:
2056 #{
2057 v0 = vs[l[0]]
2058 v1 = vs[l[1]]
2059 cv_view_verts += [(v0[0],v0[1],v0[2])]
2060 cv_view_verts += [(v1[0],v1[1],v1[2])]
2061 cv_view_colours += [(0,1,0,1),(0,1,0,1)]
2062 #}
2063 cv_draw_lines()
2064 #}
2065
2066 # Draw line with colour
2067 #
2068 def cv_draw_line( p0, p1, colour ):
2069 #{
2070 global cv_view_verts, cv_view_colours
2071
2072 cv_view_verts += [p0,p1]
2073 cv_view_colours += [colour, colour]
2074 cv_draw_lines()
2075 #}
2076
2077 # Draw line with colour(s)
2078 #
2079 def cv_draw_line2( p0, p1, c0, c1 ):
2080 #{
2081 global cv_view_verts, cv_view_colours
2082
2083 cv_view_verts += [p0,p1]
2084 cv_view_colours += [c0,c1]
2085 cv_draw_lines()
2086 #}
2087
2088 # Just the tx because we dont really need ty for this app
2089 #
2090 def cv_tangent_basis_tx( n, tx ):
2091 #{
2092 if abs( n[0] ) >= 0.57735027:
2093 #{
2094 tx[0] = n[1]
2095 tx[1] = -n[0]
2096 tx[2] = 0.0
2097 #}
2098 else:
2099 #{
2100 tx[0] = 0.0
2101 tx[1] = n[2]
2102 tx[2] = -n[1]
2103 #}
2104
2105 tx.normalize()
2106 #}
2107
2108 # Draw coloured arrow
2109 #
2110 def cv_draw_arrow( p0, p1, c0 ):
2111 #{
2112 global cv_view_verts, cv_view_colours
2113
2114 n = p1-p0
2115 midpt = p0 + n*0.5
2116 n.normalize()
2117
2118 tx = Vector((1,0,0))
2119 cv_tangent_basis_tx( n, tx )
2120
2121 cv_view_verts += [p0,p1, midpt+(tx-n)*0.15,midpt, midpt+(-tx-n)*0.15,midpt ]
2122 cv_view_colours += [c0,c0,c0,c0,c0,c0]
2123 cv_draw_lines()
2124 #}
2125
2126 # Drawhandles of a bezier control point
2127 #
2128 def cv_draw_bhandle( obj, direction, colour ):
2129 #{
2130 global cv_view_verts, cv_view_colours
2131
2132 p0 = obj.location
2133 h0 = obj.matrix_world @ Vector((0,direction,0))
2134
2135 cv_view_verts += [p0]
2136 cv_view_verts += [h0]
2137 cv_view_colours += [colour,colour]
2138 cv_draw_lines()
2139 #}
2140
2141 # Draw a bezier curve (at fixed resolution 10)
2142 #
2143 def cv_draw_bezier( p0,h0,p1,h1,c0,c1 ):
2144 #{
2145 global cv_view_verts, cv_view_colours
2146
2147 last = p0
2148 for i in range(10):
2149 #{
2150 t = (i+1)/10
2151 a0 = 1-t
2152
2153 tt = t*t
2154 ttt = tt*t
2155 p=ttt*p1+(3*tt-3*ttt)*h1+(3*ttt-6*tt+3*t)*h0+(3*tt-ttt-3*t+1)*p0
2156
2157 cv_view_verts += [(last[0],last[1],last[2])]
2158 cv_view_verts += [(p[0],p[1],p[2])]
2159 cv_view_colours += [c0*a0+c1*(1-a0),c0*a0+c1*(1-a0)]
2160
2161 last = p
2162 #}
2163 cv_draw_lines()
2164 #}
2165
2166 # I think this one extends the handles of the bezier otwards......
2167 #
2168 def cv_draw_sbpath( o0,o1,c0,c1,s0,s1 ):
2169 #{
2170 global cv_view_course_i
2171
2172 offs = ((cv_view_course_i % 2)*2-1) * cv_view_course_i * 0.02
2173
2174 p0 = o0.matrix_world @ Vector((offs, 0,0))
2175 h0 = o0.matrix_world @ Vector((offs, s0,0))
2176 p1 = o1.matrix_world @ Vector((offs, 0,0))
2177 h1 = o1.matrix_world @ Vector((offs,-s1,0))
2178
2179 cv_draw_bezier( p0,h0,p1,h1,c0,c1 )
2180 cv_draw_lines()
2181 #}
2182
2183 # Flush the lines buffers. This is called often because god help you if you want
2184 # to do fixed, fast buffers in this catastrophic programming language.
2185 #
2186 def cv_draw_lines():
2187 #{
2188 global cv_view_shader, cv_view_verts, cv_view_colours
2189
2190 if len(cv_view_verts) < 2:
2191 return
2192
2193 lines = batch_for_shader(\
2194 cv_view_shader, 'LINES', \
2195 { "pos":cv_view_verts, "color":cv_view_colours })
2196
2197 lines.draw( cv_view_shader )
2198
2199 cv_view_verts = []
2200 cv_view_colours = []
2201 #}
2202
2203 # I dont remember what this does exactly
2204 #
2205 def cv_draw_bpath( o0,o1,c0,c1 ):
2206 #{
2207 cv_draw_sbpath( o0,o1,c0,c1,1.0,1.0 )
2208 #}
2209
2210 # Semi circle to show the limit. and some lines
2211 #
2212 def draw_limit( obj, center, major, minor, amin, amax, colour ):
2213 #{
2214 global cv_view_verts, cv_view_colours
2215 f = 0.05
2216 ay = major*f
2217 ax = minor*f
2218
2219 for x in range(16):
2220 #{
2221 t0 = x/16
2222 t1 = (x+1)/16
2223 a0 = amin*(1.0-t0)+amax*t0
2224 a1 = amin*(1.0-t1)+amax*t1
2225
2226 p0 = center + major*f*math.cos(a0) + minor*f*math.sin(a0)
2227 p1 = center + major*f*math.cos(a1) + minor*f*math.sin(a1)
2228
2229 p0=obj.matrix_world @ p0
2230 p1=obj.matrix_world @ p1
2231 cv_view_verts += [p0,p1]
2232 cv_view_colours += [colour,colour]
2233
2234 if x == 0:
2235 #{
2236 cv_view_verts += [p0,center]
2237 cv_view_colours += [colour,colour]
2238 #}
2239 if x == 15:
2240 #{
2241 cv_view_verts += [p1,center]
2242 cv_view_colours += [colour,colour]
2243 #}
2244 #}
2245
2246 cv_view_verts += [center+major*1.2*f,center+major*f*0.8]
2247 cv_view_colours += [colour,colour]
2248
2249 cv_draw_lines()
2250 #}
2251
2252 # Draws constraints and stuff for the skeleton. This isnt documented and wont be
2253 #
2254 def draw_skeleton_helpers( obj ):
2255 #{
2256 global cv_view_verts, cv_view_colours
2257
2258 for bone in obj.data.bones:
2259 #{
2260 if bone.cv_data.collider and (obj.data.pose_position == 'REST'):
2261 #{
2262 c = bone.head_local
2263 a = bone.cv_data.v0
2264 b = bone.cv_data.v1
2265
2266 vs = [None]*8
2267 vs[0]=obj.matrix_world@Vector((c[0]+a[0],c[1]+a[1],c[2]+a[2]))
2268 vs[1]=obj.matrix_world@Vector((c[0]+a[0],c[1]+b[1],c[2]+a[2]))
2269 vs[2]=obj.matrix_world@Vector((c[0]+b[0],c[1]+b[1],c[2]+a[2]))
2270 vs[3]=obj.matrix_world@Vector((c[0]+b[0],c[1]+a[1],c[2]+a[2]))
2271 vs[4]=obj.matrix_world@Vector((c[0]+a[0],c[1]+a[1],c[2]+b[2]))
2272 vs[5]=obj.matrix_world@Vector((c[0]+a[0],c[1]+b[1],c[2]+b[2]))
2273 vs[6]=obj.matrix_world@Vector((c[0]+b[0],c[1]+b[1],c[2]+b[2]))
2274 vs[7]=obj.matrix_world@Vector((c[0]+b[0],c[1]+a[1],c[2]+b[2]))
2275
2276 indices = [(0,1),(1,2),(2,3),(3,0),(4,5),(5,6),(6,7),(7,4),\
2277 (0,4),(1,5),(2,6),(3,7)]
2278
2279 for l in indices:
2280 #{
2281 v0 = vs[l[0]]
2282 v1 = vs[l[1]]
2283
2284 cv_view_verts += [(v0[0],v0[1],v0[2])]
2285 cv_view_verts += [(v1[0],v1[1],v1[2])]
2286 cv_view_colours += [(0.5,0.5,0.5,0.5),(0.5,0.5,0.5,0.5)]
2287 #}
2288
2289 center = obj.matrix_world @ c
2290 if bone.cv_data.con0:
2291 #{
2292 draw_limit( obj, c, Vector((0,1,0)),Vector((0,0,1)), \
2293 bone.cv_data.mins[0], bone.cv_data.maxs[0], \
2294 (1,0,0,1))
2295 draw_limit( obj, c, Vector((0,0,1)),Vector((1,0,0)), \
2296 bone.cv_data.mins[1], bone.cv_data.maxs[1], \
2297 (0,1,0,1))
2298 draw_limit( obj, c, Vector((1,0,0)),Vector((0,1,0)), \
2299 bone.cv_data.mins[2], bone.cv_data.maxs[2], \
2300 (0,0,1,1))
2301 #}
2302 #}
2303 #}
2304 #}
2305
2306 def cv_draw():
2307 #{
2308 global cv_view_shader
2309 global cv_view_verts
2310 global cv_view_colours
2311 global cv_view_course_i
2312
2313 cv_view_course_i = 0
2314 cv_view_verts = []
2315 cv_view_colours = []
2316
2317 cv_view_shader.bind()
2318 gpu.state.depth_mask_set(False)
2319 gpu.state.line_width_set(2.0)
2320 gpu.state.face_culling_set('BACK')
2321 gpu.state.depth_test_set('LESS')
2322 gpu.state.blend_set('NONE')
2323
2324 for obj in bpy.context.collection.objects:
2325 #{
2326 if obj.type == 'ARMATURE':
2327 #{
2328 if obj.data.pose_position == 'REST':
2329 draw_skeleton_helpers( obj )
2330 #}
2331 else:
2332 #{
2333 classtype = obj.cv_data.classtype
2334 if (classtype != 'classtype_none') and (classtype in globals()):
2335 #{
2336 cl = globals()[ classtype ]
2337
2338 if getattr( cl, "draw_scene_helpers", None ):
2339 #{
2340 cl.draw_scene_helpers( obj )
2341 #}
2342 #}
2343 #}
2344 #}
2345
2346 cv_draw_lines()
2347 return
2348 #}
2349
2350
2351 # ---------------------------------------------------------------------------- #
2352 # #
2353 # Blender #
2354 # #
2355 # ---------------------------------------------------------------------------- #
2356
2357 # Checks whether this object has a classtype assigned. we can only target other
2358 # classes
2359 def cv_poll_target(scene, obj):
2360 #{
2361 if obj == bpy.context.active_object:
2362 return False
2363 if obj.cv_data.classtype == 'classtype_none':
2364 return False
2365
2366 return True
2367 #}
2368
2369 class CV_MESH_SETTINGS(bpy.types.PropertyGroup):
2370 #{
2371 v0: bpy.props.FloatVectorProperty(name="v0",size=3)
2372 v1: bpy.props.FloatVectorProperty(name="v1",size=3)
2373 v2: bpy.props.FloatVectorProperty(name="v2",size=3)
2374 v3: bpy.props.FloatVectorProperty(name="v3",size=3)
2375 #}
2376
2377 class CV_OBJ_SETTINGS(bpy.types.PropertyGroup):
2378 #{
2379 uid: bpy.props.IntProperty( name="" )
2380
2381 strp: bpy.props.StringProperty( name="strp" )
2382 intp: bpy.props.IntProperty( name="intp" )
2383 fltp: bpy.props.FloatProperty( name="fltp" )
2384 bp0: bpy.props.BoolProperty( name="bp0" )
2385 bp1: bpy.props.BoolProperty( name="bp1" )
2386 bp2: bpy.props.BoolProperty( name="bp2" )
2387 bp3: bpy.props.BoolProperty( name="bp3" )
2388
2389 target: bpy.props.PointerProperty( type=bpy.types.Object, name="target", \
2390 poll=cv_poll_target )
2391 target1: bpy.props.PointerProperty( type=bpy.types.Object, name="target1", \
2392 poll=cv_poll_target )
2393 target2: bpy.props.PointerProperty( type=bpy.types.Object, name="target2", \
2394 poll=cv_poll_target )
2395 target3: bpy.props.PointerProperty( type=bpy.types.Object, name="target3", \
2396 poll=cv_poll_target )
2397
2398 colour: bpy.props.FloatVectorProperty( name="colour",subtype='COLOR',\
2399 min=0.0,max=1.0)
2400
2401 classtype: bpy.props.EnumProperty(
2402 name="Format",
2403 items = [
2404 ('classtype_none', "classtype_none", "", 0),
2405 ('classtype_gate', "classtype_gate", "", 1),
2406 ('classtype_spawn', "classtype_spawn", "", 3),
2407 ('classtype_water', "classtype_water", "", 4),
2408 ('classtype_route_node', "classtype_route_node", "", 8 ),
2409 ('classtype_route', "classtype_route", "", 9 ),
2410 ('classtype_audio',"classtype_audio","",14),
2411 ('classtype_trigger',"classtype_trigger","",100),
2412 ('classtype_logic_achievement',"classtype_logic_achievement","",101),
2413 ('classtype_logic_relay',"classtype_logic_relay","",102),
2414 ('classtype_spawn_link',"classtype_spawn_link","",150),
2415 ])
2416 #}
2417
2418 class CV_BONE_SETTINGS(bpy.types.PropertyGroup):
2419 #{
2420 collider: bpy.props.BoolProperty(name="Collider",default=False)
2421 v0: bpy.props.FloatVectorProperty(name="v0",size=3)
2422 v1: bpy.props.FloatVectorProperty(name="v1",size=3)
2423
2424 con0: bpy.props.BoolProperty(name="Constriant 0",default=False)
2425 mins: bpy.props.FloatVectorProperty(name="mins",size=3)
2426 maxs: bpy.props.FloatVectorProperty(name="maxs",size=3)
2427 #}
2428
2429 class CV_BONE_PANEL(bpy.types.Panel):
2430 #{
2431 bl_label="Bone Config"
2432 bl_idname="SCENE_PT_cv_bone"
2433 bl_space_type='PROPERTIES'
2434 bl_region_type='WINDOW'
2435 bl_context='bone'
2436
2437 def draw(_,context):
2438 #{
2439 active_object = context.active_object
2440 if active_object == None: return
2441
2442 bone = active_object.data.bones.active
2443 if bone == None: return
2444
2445 _.layout.prop( bone.cv_data, "collider" )
2446 _.layout.prop( bone.cv_data, "v0" )
2447 _.layout.prop( bone.cv_data, "v1" )
2448
2449 _.layout.label( text="Angle Limits" )
2450 _.layout.prop( bone.cv_data, "con0" )
2451 _.layout.prop( bone.cv_data, "mins" )
2452 _.layout.prop( bone.cv_data, "maxs" )
2453 #}
2454 #}
2455
2456 class CV_SCENE_SETTINGS(bpy.types.PropertyGroup):
2457 #{
2458 use_hidden: bpy.props.BoolProperty( name="use hidden", default=False )
2459 export_dir: bpy.props.StringProperty( name="Export Dir", subtype='DIR_PATH' )
2460 #}
2461
2462 class CV_COLLECTION_SETTINGS(bpy.types.PropertyGroup):
2463 #{
2464 pack_textures: bpy.props.BoolProperty( name="Pack Textures", default=False )
2465 #}
2466
2467 class CV_MATERIAL_SETTINGS(bpy.types.PropertyGroup):
2468 #{
2469 shader: bpy.props.EnumProperty(
2470 name="Format",
2471 items = [
2472 ('standard',"standard","",0),
2473 ('standard_cutout', "standard_cutout", "", 1),
2474 ('terrain_blend', "terrain_blend", "", 2),
2475 ('vertex_blend', "vertex_blend", "", 3),
2476 ('water',"water","",4),
2477 ])
2478
2479 surface_prop: bpy.props.EnumProperty(
2480 name="Surface Property",
2481 items = [
2482 ('concrete','concrete','',0),
2483 ('wood','wood','',1),
2484 ('grass','grass','',2)
2485 ])
2486
2487 collision: bpy.props.BoolProperty( \
2488 name="Collisions Enabled",\
2489 default=True,\
2490 description = "Can the player collide with this material"\
2491 )
2492 skate_surface: bpy.props.BoolProperty( \
2493 name="Skate Surface", \
2494 default=True,\
2495 description = "Should the game try to target this surface?" \
2496 )
2497 grind_surface: bpy.props.BoolProperty( \
2498 name="Grind Surface", \
2499 default=False,\
2500 description = "Grind face?" \
2501 )
2502 grow_grass: bpy.props.BoolProperty( \
2503 name="Grow Grass", \
2504 default=False,\
2505 description = "Spawn grass sprites on this surface?" \
2506 )
2507 blend_offset: bpy.props.FloatVectorProperty( \
2508 name="Blend Offset", \
2509 size=2, \
2510 default=Vector((0.5,0.0)),\
2511 description="When surface is more than 45 degrees, add this vector " +\
2512 "to the UVs" \
2513 )
2514 sand_colour: bpy.props.FloatVectorProperty( \
2515 name="Sand Colour",\
2516 subtype='COLOR',\
2517 min=0.0,max=1.0,\
2518 default=Vector((0.79,0.63,0.48)),\
2519 description="Blend to this colour near the 0 coordinate on UP axis"\
2520 )
2521 shore_colour: bpy.props.FloatVectorProperty( \
2522 name="Shore Colour",\
2523 subtype='COLOR',\
2524 min=0.0,max=1.0,\
2525 default=Vector((0.03,0.32,0.61)),\
2526 description="Water colour at the shoreline"\
2527 )
2528 ocean_colour: bpy.props.FloatVectorProperty( \
2529 name="Ocean Colour",\
2530 subtype='COLOR',\
2531 min=0.0,max=1.0,\
2532 default=Vector((0.0,0.006,0.03)),\
2533 description="Water colour in the deep bits"\
2534 )
2535 #}
2536
2537 class CV_MATERIAL_PANEL(bpy.types.Panel):
2538 #{
2539 bl_label="Skate Rift material"
2540 bl_idname="MATERIAL_PT_cv_material"
2541 bl_space_type='PROPERTIES'
2542 bl_region_type='WINDOW'
2543 bl_context="material"
2544
2545 def draw(_,context):
2546 #{
2547 active_object = bpy.context.active_object
2548 if active_object == None: return
2549 active_mat = active_object.active_material
2550 if active_mat == None: return
2551
2552 info = material_info( active_mat )
2553
2554 _.layout.prop( active_mat.cv_data, "shader" )
2555 _.layout.prop( active_mat.cv_data, "surface_prop" )
2556 _.layout.prop( active_mat.cv_data, "collision" )
2557
2558 if active_mat.cv_data.collision:
2559 _.layout.prop( active_mat.cv_data, "skate_surface" )
2560 _.layout.prop( active_mat.cv_data, "grind_surface" )
2561 _.layout.prop( active_mat.cv_data, "grow_grass" )
2562
2563 if active_mat.cv_data.shader == "terrain_blend":
2564 #{
2565 box = _.layout.box()
2566 box.prop( active_mat.cv_data, "blend_offset" )
2567 box.prop( active_mat.cv_data, "sand_colour" )
2568 #}
2569 elif active_mat.cv_data.shader == "vertex_blend":
2570 #{
2571 box = _.layout.box()
2572 box.label( icon='INFO', text="Uses vertex colours, the R channel" )
2573 box.prop( active_mat.cv_data, "blend_offset" )
2574 #}
2575 elif active_mat.cv_data.shader == "water":
2576 #{
2577 box = _.layout.box()
2578 box.label( icon='INFO', text="Depth scale of 16 meters" )
2579 box.prop( active_mat.cv_data, "shore_colour" )
2580 box.prop( active_mat.cv_data, "ocean_colour" )
2581 #}
2582 #}
2583 #}
2584
2585 class CV_OBJ_PANEL(bpy.types.Panel):
2586 #{
2587 bl_label="Entity Config"
2588 bl_idname="SCENE_PT_cv_entity"
2589 bl_space_type='PROPERTIES'
2590 bl_region_type='WINDOW'
2591 bl_context="object"
2592
2593 def draw(_,context):
2594 #{
2595 active_object = bpy.context.active_object
2596 if active_object == None: return
2597 if active_object.type == 'ARMATURE':
2598 #{
2599 row = _.layout.row()
2600 row.enabled = False
2601 row.label( text="This object has the intrinsic classtype of skeleton" )
2602 return
2603 #}
2604
2605 _.layout.prop( active_object.cv_data, "classtype" )
2606
2607 classtype = active_object.cv_data.classtype
2608
2609 if (classtype != 'classtype_none') and (classtype in globals()):
2610 #{
2611 cl = globals()[ classtype ]
2612
2613 if getattr( cl, "editor_interface", None ):
2614 #{
2615 cl.editor_interface( _.layout, active_object )
2616 #}
2617 #}
2618 #}
2619 #}
2620
2621 class CV_COMPILE(bpy.types.Operator):
2622 #{
2623 bl_idname="carve.compile_all"
2624 bl_label="Compile All"
2625
2626 def execute(_,context):
2627 #{
2628 view_layer = bpy.context.view_layer
2629 for col in view_layer.layer_collection.children["export"].children:
2630 if not col.hide_viewport or bpy.context.scene.cv_data.use_hidden:
2631 write_model( col.name )
2632
2633 return {'FINISHED'}
2634 #}
2635 #}
2636
2637 class CV_COMPILE_THIS(bpy.types.Operator):
2638 #{
2639 bl_idname="carve.compile_this"
2640 bl_label="Compile This collection"
2641
2642 def execute(_,context):
2643 #{
2644 col = bpy.context.collection
2645 write_model( col.name )
2646
2647 return {'FINISHED'}
2648 #}
2649 #}
2650
2651 class CV_INTERFACE(bpy.types.Panel):
2652 #{
2653 bl_idname = "VIEW3D_PT_carve"
2654 bl_label = "Skate Rift"
2655 bl_space_type = 'VIEW_3D'
2656 bl_region_type = 'UI'
2657 bl_category = "Skate Rift"
2658
2659 def draw(_, context):
2660 #{
2661 layout = _.layout
2662 layout.prop( context.scene.cv_data, "export_dir" )
2663
2664 col = bpy.context.collection
2665
2666 found_in_export = False
2667 export_count = 0
2668 view_layer = bpy.context.view_layer
2669 for c1 in view_layer.layer_collection.children["export"].children:
2670 #{
2671 if not c1.hide_viewport or bpy.context.scene.cv_data.use_hidden:
2672 export_count += 1
2673
2674 if c1.name == col.name:
2675 #{
2676 found_in_export = True
2677 #}
2678 #}
2679
2680 box = layout.box()
2681 if found_in_export:
2682 #{
2683 box.label( text=col.name + ".mdl" )
2684 box.prop( col.cv_data, "pack_textures" )
2685 box.operator( "carve.compile_this" )
2686 #}
2687 else:
2688 #{
2689 row = box.row()
2690 row.enabled=False
2691 row.label( text=col.name )
2692 box.label( text="This collection is not in the export group" )
2693 #}
2694
2695 box = layout.box()
2696 row = box.row()
2697
2698 split = row.split( factor = 0.3, align=True )
2699 split.prop( context.scene.cv_data, "use_hidden", text="hidden" )
2700
2701 row1 = split.row()
2702 if export_count == 0:
2703 row1.enabled=False
2704 row1.operator( "carve.compile_all", \
2705 text=F"Compile all ({export_count} collections)" )
2706 #}
2707 #}
2708
2709
2710 classes = [CV_OBJ_SETTINGS,CV_OBJ_PANEL,CV_COMPILE,CV_INTERFACE,\
2711 CV_MESH_SETTINGS, CV_SCENE_SETTINGS, CV_BONE_SETTINGS,\
2712 CV_BONE_PANEL, CV_COLLECTION_SETTINGS, CV_COMPILE_THIS,\
2713 CV_MATERIAL_SETTINGS, CV_MATERIAL_PANEL ]
2714
2715 def register():
2716 #{
2717 global cv_view_draw_handler
2718
2719 for c in classes:
2720 bpy.utils.register_class(c)
2721
2722 bpy.types.Object.cv_data = bpy.props.PointerProperty(type=CV_OBJ_SETTINGS)
2723 bpy.types.Mesh.cv_data = bpy.props.PointerProperty(type=CV_MESH_SETTINGS)
2724 bpy.types.Scene.cv_data = bpy.props.PointerProperty(type=CV_SCENE_SETTINGS)
2725 bpy.types.Bone.cv_data = bpy.props.PointerProperty(type=CV_BONE_SETTINGS)
2726 bpy.types.Collection.cv_data = \
2727 bpy.props.PointerProperty(type=CV_COLLECTION_SETTINGS)
2728 bpy.types.Material.cv_data = \
2729 bpy.props.PointerProperty(type=CV_MATERIAL_SETTINGS)
2730
2731 cv_view_draw_handler = bpy.types.SpaceView3D.draw_handler_add(\
2732 cv_draw,(),'WINDOW','POST_VIEW')
2733 #}
2734
2735 def unregister():
2736 #{
2737 global cv_view_draw_handler
2738
2739 for c in classes:
2740 bpy.utils.unregister_class(c)
2741
2742 bpy.types.SpaceView3D.draw_handler_remove(cv_view_draw_handler,'WINDOW')
2743 #}
2744
2745 # ---------------------------------------------------------------------------- #
2746 # #
2747 # QOI encoder #
2748 # #
2749 # ---------------------------------------------------------------------------- #
2750 # #
2751 # Transliteration of: #
2752 # https://github.com/phoboslab/qoi/blob/master/qoi.h #
2753 # #
2754 # Copyright (c) 2021, Dominic Szablewski - https://phoboslab.org #
2755 # SPDX-License-Identifier: MIT #
2756 # QOI - The "Quite OK Image" format for fast, lossless image compression #
2757 # #
2758 # ---------------------------------------------------------------------------- #
2759
2760 class qoi_rgba_t(Structure):
2761 #{
2762 _pack_ = 1
2763 _fields_ = [("r",c_uint8),
2764 ("g",c_uint8),
2765 ("b",c_uint8),
2766 ("a",c_uint8)]
2767 #}
2768
2769 QOI_OP_INDEX = 0x00 # 00xxxxxx
2770 QOI_OP_DIFF = 0x40 # 01xxxxxx
2771 QOI_OP_LUMA = 0x80 # 10xxxxxx
2772 QOI_OP_RUN = 0xc0 # 11xxxxxx
2773 QOI_OP_RGB = 0xfe # 11111110
2774 QOI_OP_RGBA = 0xff # 11111111
2775
2776 QOI_MASK_2 = 0xc0 # 11000000
2777
2778 def qoi_colour_hash( c ):
2779 #{
2780 return c.r*3 + c.g*5 + c.b*7 + c.a*11
2781 #}
2782
2783 def qoi_eq( a, b ):
2784 #{
2785 return (a.r==b.r) and (a.g==b.g) and (a.b==b.b) and (a.a==b.a)
2786 #}
2787
2788 def qoi_32bit( v ):
2789 #{
2790 return bytearray([ (0xff000000 & v) >> 24, \
2791 (0x00ff0000 & v) >> 16, \
2792 (0x0000ff00 & v) >> 8, \
2793 (0x000000ff & v) ])
2794 #}
2795
2796 def qoi_encode( img ):
2797 #{
2798 data = bytearray()
2799
2800 print(F" . Encoding {img.name}.qoi[{img.size[0]},{img.size[1]}]")
2801
2802 index = [ qoi_rgba_t() for _ in range(64) ]
2803
2804 # Header
2805 #
2806 data.extend( bytearray(c_uint32(0x66696f71)) )
2807 data.extend( qoi_32bit( img.size[0] ) )
2808 data.extend( qoi_32bit( img.size[1] ) )
2809 data.extend( bytearray(c_uint8(4)) )
2810 data.extend( bytearray(c_uint8(0)) )
2811
2812 run = 0
2813 px_prev = qoi_rgba_t()
2814 px_prev.r = c_uint8(0)
2815 px_prev.g = c_uint8(0)
2816 px_prev.b = c_uint8(0)
2817 px_prev.a = c_uint8(255)
2818
2819 px = qoi_rgba_t()
2820 px.r = c_uint8(0)
2821 px.g = c_uint8(0)
2822 px.b = c_uint8(0)
2823 px.a = c_uint8(255)
2824
2825 px_len = img.size[0] * img.size[1]
2826
2827 paxels = [ int(min(max(_,0),1)*255) for _ in img.pixels ]
2828
2829 for px_pos in range( px_len ):
2830 #{
2831 idx = px_pos * img.channels
2832 nc = img.channels-1
2833
2834 px.r = paxels[idx+min(0,nc)]
2835 px.g = paxels[idx+min(1,nc)]
2836 px.b = paxels[idx+min(2,nc)]
2837 px.a = paxels[idx+min(3,nc)]
2838
2839 if qoi_eq( px, px_prev ):
2840 #{
2841 run += 1
2842
2843 if (run == 62) or (px_pos == px_len-1):
2844 #{
2845 data.extend( bytearray( c_uint8(QOI_OP_RUN | (run-1))) )
2846 run = 0
2847 #}
2848 #}
2849 else:
2850 #{
2851 if run > 0:
2852 #{
2853 data.extend( bytearray( c_uint8(QOI_OP_RUN | (run-1))) )
2854 run = 0
2855 #}
2856
2857 index_pos = qoi_colour_hash(px) % 64
2858
2859 if qoi_eq( index[index_pos], px ):
2860 #{
2861 data.extend( bytearray( c_uint8(QOI_OP_INDEX | index_pos)) )
2862 #}
2863 else:
2864 #{
2865 index[ index_pos ].r = px.r
2866 index[ index_pos ].g = px.g
2867 index[ index_pos ].b = px.b
2868 index[ index_pos ].a = px.a
2869
2870 if px.a == px_prev.a:
2871 #{
2872 vr = int(px.r) - int(px_prev.r)
2873 vg = int(px.g) - int(px_prev.g)
2874 vb = int(px.b) - int(px_prev.b)
2875
2876 vg_r = vr - vg
2877 vg_b = vb - vg
2878
2879 if (vr > -3) and (vr < 2) and\
2880 (vg > -3) and (vg < 2) and\
2881 (vb > -3) and (vb < 2):
2882 #{
2883 op = QOI_OP_DIFF | (vr+2) << 4 | (vg+2) << 2 | (vb+2)
2884 data.extend( bytearray( c_uint8(op) ))
2885 #}
2886 elif (vg_r > -9) and (vg_r < 8) and\
2887 (vg > -33) and (vg < 32 ) and\
2888 (vg_b > -9) and (vg_b < 8):
2889 #{
2890 op = QOI_OP_LUMA | (vg+32)
2891 delta = (vg_r+8) << 4 | (vg_b + 8)
2892 data.extend( bytearray( c_uint8(op) ) )
2893 data.extend( bytearray( c_uint8(delta) ))
2894 #}
2895 else:
2896 #{
2897 data.extend( bytearray( c_uint8(QOI_OP_RGB) ) )
2898 data.extend( bytearray( c_uint8(px.r) ))
2899 data.extend( bytearray( c_uint8(px.g) ))
2900 data.extend( bytearray( c_uint8(px.b) ))
2901 #}
2902 #}
2903 else:
2904 #{
2905 data.extend( bytearray( c_uint8(QOI_OP_RGBA) ) )
2906 data.extend( bytearray( c_uint8(px.r) ))
2907 data.extend( bytearray( c_uint8(px.g) ))
2908 data.extend( bytearray( c_uint8(px.b) ))
2909 data.extend( bytearray( c_uint8(px.a) ))
2910 #}
2911 #}
2912 #}
2913
2914 px_prev.r = px.r
2915 px_prev.g = px.g
2916 px_prev.b = px.b
2917 px_prev.a = px.a
2918 #}
2919
2920 # Padding
2921 for i in range(7):
2922 data.extend( bytearray( c_uint8(0) ))
2923 data.extend( bytearray( c_uint8(1) ))
2924 bytearray_align_to( data, 16, 0 )
2925
2926 return data
2927 #}