Page 1 of 1

Summer Athletics 2009

Posted: Mon Jul 27, 2009 6:39 pm
by Savage
Looks xor, any help? 8D
Here a sample/attachment (7mb's):
http://www.zshare.net/download/63238946ae12ce53/
Thanks!!

What i know for this it's:
Movies Theora
Speeches/Musics ogg
SFx's raw pcm
Graphics DDS

I'm not 100% sure... :keke:

Re: Summer Athletics 2009

Posted: Thu Jul 30, 2009 6:25 pm
by aluigi
the files are nameless and some of them are compressed with an unknown compression algorithm (not zlib,inflate,lzss,lzo,explode).

so the following bms script is totally useless but at least can give an idea of the format:

Code: Select all

comtype ??? # unknown

idstring "\xef\xbe\xad\xde"
get FILES long
get BASE_OFFSET long
get DUMMY long
get ZERO long

for i = 0 < FILES
    get DUMMY long
    get DUMMY long
    get OFFSET long
    get ZERO long   # 64bit?
    get ZSIZE long
    get ZERO long   # 64bit?
    get SIZE long
    get ZERO long   # 64bit?
    get DUMMY long
    get ZERO long   # 64bit?

    if SIZE == ZSIZE
        log "" OFFSET SIZE
    else
        clog "" OFFSET ZSIZE SIZE
    endif
next i

Re: Summer Athletics 2009

Posted: Thu Jul 30, 2009 9:11 pm
by Savage
Nice!1 thanks for the info, this it's the 1rst step... :keke: