missing triangles
This commit is contained in:
parent
c1ded2ade8
commit
6ed590b920
@ -40,6 +40,7 @@ class NinjaModel:
|
||||
def __init__(self, model_name, tex_name = ''):
|
||||
|
||||
self.debug = True
|
||||
self.hasMesh = []
|
||||
|
||||
# File Information
|
||||
self.model_name = model_name
|
||||
@ -102,6 +103,7 @@ class NinjaModel:
|
||||
self.readNmdm()
|
||||
self.file.seek(pos, 0)
|
||||
|
||||
print(self.hasMesh)
|
||||
self.file.close()
|
||||
return None
|
||||
|
||||
@ -170,10 +172,12 @@ class NinjaModel:
|
||||
parentBone.add(self.bone)
|
||||
|
||||
if model_ofs:
|
||||
self.hasMesh.append(self.bone.index)
|
||||
if self.debug:
|
||||
print("Reading Mesh @ 0x%08x" % self.file.tell())
|
||||
self.file.seek(model_ofs + self.pof, 0)
|
||||
self.readModel()
|
||||
if self.bone.index in [ 22, 23, 25]:
|
||||
self.readModel()
|
||||
|
||||
if child_ofs:
|
||||
self.file.seek(child_ofs + self.pof, 0)
|
||||
@ -269,8 +273,13 @@ class NinjaModel:
|
||||
if chunk_head == 255:
|
||||
if self.debug:
|
||||
print("End Chunk Found")
|
||||
break
|
||||
elif chunk_head == 0 or chunk_head == 9:
|
||||
break
|
||||
elif chunk_head == 9:
|
||||
if self.debug:
|
||||
print("Null Chunk Found")
|
||||
print("Invalid header found @ 0x%08x" % self.file.tell())
|
||||
sys.exit()
|
||||
elif chunk_head == 0:
|
||||
if self.debug:
|
||||
print("Null Chunk Found")
|
||||
continue
|
||||
@ -349,10 +358,14 @@ class NinjaModel:
|
||||
if self.debug:
|
||||
print("Strip Chunk Found @ 0x%08x" % self.file.tell())
|
||||
|
||||
bytes = self.file.read(4)
|
||||
h = struct.unpack('HH', bytes)
|
||||
bytes = self.file.read(2)
|
||||
h = struct.unpack('H', bytes)
|
||||
chunk_len = h[0] * 2
|
||||
chunk_body = h[1]
|
||||
snap_to = self.file.tell() + chunk_len
|
||||
|
||||
bytes = self.file.read(2)
|
||||
h = struct.unpack('H', bytes)
|
||||
chunk_body = h[0]
|
||||
|
||||
if self.debug:
|
||||
print("Strip Length (bytes): 0x%04x" % chunk_len)
|
||||
@ -389,6 +402,10 @@ class NinjaModel:
|
||||
|
||||
bytes = self.file.read(2)
|
||||
strip_len = struct.unpack('h', bytes)[0]
|
||||
|
||||
if self.debug:
|
||||
print("String length: %d" % strip_len)
|
||||
|
||||
clockwise = strip_len < 0
|
||||
strip_len = abs(strip_len)
|
||||
strip = []
|
||||
@ -454,8 +471,10 @@ class NinjaModel:
|
||||
|
||||
# }
|
||||
|
||||
self.file.seek(snap_to, 0)
|
||||
print("Actual End: 0x%08x" % self.file.tell())
|
||||
self.strip_count = self.strip_count + 1
|
||||
|
||||
else:
|
||||
print("Unknown File Position: 0x%08x" % self.file.tell())
|
||||
|
||||
|
28
missing.txt
Normal file
28
missing.txt
Normal file
@ -0,0 +1,28 @@
|
||||
EVIL Missing Strips
|
||||
|
||||
[x] 0
|
||||
[x] 1
|
||||
[x] 3
|
||||
[x] 4
|
||||
[ ] 6
|
||||
[ ] 7
|
||||
[ ] 8
|
||||
[ ] 10
|
||||
[ ] 11
|
||||
[ ] 12
|
||||
[ ] 14
|
||||
[ ] 15
|
||||
[ ] 17
|
||||
[ ] 18
|
||||
[ ] 20
|
||||
[ ] 21
|
||||
[ ] 22
|
||||
[ ] 23
|
||||
[ ] 25
|
||||
[ ] 27
|
||||
[ ] 29
|
||||
[ ] 30
|
||||
[ ] 31
|
||||
[ ] 33
|
||||
[ ] 35
|
||||
[ ] 37
|
Loading…
Reference in New Issue
Block a user