save
This commit is contained in:
parent
1e37f43a08
commit
ae96fe216b
84
NinjaBone.py
84
NinjaBone.py
@ -25,17 +25,13 @@
|
|||||||
|
|
||||||
class NinjaBone: # {
|
class NinjaBone: # {
|
||||||
|
|
||||||
def __init__(self, flag): # {
|
def __init__(self, flag):
|
||||||
|
|
||||||
self.flag = flag
|
self.flag = flag
|
||||||
self.localMatrix = self.identity()
|
self.localMatrix = self.identity()
|
||||||
self.worldMatrix = self.identity()
|
self.worldMatrix = self.identity()
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# }
|
def indentity(self):
|
||||||
|
|
||||||
def indentity(self): # {
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
[ 1, 0, 0, 0 ],
|
[ 1, 0, 0, 0 ],
|
||||||
[ 0, 1, 0, 0 ],
|
[ 0, 1, 0, 0 ],
|
||||||
@ -43,30 +39,90 @@ class NinjaBone: # {
|
|||||||
[ 0, 0, 0, 1 ]
|
[ 0, 0, 0, 1 ]
|
||||||
]
|
]
|
||||||
|
|
||||||
# }
|
|
||||||
|
|
||||||
def multiply(self, a, b):
|
def multiply(self, a, b):
|
||||||
|
tmp = self.identity()
|
||||||
return None
|
for i in range(4):
|
||||||
|
for j in range(4):
|
||||||
|
t = 0.0
|
||||||
|
for k in range(4):
|
||||||
|
t = t + (a[i][k] * b[k][j])
|
||||||
|
tmp[i][j] = t
|
||||||
|
return tmp
|
||||||
|
|
||||||
def multiplyLocal(self, factor):
|
def multiplyLocal(self, factor):
|
||||||
|
a = self.worldMatrix
|
||||||
|
b = factor
|
||||||
|
tmp = self.multiply(a, b)
|
||||||
|
self.worldMatrix = tmp
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def multiplyWorld(self, factor):
|
def multiplyWorld(self, factor):
|
||||||
|
a = self.localMatrix
|
||||||
|
b = factor
|
||||||
|
tmp = self.multiply(a, b)
|
||||||
|
self.localMatrix = tmp
|
||||||
|
return None
|
||||||
|
|
||||||
|
def save(self):
|
||||||
|
for i in range(4):
|
||||||
|
for k in range(4):
|
||||||
|
self.worldMatrix[i][k] = self.localMatrix[i][k]
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def setScale(self, vec3):
|
def setScale(self, vec3):
|
||||||
|
tmp = self.identity()
|
||||||
|
tmp[0][0] = vec3[0]
|
||||||
|
tmp[1][1] = vec3[1]
|
||||||
|
tmp[2][2] = vec3[2]
|
||||||
|
self.multiplyLocal(tmp)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def setRotation(self, vec3, zxy_order):
|
def setRotation(self, vec3, zxy_order):
|
||||||
|
if zxy_order:
|
||||||
|
z = vec3[0]
|
||||||
|
x = vec3[1]
|
||||||
|
y = vec3[2]
|
||||||
|
else:
|
||||||
|
x = vec3[0]
|
||||||
|
y = vec3[1]
|
||||||
|
z = vec3[2]
|
||||||
|
|
||||||
|
# rotate x-axis
|
||||||
|
tmp = self.identity()
|
||||||
|
c = math.cos(x)
|
||||||
|
s = math.sin(x)
|
||||||
|
tmp[1][1] = c;
|
||||||
|
tmp[1][2] = s;
|
||||||
|
tmp[2][1] = -s;
|
||||||
|
tmp[2][2] = c;
|
||||||
|
self.multiplyLocal(tmp)
|
||||||
|
|
||||||
|
# rotate y-axis
|
||||||
|
tmp = self.identity()
|
||||||
|
c = math.cos(y)
|
||||||
|
s = math.sin(y)
|
||||||
|
tmp[0][0] = c;
|
||||||
|
tmp[0][2] = -s;
|
||||||
|
tmp[2][0] = s;
|
||||||
|
tmp[2][2] = c;
|
||||||
|
self.multiplyLocal(tmp)
|
||||||
|
|
||||||
|
# rotate z-axis
|
||||||
|
tmp = self.identity()
|
||||||
|
c = math.cos(z)
|
||||||
|
s = math.sin(z)
|
||||||
|
tmp[0][0] = c;
|
||||||
|
tmp[0][1] = s;
|
||||||
|
tmp[1][0] = -s;
|
||||||
|
tmp[1][1] = c;
|
||||||
|
self.multiplyLocal(tmp)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def setPosition(self, vec3):
|
def setPosition(self, vec3):
|
||||||
|
tmp = self.identity()
|
||||||
|
tmp[0][0] = vec3[0]
|
||||||
|
tmp[1][1] = vec3[1]
|
||||||
|
tmp[2][2] = vec3[2]
|
||||||
|
self.multiplyLocal(tmp)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# }
|
|
||||||
|
@ -131,10 +131,11 @@ class NinjaModel: # {
|
|||||||
self.bone.setScale(scl)
|
self.bone.setScale(scl)
|
||||||
|
|
||||||
if ( (flags & 0x02) == 0):
|
if ( (flags & 0x02) == 0):
|
||||||
self.bone.setScale(rot, flags & 0x20)
|
self.bone.setRotation(rot, flags & 0x20)
|
||||||
|
|
||||||
if ( (flags & 0x01) == 0):
|
if ( (flags & 0x01) == 0):
|
||||||
self.bone.setScale(pos)
|
self.bone.setPosition(pos)
|
||||||
|
self.bone.save()
|
||||||
|
|
||||||
if(model_ofs) {
|
if(model_ofs) {
|
||||||
self.file.seek(model_ofs + self.pof, 0)
|
self.file.seek(model_ofs + self.pof, 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user