diff --git a/NinjaModel.py b/NinjaModel.py index b1a1c56..15e72af 100644 --- a/NinjaModel.py +++ b/NinjaModel.py @@ -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