-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgear_bigfile.bms
More file actions
32 lines (31 loc) · 787 Bytes
/
gear_bigfile.bms
File metadata and controls
32 lines (31 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# [ GEAR BigFile ] - *.bf/*.big/*.bin
# ---
# Rocky Balboa (PlayStation Portable)
# Shaun White Snowboarding (PlayStation Portable) - SOUNDSTREAMS_PSP.BIN
# Shaun White Snowboarding: Road Trip (Wii) - SoundStreams_WII.bin
idstring "[ GEAR BigFile ]"
get gear_01 long
get gear_02 long
get files long
get gear_04 long
math gear_off_01 = 0x20
goto gear_off_01
for i = 0 < files
get entry_01 longlong
putarray 0 i entry_01
next i
for i = 0 < files
get entry_02 long
putarray 1 i entry_02
next i
for i = 0 < files
get entry_03 long
putarray 2 i entry_03
next i
for i = 0 < files
getarray file_offset 0 i
getarray file_size 1 i
getarray hardcoded_name_hash 2 i
string temp_name p "%u." hardcoded_name_hash
log temp_name file_offset file_size
next i