Revert "Updated parse_save.py to use PascalString and PrefixedArray"

This reverts commit 79889722ac
This commit is contained in:
Earthnuker 2017-10-08 01:09:09 +00:00
parent 41b37b2037
commit b074d3c0d4
1 changed files with 18 additions and 20 deletions

View File

@ -1,20 +1,18 @@
from construct import *
from pprint import pprint
ScrapSaveVar = Struct(
'name'/PascalString(Int32ul,encoding='utf-8'),
'data'/PascalString(Int32ul,encoding='utf-8'),
)
ScrapSave = 'ScarpSaveGame'/Struct(
'title'/PascalString(Int32ul,encoding='utf-8'),
'id'/PascalString(Int32ul,encoding='utf-8'),
'data'/PrefixedArray(Int32ul,ScrapSaveVar),
Terminated
)
with open("Save0.sav", 'rb') as sav_file:
save = ScrapSave.parse_stream(sav_file)
print("ID:",save.id)
print("Title:",save.title)
for var in save.data:
print(" - {}: {}".format(var.name,var.data))
#for block in save.data:
# print("{}: {}".format(block.v_name, block.v_data))
from construct import *
from pprint import pprint
ScrapSaveVar = Struct(
'name'/PascalString(Int32ul,encoding='utf-8'),
'data'/PascalString(Int32ul,encoding='utf-8'),
)
ScrapSave = 'ScarpSaveGame'/Struct(
'title'/PascalString(Int32ul,encoding='utf-8'),
'id'/PascalString(Int32ul,encoding='utf-8'),
'data'/PrefixedArray(Int32ul,ScrapSaveVar),
Terminated
)
with open("Save0.sav", 'rb') as sav_file:
save = ScrapSave.parse_stream(sav_file)
print("ID:",save.id)
print("Title:",save.title)
for var in save.data:
print(" - {}: {}".format(var.name,var.data))