http://www.classicdosgames.com/files/ga ... jason1.zip
storm1.ssp seems to be an archive of its data files, trying to figure out if it's possible to extract the midi music for the game
Poll & Discussion: We wish the site to continue (Y/N)
Request: Jason Storm in Space Chase
- aluigi
- VVIP member

- Posts: 1916
- Joined: Thu Dec 08, 2005 12:26 pm
- Location: www.ZENHAX.com
- Has thanked: 4 times
- Been thanked: 654 times
- Contact:
Re: Request: Jason Storm in Space Chase
the midi files or pseudo-midi files are contained in the other ss* files.
anyway for the others interested in the SSP file the following is the quickbms script:
anyway for the others interested in the SSP file the following is the quickbms script:
Code: Select all
# Jason Storm in Space Chase (*.SSP)
get FILES short
for i = 0 < FILES
get SIZE long
putarray 0 i SIZE
next i
getdstring DUMMY 0x80
for i = 0 < FILES
get NAME string
putarray 1 i NAME
strlen NAMESZ NAME
do
get TMP byte
while TMP == 0
savepos TMP
math TMP -= 1
goto TMP
next i
get OFFSET asize
math FILES -= 1
for i = FILES >= 0
getarray SIZE 0 i
getarray NAME 1 i
math OFFSET -= SIZE
log NAME OFFSET SIZE
math i -= 1
next