b074d3c0d4
This reverts commit 79889722ac
18 lines
No EOL
678 B
Python
18 lines
No EOL
678 B
Python
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)) |