Cruise for a Corpse

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
AntonZab
Posts: 461
Joined: Thu Oct 01, 2015 5:03 pm

Cruise for a Corpse

Post by AntonZab »

aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Cruise for a Corpse

Post by aluigi »

There are no references online and on ScummVM to CR256.RNC, where you got it?
That file is compressed but doesn't seem the RNC compression.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Cruise for a Corpse

Post by aluigi »

Anyway the format is described here:
https://github.com/scummvm/scummvm/blob ... volume.cpp

But the delphine compression crashes for unknown reasons:

Code: Select all

comtype SCUMMVM9
endian big
get FILES short
get ENTRY_SIZE short
xmath NAMESZ "ENTRY_SIZE - (4 + 4 + 4 + 4)"
for i = 0 < FILES
    getdstring NAME NAMESZ
    get OFFSET long
    get ZSIZE long
    get SIZE long
    get DUMMY long
    if SIZE == ZSIZE
        log NAME OFFSET SIZE
    else
        clog NAME OFFSET ZSIZE SIZE
    endif
next i
AntonZab
Posts: 461
Joined: Thu Oct 01, 2015 5:03 pm

Re: Cruise for a Corpse

Post by AntonZab »

All files in to game
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Cruise for a Corpse

Post by aluigi »

What platform? PC, Amiga?
AntonZab
Posts: 461
Joined: Thu Oct 01, 2015 5:03 pm

Re: Cruise for a Corpse

Post by AntonZab »

PC. Only PC
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Cruise for a Corpse

Post by aluigi »

Ok, I will check both the crashing compression and that RNC file when I will work on the next quickbms version.
AntonZab
Posts: 461
Joined: Thu Oct 01, 2015 5:03 pm

Re: Cruise for a Corpse

Post by AntonZab »

Ok, Thanks