From 96842ea0459dfe90ddc1e5c4ff76187175ad06d3 Mon Sep 17 00:00:00 2001 From: Benjamin Collins Date: Tue, 11 Aug 2020 11:15:07 +0900 Subject: [PATCH] chunk nodes --- NinjaModel.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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