chunk nodes
This commit is contained in:
parent
97dad90ee5
commit
96842ea045
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user