quaternion

This commit is contained in:
Benjamin Collins 2020-08-24 00:18:21 +09:00
parent 96964bd1ea
commit 08b6b755cc
4 changed files with 46 additions and 16 deletions

View File

@ -100,7 +100,7 @@ class NinjaModel:
length = struct.unpack('I', bytes)[0]
pos = self.file.tell() + length
self.pof = self.file.tell()
#self.readNmdm()
self.readNmdm()
self.file.seek(pos, 0)
print(self.hasMesh)
@ -439,11 +439,7 @@ class NinjaModel:
'uv' : { 'u' : u, 'v' : v }
})
# }
print(strip)
for k in range(len(strip) - 2): #{
for k in range(len(strip) - 2):
if ((clockwise and not (k % 2)) or ( not clockwise and k % 2)):
a = strip[k + 2]

View File

@ -112,9 +112,19 @@ class NinjaMotion:
if 'rot' not in keyFrame.keys():
continue
mat4 = Mat4()
mat4.rotate(keyFrame['rot'])
keyFrame['quat'] = mat4.toQuat()
c1 = math.cos( keyFrame['rot'][0] / 2 );
c2 = math.cos( keyFrame['rot'][1] / 2 );
c3 = math.cos( keyFrame['rot'][2] / 2 );
s1 = math.sin( keyFrame['rot'][0] / 2 );
s2 = math.sin( keyFrame['rot'][1] / 2 );
s3 = math.sin( keyFrame['rot'][2] / 2 );
x = s1 * c2 * c3 + c1 * s2 * s3
y = c1 * s2 * c3 - s1 * c2 * s3
z = c1 * c2 * s3 + s1 * s2 * c3
w = c1 * c2 * c3 - s1 * s2 * s3
keyFrame['quat'] = [ x, y, z, w ]
return None

View File

@ -120,9 +120,8 @@ class PowerVR: # {
data = f.read()
f.close()
tex.setData(data)
#os.remove(imgName)
os.remove(imgName)
self.file.close()
return self.tex_list

View File

@ -97,7 +97,6 @@ nj.export()
## MODELS (OBJ) ##
########################################################
"""
model_file = 'OBJ/COCK_GPOT.NJ'
texture_file = 'OBJ/COCK_GPOT.PVM'
nj = NinjaModel(model_file, texture_file)
@ -121,22 +120,48 @@ texture_file = 'OBJ/COCK.PVM'
nj = NinjaModel(model_file, texture_file)
nj.parse()
nj.export()
"""
model_file = 'OBJ/EVIL.NJ'
texture_file = 'OBJ/EVIL.PVM'
nj = NinjaModel(model_file, texture_file)
nj.parse()
nj.export()
nj.exportObj()
"""
model_file = 'OBJ/FISH.NJ'
texture_file = 'OBJ/FISH.PVM'
nj = NinjaModel(model_file, texture_file)
nj.parse()
nj.export()
model_file = 'OBJ/GUN_JUNK.NJ'
texture_file = 'OBJ/GUN_JUNK.PVM'
nj = NinjaModel(model_file, texture_file)
nj.parse()
nj.export()
model_file = 'OBJ/GUN.NJ'
texture_file = 'OBJ/GUN.PVM'
nj = NinjaModel(model_file, texture_file)
nj.parse()
nj.export()
model_file = 'OBJ/HATO_GPOT.NJ'
texture_file = 'OBJ/HATO_GPOT.PVM'
nj = NinjaModel(model_file, texture_file)
nj.parse()
nj.export()
model_file = 'OBJ/HATO.NJ'
texture_file = 'OBJ/HATO.PVM'
nj = NinjaModel(model_file, texture_file)
nj.parse()
nj.export()
model_file = 'OBJ/IKAL.NJ'
texture_file = 'OBJ/IKAL.PVM'
nj = NinjaModel(model_file, texture_file)
nj.parse()
nj.export()
"""
########################################################