chunk nodes

This commit is contained in:
Benjamin Collins 2020-08-11 11:15:07 +09:00
parent 97dad90ee5
commit 96842ea045

View File

@ -219,6 +219,25 @@ class NinjaModel: # {
return None
def readChunkList(self):
print("---- Reading Chunk List ---")
print("Chunk Offset: 0x%08x" % self.file.tell())
while 1:
bytes = self.file.read(2)
c = struct.unpack('BB', bytes)
chunk_head = c[0]
chunk_flag = c[1]
if chunk_head == 255:
break
else:
print("Unknown Chunk Type %d" % chunk_head)
print("Unknown Chukn Flag %d" % chunk_flag)
break
break
return None