forked from johnzero7/XNALaraMesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
import_xnalara_model.py
791 lines (613 loc) · 24.8 KB
/
import_xnalara_model.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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
import bpy
import copy
import operator
import os
import re
from . import import_xnalara_pose
from . import read_ascii_xps
from . import read_bin_xps
from . import xps_types
from . import material_creator
# from .timing import timing, profile
from mathutils import Vector
# imported XPS directory
rootDir = ''
blenderBoneNames = []
MIN_BONE_LENGHT = 0.005
def newBoneName():
global blenderBoneNames
blenderBoneNames = []
def addBoneName(newName):
global blenderBoneNames
blenderBoneNames.append(newName)
def getBoneName(originalIndex):
if originalIndex < len(blenderBoneNames):
return blenderBoneNames[originalIndex]
else:
return None
def coordTransform(coords):
x, y, z = coords
z = -z
return (x, z, y)
def faceTransform(face):
return [face[0], face[2], face[1]]
def faceTransformList(faces):
return map(faceTransform, faces)
def uvTransform(uv):
u = uv[0] + xpsSettings.uvDisplX
v = 1 + xpsSettings.uvDisplY - uv[1]
return [u, v]
def rangeFloatToByte(float):
return int(float * 255) % 256
def rangeByteToFloat(byte):
return byte / 255
def uvTransformLayers(uvLayers):
return list(map(uvTransform, uvLayers))
# profile
def getInputFilename(xpsSettingsAux):
global xpsSettings
xpsSettings = xpsSettingsAux
blenderImportSetup()
status = xpsImport()
blenderImportFinalize()
return status
def blenderImportSetup():
# switch to object mode and deselect all
objectMode()
bpy.ops.object.select_all(action='DESELECT')
def blenderImportFinalize():
# switch to object mode
objectMode()
def objectMode():
current_mode = bpy.context.mode
if bpy.context.view_layer.objects.active and current_mode != 'OBJECT':
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
def loadXpsFile(filename):
dirpath, file = os.path.split(filename)
basename, ext = os.path.splitext(file)
if ext.lower() in ('.mesh', '.xps'):
xpsData = read_bin_xps.readXpsModel(filename)
elif ext.lower() in('.ascii'):
xpsData = read_ascii_xps.readXpsModel(filename)
else:
xpsData = None
return xpsData
def makeMesh(meshFullName):
mesh_da = bpy.data.meshes.new(meshFullName)
mesh_ob = bpy.data.objects.new(mesh_da.name, mesh_da)
print('Created Mesh: {}'.format(meshFullName))
print('New Mesh = {}'.format(mesh_da.name))
# bpy.context.scene.update()
# mesh_da.update()
return mesh_ob
def linkToCollection(collection, obj):
# Link Object to collection
collection.objects.link(obj)
def xpsImport():
global rootDir
global xpsData
print("------------------------------------------------------------")
print("---------------EXECUTING XPS PYTHON IMPORTER----------------")
print("------------------------------------------------------------")
print("Importing file: ", xpsSettings.filename)
rootDir, file = os.path.split(xpsSettings.filename)
print('rootDir: {}'.format(rootDir))
xpsData = loadXpsFile(xpsSettings.filename)
if not xpsData:
return '{NONE}'
# Create New Collection
fname, fext = os.path.splitext(file)
new_collection = bpy.data.collections.new(fname)
view_layer = bpy.context.view_layer
active_collection = view_layer.active_layer_collection.collection
active_collection.children.link(new_collection)
# imports the armature
armature_ob = createArmature()
if armature_ob:
linkToCollection(new_collection, armature_ob)
importBones(armature_ob)
markSelected(armature_ob)
# imports all the meshes
meshes_obs = importMeshesList(armature_ob)
# link object to Collection
for obj in meshes_obs:
linkToCollection(new_collection, obj)
markSelected(obj)
if armature_ob:
armature_ob.pose.use_auto_ik = xpsSettings.autoIk
hideUnusedBones([armature_ob])
# set tail to Children Middle Point
boneTailMiddleObject(armature_ob, xpsSettings.connectBones)
# Import default pose
if(xpsSettings.importDefaultPose and armature_ob):
if(xpsData.header and xpsData.header.pose):
import_xnalara_pose.setXpsPose(armature_ob, xpsData.header.pose)
return '{FINISHED}'
def setMinimumLenght(bone):
default_length = MIN_BONE_LENGHT
if bone.length == 0:
bone.tail = bone.head - Vector((0, .001, 0))
if bone.length < default_length:
bone.length = default_length
def boneTailMiddleObject(armature_ob, connectBones):
bpy.context.view_layer.objects.active = armature_ob
bpy.ops.object.mode_set(mode='EDIT', toggle=False)
editBones = armature_ob.data.edit_bones
boneTailMiddle(editBones, connectBones)
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
def setBoneConnect(connectBones):
currMode = bpy.context.mode
bpy.ops.object.mode_set(mode='EDIT', toggle=False)
editBones = bpy.context.view_layer.objects.active.data.edit_bones
connectEditBones(editBones, connectBones)
bpy.ops.object.mode_set(mode=currMode, toggle=False)
def connectEditBones(editBones, connectBones):
for bone in editBones:
if bone.parent:
if bone.head == bone.parent.tail:
bone.use_connect = connectBones
def hideBonesByName(armature_objs):
"""Hide bones that do not affect any mesh."""
for armature in armature_objs:
for bone in armature.data.bones:
if bone.name.lower().startswith('unused'):
hideBone(bone)
def hideBonesByVertexGroup(armature_objs):
"""Hide bones that do not affect any mesh."""
for armature in armature_objs:
objs = [obj for obj in armature.children
if obj.type == 'MESH' and obj.modifiers and [
modif for modif in obj.modifiers if modif
and modif.type == 'ARMATURE' and modif.object == armature]]
# cycle objects and get all vertex groups
vertexgroups = set(
[vg.name for obj in objs if obj.type == 'MESH'
for vg in obj.vertex_groups])
bones = armature.data.bones
# leafBones = [bone for bone in bones if not bone.children]
rootBones = [bone for bone in bones if not bone.parent]
for bone in rootBones:
recurBones(bone, vertexgroups, '')
def recurBones(bone, vertexgroups, name):
visibleChild = False
for childBone in bone.children:
aux = recurBones(childBone, vertexgroups, '{} '.format(name))
visibleChild = visibleChild or aux
visibleChain = bone.name in vertexgroups or visibleChild
if not visibleChain:
hideBone(bone)
return visibleChain
def hideBone(bone):
bone.layers[1] = True
bone.layers[0] = False
def showBone(bone):
bone.layers[0] = True
bone.layers[1] = False
def visibleBone(bone):
return bone.layers[0]
def showAllBones(armature_objs):
"""Move all bones to layer 0."""
for armature in armature_objs:
for bone in armature.data.bones:
showBone(bone)
def hideBoneChain(bone):
hideBone(bone)
parentBone = bone.parent
if parentBone:
hideBoneChain(parentBone)
def showBoneChain(bone):
showBone(bone)
parentBone = bone.parent
if parentBone:
showBoneChain(parentBone)
def hideUnusedBones(armature_objs):
hideBonesByVertexGroup(armature_objs)
hideBonesByName(armature_objs)
def boneDictRename(filepath, armatureObj):
boneDictDataRename, boneDictDataRestore = read_ascii_xps.readBoneDict(filepath)
renameBonesUsingDict(armatureObj, boneDictDataRename)
def boneDictRestore(filepath, armatureObj):
boneDictDataRename, boneDictDataRestore = read_ascii_xps.readBoneDict(filepath)
renameBonesUsingDict(armatureObj, boneDictDataRestore)
def renameBonesUsingDict(armatureObj, boneDict):
getbone = armatureObj.data.bones.get
for key, value in boneDict.items():
boneRenamed = getbone(import_xnalara_pose.renameBoneToBlender(key))
if boneRenamed:
boneRenamed.name = value
else:
boneOriginal = getbone(key)
if boneOriginal:
boneOriginal.name = value
def createArmature():
bones = xpsData.bones
armature_ob = None
if bones:
boneCount = len(bones)
print('Importing Armature', str(boneCount), 'bones')
armature_da = bpy.data.armatures.new("Armature")
armature_da.display_type = 'STICK'
armature_ob = bpy.data.objects.new("Armature", armature_da)
armature_ob.show_in_front = True
# armature_ob.pose.use_auto_ik = autoIk
return armature_ob
def importBones(armature_ob):
bones = xpsData.bones
bpy.context.view_layer.objects.active = armature_ob
bpy.ops.object.mode_set(mode='EDIT')
newBoneName()
# create all Bones
for bone in bones:
editBone = armature_ob.data.edit_bones.new(bone.name)
# Bone index change after parenting. This keeps original index
addBoneName(editBone.name)
transformedBone = coordTransform(bone.co)
editBone.head = Vector(transformedBone)
editBone.tail = Vector(editBone.head) + Vector((0, 0, -.1))
setMinimumLenght(editBone)
# set all bone parents
for bone in bones:
if (bone.parentId >= 0):
editBone = armature_ob.data.edit_bones[bone.id]
editBone.parent = armature_ob.data.edit_bones[bone.parentId]
markSelected(armature_ob)
bpy.ops.object.mode_set(mode='OBJECT')
return armature_ob
def boneTailMiddle(editBones, connectBones):
"""Move bone tail to children middle point."""
twistboneRegex = r'\b(hip)?(twist|ctr|root|adj)\d*\b'
for bone in editBones:
if (bone.name.lower() == "root ground" or not bone.parent):
bone.tail = bone.head.xyz + Vector((0, -.5, 0))
# elif (bone.name.lower() == "root hips"):
# bone.tail = bone.head.xyz + Vector((0, .2, 0))
else:
if visibleBone(bone):
childBones = [childBone for childBone in bone.children
if visibleBone(childBone) and not (re.search(twistboneRegex, childBone.name))]
else:
childBones = [childBone for childBone in bone.children if not (re.search(twistboneRegex, childBone.name))]
if childBones:
# Set tail to children middle
bone.tail = Vector(map(sum, zip(*(childBone.head.xyz for childBone in childBones)))) / len(childBones)
else:
# if no child, set tail acording to parent
if bone.parent is not None:
if bone.head.xyz != bone.parent.tail.xyz:
# Tail to diference between bone and parent
delta = bone.head.xyz - bone.parent.tail.xyz
else:
# Tail to same lenght/direction than parent
delta = bone.parent.tail.xyz - bone.parent.head.xyz
bone.tail = bone.head.xyz + delta
# Set minimum bone length
for bone in editBones:
setMinimumLenght(bone)
# Connect Bones to parent
connectEditBones(editBones, connectBones)
def markSelected(ob):
ob.select_set(state=True)
def makeUvs(mesh_da, faces, uvData, vertColors):
# Create UVLayers
for i in range(len(uvData[0])):
mesh_da.uv_layers.new(name="UV{}".format(str(i + 1)))
if xpsSettings.vColors:
mesh_da.vertex_colors.new()
# Assign UVCoords
for faceId, face in enumerate(faces):
for vertId, faceVert in enumerate(face):
loopdId = (faceId * 3) + vertId
if xpsSettings.vColors:
mesh_da.vertex_colors[0].data[loopdId].color = vertColors[faceVert]
for layerIdx, uvLayer in enumerate(mesh_da.uv_layers):
uvCoor = uvData[faceVert][layerIdx]
uvLayer.data[loopdId].uv = Vector(uvCoor)
def createJoinedMeshes():
meshPartRegex = re.compile(r'(!.*)*([\d]+nPart)*!')
sortedMeshesList = sorted(xpsData.meshes, key=operator.attrgetter('name'))
joinedMeshesNames = list(
{meshPartRegex.sub('', mesh.name, 0) for mesh in sortedMeshesList})
joinedMeshesNames.sort()
newMeshes = []
for joinedMeshName in joinedMeshesNames:
# for each joinedMeshName generate a list of meshes to join
meshesToJoin = [mesh for mesh in sortedMeshesList if meshPartRegex.sub(
'', mesh.name, 0) == joinedMeshName]
totalVertexCount = 0
vertexCount = 0
meshCount = 0
meshName = None
textures = None
vertex = None
faces = None
# new name for the unified mesh
meshName = meshPartRegex.sub('', meshesToJoin[0].name, 0)
# all the meshses share the same textures
textures = meshesToJoin[0].textures
# all the meshses share the uv layers count
uvCount = meshesToJoin[0].uvCount
# all the new joined mesh names
vertex = []
faces = []
for mesh in meshesToJoin:
vertexCount = 0
meshCount = meshCount + 1
if len(meshesToJoin) > 1 or meshesToJoin[0] not in sortedMeshesList:
# unify vertex
for vert in mesh.vertices:
vertexCount = vertexCount + 1
newVertice = xps_types.XpsVertex(
vert.id + totalVertexCount, vert.co, vert.norm, vert.vColor, vert.uv, vert.boneWeights)
vertex.append(newVertice)
# unify faces
for face in mesh.faces:
newFace = [face[0] + totalVertexCount, face[1]
+ totalVertexCount, face[2] + totalVertexCount]
faces.append(newFace)
else:
vertex = mesh.vertices
faces = mesh.faces
totalVertexCount = totalVertexCount + vertexCount
# Creates the nuw unified mesh
xpsMesh = xps_types.XpsMesh(meshName, textures, vertex, faces, uvCount)
newMeshes.append(xpsMesh)
return newMeshes
def importMeshesList(armature_ob):
if xpsSettings.joinMeshParts:
newMeshes = createJoinedMeshes()
else:
newMeshes = xpsData.meshes
importedMeshes = [importMesh(armature_ob, meshInfo)
for meshInfo in newMeshes]
return [mesh for mesh in importedMeshes if mesh]
def generateVertexKey(vertex):
if xpsSettings.joinMeshRips:
key = str(vertex.co) + str(vertex.norm)
else:
key = str(vertex.id) + str(vertex.co) + str(vertex.norm)
return key
def getVertexId(vertex, mapVertexKeys, mergedVertList):
vertexKey = generateVertexKey(vertex)
vertexID = mapVertexKeys.get(vertexKey)
if vertexID is None:
vertexID = len(mergedVertList)
mapVertexKeys[vertexKey] = vertexID
newVert = copy.copy(vertex)
newVert.id = vertexID
mergedVertList.append(newVert)
else:
mergedVertList[vertexID].merged = True
return vertexID
def makeVertexDict(vertexDict, mergedVertList, uvLayers, vertColor, vertices):
mapVertexKeys = {}
uvLayerAppend = uvLayers.append
vertColorAppend = vertColor.append
vertexDictAppend = vertexDict.append
for vertex in vertices:
vColor = vertex.vColor
uvLayerAppend(list(map(uvTransform, vertex.uv)))
vertColorAppend(list(map(rangeByteToFloat, vColor)))
vertexID = getVertexId(vertex, mapVertexKeys, mergedVertList)
# old ID to new ID
vertexDictAppend(vertexID)
def importMesh(armature_ob, meshInfo):
# boneCount = len(xpsData.bones)
useSeams = xpsSettings.markSeams
# Create Mesh
meshFullName = meshInfo.name
print()
print('---*** Importing Mesh {} ***---'.format(meshFullName))
# Load UV Layers Count
uvLayerCount = meshInfo.uvCount
print('UV Layer Count: {}'.format(str(uvLayerCount)))
# Load Textures Count
textureCount = len(meshInfo.textures)
print('Texture Count: {}'.format(str(textureCount)))
mesh_ob = None
vertCount = len(meshInfo.vertices)
if vertCount >= 3:
vertexDict = []
mergedVertList = []
uvLayers = []
vertColors = []
makeVertexDict(vertexDict, mergedVertList, uvLayers, vertColors, meshInfo.vertices)
# new ID to riginal ID
vertexOrig = [[] for x in range(len(mergedVertList))]
for vertId, vert in enumerate(vertexDict):
vertexOrig[vert].append(vertId)
mergedVertices = {}
seamEdgesDict = {}
facesData = []
for face in meshInfo.faces:
v1Old = face[0]
v2Old = face[1]
v3Old = face[2]
v1New = vertexDict[v1Old]
v2New = vertexDict[v2Old]
v3New = vertexDict[v3Old]
oldFace = ((v1Old, v2Old, v3Old))
facesData.append((v1New, v2New, v3New))
if (useSeams):
if (mergedVertList[v1New].merged
or mergedVertList[v2New].merged
or mergedVertList[v3New].merged):
findMergedEdges(seamEdgesDict, vertexDict, mergedVertList, mergedVertices, oldFace)
# merge Vertices of same coord and normal?
mergeByNormal = True
if mergeByNormal:
vertices = mergedVertList
facesList = facesData
else:
vertices = meshInfo.vertices
facesList = meshInfo.faces
# Create Mesh
mesh_ob = makeMesh(meshFullName)
mesh_da = mesh_ob.data
coords = []
normals = []
# vrtxList = []
# nbVrtx = []
for vertex in vertices:
unitnormal = Vector(vertex.norm).normalized()
coords.append(coordTransform(vertex.co))
normals.append(coordTransform(unitnormal))
# vertColors.append(vertex.vColor)
# uvLayers.append(uvTransformLayers(vertex.uv))
# Create Faces
faces = list(faceTransformList(facesList))
mesh_da.from_pydata(coords, [], faces)
mesh_da.polygons.foreach_set(
"use_smooth", [True] * len(mesh_da.polygons))
# speedup!!!!
if xpsSettings.markSeams:
markSeams(mesh_da, seamEdgesDict)
# Make UVLayers
origFaces = faceTransformList(meshInfo.faces)
makeUvs(mesh_da, origFaces, uvLayers, vertColors)
if (xpsData.header):
flags = xpsData.header.flags
else:
flags = read_bin_xps.flagsDefault()
# Make Material
material_creator.makeMaterial(xpsSettings, rootDir, mesh_da, meshInfo, flags)
if armature_ob:
setArmatureModifier(armature_ob, mesh_ob)
setParent(armature_ob, mesh_ob)
makeVertexGroups(mesh_ob, vertices)
# makeBoneGroups
if armature_ob:
makeBoneGroups(armature_ob, mesh_ob)
# import custom normals
verts_nor = xpsSettings.importNormals
use_edges = True
# unique_smooth_groups = True
if verts_nor:
mesh_da.create_normals_split()
meshCorrected = mesh_da.validate(clean_customdata=False) # *Very* important to not remove nors!
mesh_da.update(calc_edges=use_edges)
mesh_da.normals_split_custom_set_from_vertices(normals)
mesh_da.use_auto_smooth = True
else:
meshCorrected = mesh_da.validate()
print("Geometry Corrected:", meshCorrected)
return mesh_ob
def markSeams(mesh_da, seamEdgesDict):
# use Dict to speedup search
edge_keys = {val: index for index, val in enumerate(mesh_da.edge_keys)}
# mesh_da.show_edge_seams = True
for vert1, list in seamEdgesDict.items():
for vert2 in list:
edgeIdx = None
if vert1 < vert2:
edgeIdx = edge_keys[(vert1, vert2)]
elif vert2 < vert1:
edgeIdx = edge_keys[(vert2, vert1)]
if edgeIdx:
mesh_da.edges[edgeIdx].use_seam = True
def findMergedEdges(seamEdgesDict, vertexDict, mergedVertList, mergedVertices, oldFace):
findMergedVert(seamEdgesDict, vertexDict, mergedVertList, mergedVertices, oldFace, oldFace[0])
findMergedVert(seamEdgesDict, vertexDict, mergedVertList, mergedVertices, oldFace, oldFace[1])
findMergedVert(seamEdgesDict, vertexDict, mergedVertList, mergedVertices, oldFace, oldFace[2])
def findMergedVert(seamEdgesDict, vertexDict, mergedVertList, mergedVertices, oldFace, mergedVert):
v1Old = oldFace[0]
v2Old = oldFace[1]
v3Old = oldFace[2]
# v1New = vertexDict[v1Old]
# v2New = vertexDict[v2Old]
# v3New = vertexDict[v3Old]
vertX = vertexDict[mergedVert]
if (mergedVertList[vertX].merged):
# List Merged vertices original Create
if (mergedVertices.get(vertX) is None):
mergedVertices[vertX] = []
# List Merged vertices original Loop
for facesList in mergedVertices[vertX]:
# Check if original vertices merge
i = 0
matchV1 = False
while not matchV1 and i < 3:
if ((vertX == vertexDict[facesList[i]]) and mergedVert != facesList[i]):
if (mergedVert != v1Old):
checkEdgePairForSeam(i, seamEdgesDict, vertexDict, vertX, v1Old, facesList)
if (mergedVert != v2Old):
checkEdgePairForSeam(i, seamEdgesDict, vertexDict, vertX, v2Old, facesList)
if (mergedVert != v3Old):
checkEdgePairForSeam(i, seamEdgesDict, vertexDict, vertX, v3Old, facesList)
matchV1 = True
i = i + 1
# List Merged vertices original Append
mergedVertices[vertX].append((v1Old, v2Old, v3Old))
def checkEdgePairForSeam(i, seamEdgesDict, vertexDict, mergedVert, vert, facesList):
if (i != 0):
makeSeamEdgeDict(0, seamEdgesDict, vertexDict, mergedVert, vert, facesList)
if (i != 1):
makeSeamEdgeDict(1, seamEdgesDict, vertexDict, mergedVert, vert, facesList)
if (i != 2):
makeSeamEdgeDict(2, seamEdgesDict, vertexDict, mergedVert, vert, facesList)
def makeSeamEdgeDict(i, seamEdgesDict, vertexDict, mergedVert, vert, facesList):
if (vertexDict[vert] == vertexDict[facesList[i]]):
if (seamEdgesDict.get(mergedVert) is None):
seamEdgesDict[mergedVert] = []
seamEdgesDict[mergedVert].append(vertexDict[vert])
def setArmatureModifier(armature_ob, mesh_ob):
mod = mesh_ob.modifiers.new(type="ARMATURE", name="Armature")
mod.use_vertex_groups = True
mod.object = armature_ob
def setParent(armature_ob, mesh_ob):
mesh_ob.parent = armature_ob
def makeVertexGroups(mesh_ob, vertices):
"""Make vertex groups and assign weights."""
# blender limits vertexGroupNames to 63 chars
# armatures = [mesh_ob.find_armature()]
armatures = mesh_ob.find_armature()
for vertex in vertices:
assignVertexGroup(vertex, armatures, mesh_ob)
def assignVertexGroup(vert, armature, mesh_ob):
for i in range(len(vert.boneWeights)):
vertBoneWeight = vert.boneWeights[i]
boneIdx = vertBoneWeight.id
vertexWeight = vertBoneWeight.weight
if vertexWeight != 0:
# use original index to get current bone name in blender
boneName = getBoneName(boneIdx)
if boneName:
vertGroup = mesh_ob.vertex_groups.get(boneName)
if not vertGroup:
vertGroup = mesh_ob.vertex_groups.new(name=boneName)
vertGroup.add([vert.id], vertexWeight, 'REPLACE')
def makeBoneGroups(armature_ob, mesh_ob):
# Use current theme for selecte and active bone colors
# current_theme = C.user_preferences.themes.items()[0][0]
# theme = C.user_preferences.themes[current_theme]
# random bone surface color by mesh
color1 = material_creator.randomColor()
color2 = material_creator.randomColor()
color3 = material_creator.randomColor()
bone_pose_surface_color = (color1)
bone_pose_color = (color2)
bone_pose_active_color = (color3)
boneGroup = armature_ob.pose.bone_groups.new(name=mesh_ob.name)
boneGroup.color_set = 'CUSTOM'
boneGroup.colors.normal = bone_pose_surface_color
boneGroup.colors.select = bone_pose_color
boneGroup.colors.active = bone_pose_active_color
vertexGroups = mesh_ob.vertex_groups.keys()
poseBones = armature_ob.pose.bones
for boneName in vertexGroups:
poseBones[boneName].bone_group = boneGroup
if __name__ == "__main__":
readfilename = r'C:\XPS Tutorial\Yaiba MOMIJIII\momi3.mesh.mesh'
uvDisplX = 0
uvDisplY = 0
impDefPose = True
joinMeshRips = True
joinMeshParts = True
vColors = True
connectBones = True
autoIk = True
importNormals = True
xpsSettings = xps_types.XpsImportSettings(
readfilename, uvDisplX, uvDisplY, impDefPose, joinMeshRips,
markSeams, vColors,
joinMeshParts, connectBones, autoIk, importNormals)
getInputFilename(xpsSettings)