blob: 68d7f1245ef13d62f10b9852e92a6b6873a622d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import struct
names = {}
names['PATH'] = '/Maps/forest/pathdata.bin'
names['SCN0'] = '/Maps/forest/mainscene.bin'
names['3D00'] = '/Maps/forest/base.brres'
header = struct.pack('>4sI', b'MSet', len(names))
entrydata = b''
stringtable = b''
currentoffset = 8 + (8 * len(names))
for key,path in names.items():
entrydata += struct.pack('>4sI', key.encode('Shift-JIS'), currentoffset)
encpath = path.encode('Shift-JIS')
stringtable += encpath
stringtable += b'\0'
currentoffset += len(encpath) + 1
open('SMGoldwood.fileset', 'wb').write(header + entrydata + stringtable)
|