texture parser
This commit is contained in:
parent
6ed590b920
commit
96964bd1ea
@ -96,7 +96,7 @@ class NinjaMaterial:
|
|||||||
file.write(struct.pack('HHHHHH', 0, 0, 0, 0, 1, 0))
|
file.write(struct.pack('HHHHHH', 0, 0, 0, 0, 1, 0))
|
||||||
|
|
||||||
# 0x30 Flags
|
# 0x30 Flags
|
||||||
file.write(struct.pack('HHHHHHf', 0, 0, 0, 0, 1, 0, 0.5))
|
file.write(struct.pack('HHHHHHf', 0, 0, 0, 0, 0, 0, 0.5))
|
||||||
|
|
||||||
# 0x40 Diffuse
|
# 0x40 Diffuse
|
||||||
file.write(struct.pack('f', self.diffuse['r']))
|
file.write(struct.pack('f', self.diffuse['r']))
|
||||||
|
@ -100,7 +100,7 @@ class NinjaModel:
|
|||||||
length = struct.unpack('I', bytes)[0]
|
length = struct.unpack('I', bytes)[0]
|
||||||
pos = self.file.tell() + length
|
pos = self.file.tell() + length
|
||||||
self.pof = self.file.tell()
|
self.pof = self.file.tell()
|
||||||
self.readNmdm()
|
#self.readNmdm()
|
||||||
self.file.seek(pos, 0)
|
self.file.seek(pos, 0)
|
||||||
|
|
||||||
print(self.hasMesh)
|
print(self.hasMesh)
|
||||||
@ -176,8 +176,7 @@ class NinjaModel:
|
|||||||
if self.debug:
|
if self.debug:
|
||||||
print("Reading Mesh @ 0x%08x" % self.file.tell())
|
print("Reading Mesh @ 0x%08x" % self.file.tell())
|
||||||
self.file.seek(model_ofs + self.pof, 0)
|
self.file.seek(model_ofs + self.pof, 0)
|
||||||
if self.bone.index in [ 22, 23, 25]:
|
self.readModel()
|
||||||
self.readModel()
|
|
||||||
|
|
||||||
if child_ofs:
|
if child_ofs:
|
||||||
self.file.seek(child_ofs + self.pof, 0)
|
self.file.seek(child_ofs + self.pof, 0)
|
||||||
@ -404,7 +403,7 @@ class NinjaModel:
|
|||||||
strip_len = struct.unpack('h', bytes)[0]
|
strip_len = struct.unpack('h', bytes)[0]
|
||||||
|
|
||||||
if self.debug:
|
if self.debug:
|
||||||
print("String length: %d" % strip_len)
|
print("Strip length: %d" % strip_len)
|
||||||
|
|
||||||
clockwise = strip_len < 0
|
clockwise = strip_len < 0
|
||||||
strip_len = abs(strip_len)
|
strip_len = abs(strip_len)
|
||||||
@ -442,6 +441,8 @@ class NinjaModel:
|
|||||||
|
|
||||||
# }
|
# }
|
||||||
|
|
||||||
|
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)):
|
if ((clockwise and not (k % 2)) or ( not clockwise and k % 2)):
|
||||||
@ -457,9 +458,9 @@ class NinjaModel:
|
|||||||
bi = b['index']
|
bi = b['index']
|
||||||
ci = c['index']
|
ci = c['index']
|
||||||
|
|
||||||
va = self.vertex_list[a['index']]
|
va = self.vertex_list[ai]
|
||||||
vb = self.vertex_list[a['index']]
|
vb = self.vertex_list[bi]
|
||||||
vc = self.vertex_list[a['index']]
|
vc = self.vertex_list[ci]
|
||||||
|
|
||||||
face = NinjaFace()
|
face = NinjaFace()
|
||||||
face.setMatIndex(mat_index)
|
face.setMatIndex(mat_index)
|
||||||
@ -596,6 +597,31 @@ class NinjaModel:
|
|||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
def exportObj(self):
|
||||||
|
|
||||||
|
pre, ext = os.path.splitext(self.model_name)
|
||||||
|
pre = pre.replace('/', '_')
|
||||||
|
f = open('output/' + pre + '.OBJ', 'w')
|
||||||
|
|
||||||
|
for vert in self.vertex_list:
|
||||||
|
f.write('v')
|
||||||
|
f.write(' %.03f' % vert.pos['x'])
|
||||||
|
f.write(' %.03f' % vert.pos['y'])
|
||||||
|
f.write(' %.03f' % vert.pos['z'])
|
||||||
|
f.write('\r\n')
|
||||||
|
f.write('\r\n')
|
||||||
|
|
||||||
|
for face in self.face_list:
|
||||||
|
f.write('f')
|
||||||
|
f.write(' %d' % (face.index[0] + 1))
|
||||||
|
f.write(' %d' % (face.index[1] + 1))
|
||||||
|
f.write(' %d' % (face.index[2] + 1))
|
||||||
|
f.write('\r\n')
|
||||||
|
f.write('\r\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
def export(self):
|
def export(self):
|
||||||
pre, ext = os.path.splitext(self.model_name)
|
pre, ext = os.path.splitext(self.model_name)
|
||||||
pre = pre.replace('/', '_')
|
pre = pre.replace('/', '_')
|
||||||
|
10
PowerVR.py
10
PowerVR.py
@ -120,7 +120,7 @@ class PowerVR: # {
|
|||||||
data = f.read()
|
data = f.read()
|
||||||
f.close()
|
f.close()
|
||||||
tex.setData(data)
|
tex.setData(data)
|
||||||
os.remove(imgName)
|
#os.remove(imgName)
|
||||||
|
|
||||||
|
|
||||||
self.file.close()
|
self.file.close()
|
||||||
@ -369,10 +369,10 @@ class PowerVR: # {
|
|||||||
rgba = self.ARGB_4444(color)
|
rgba = self.ARGB_4444(color)
|
||||||
|
|
||||||
if self.width > self.height:
|
if self.width > self.height:
|
||||||
self.bitmap[y][(n*size) + x*4 + 0] = rgba[0]
|
self.bitmap[y][(n*size*4) + x*4 + 0] = rgba[0]
|
||||||
self.bitmap[y][(n*size) + x*4 + 1] = rgba[1]
|
self.bitmap[y][(n*size*4) + x*4 + 1] = rgba[1]
|
||||||
self.bitmap[y][(n*size) + x*4 + 2] = rgba[2]
|
self.bitmap[y][(n*size*4) + x*4 + 2] = rgba[2]
|
||||||
self.bitmap[y][(n*size) + x*4 + 3] = rgba[3]
|
self.bitmap[y][(n*size*4) + x*4 + 3] = rgba[3]
|
||||||
else:
|
else:
|
||||||
self.bitmap[y + (n*size)][x*4 + 0] = rgba[0]
|
self.bitmap[y + (n*size)][x*4 + 0] = rgba[0]
|
||||||
self.bitmap[y + (n*size)][x*4 + 1] = rgba[1]
|
self.bitmap[y + (n*size)][x*4 + 1] = rgba[1]
|
||||||
|
@ -128,6 +128,7 @@ texture_file = 'OBJ/EVIL.PVM'
|
|||||||
nj = NinjaModel(model_file, texture_file)
|
nj = NinjaModel(model_file, texture_file)
|
||||||
nj.parse()
|
nj.parse()
|
||||||
nj.export()
|
nj.export()
|
||||||
|
nj.exportObj()
|
||||||
|
|
||||||
"""
|
"""
|
||||||
model_file = 'OBJ/IKAL.NJ'
|
model_file = 'OBJ/IKAL.NJ'
|
||||||
|
22
missing.txt
22
missing.txt
@ -4,17 +4,17 @@ EVIL Missing Strips
|
|||||||
[x] 1
|
[x] 1
|
||||||
[x] 3
|
[x] 3
|
||||||
[x] 4
|
[x] 4
|
||||||
[ ] 6
|
[x] 6
|
||||||
[ ] 7
|
[x] 7
|
||||||
[ ] 8
|
[x] 8
|
||||||
[ ] 10
|
[x] 10
|
||||||
[ ] 11
|
[x] 11
|
||||||
[ ] 12
|
[x] 12
|
||||||
[ ] 14
|
[x] 14
|
||||||
[ ] 15
|
[x] 15
|
||||||
[ ] 17
|
[x] 17
|
||||||
[ ] 18
|
[x] 18
|
||||||
[ ] 20
|
[x] 20
|
||||||
[ ] 21
|
[ ] 21
|
||||||
[ ] 22
|
[ ] 22
|
||||||
[ ] 23
|
[ ] 23
|
||||||
|
Loading…
Reference in New Issue
Block a user