Disney's Animated Storybook Mulan .POD

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
lemurboy12
Posts: 265
Joined: Fri Oct 17, 2014 2:57 am

Disney's Animated Storybook Mulan .POD

Post by lemurboy12 »

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

Re: Disney's Animated Storybook Mulan .POD

Post by aluigi »

http://aluigi.org/bms/disney_pod.bms

The script automatically extracts also all the POD files contained in the main POD archive, the files contained in them are those number-only files with the "CEL" magic at their beginning.
rabatini
Posts: 179
Joined: Tue Jan 18, 2022 12:21 am

Re: Disney's Animated Storybook Mulan .POD

Post by rabatini »

Psx .POD is kind different storage.

here the Script if you want to add to the database.

Code: Select all

# Disney's Animated Storybook Mulan .POD
#PSX VERSION

GET ARQUIVO BASENAME
IDString "RPOD"
GET NULO LONG
GET OFFSET LONG
GET NULO LONG
get NULO LONG
GET NULO LONG
GET ENTRIES LONG
GET SIZE LONG
log ARQUIVO offset size #HEADER FILE

For RIP = 1 to ENTRIES

GetDString NAME 0x10
GET NULO LONG
GET NULO LONG
GET SIZE LONG
GET OFFSET LONG

log name offset size

Next RIP

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

Re: Disney's Animated Storybook Mulan .POD

Post by aluigi »

Can you upload a sample RPOD archive?
Just for my curiosity.
rabatini
Posts: 179
Joined: Tue Jan 18, 2022 12:21 am

Re: Disney's Animated Storybook Mulan .POD

Post by rabatini »

aluigi wrote:Can you upload a sample RPOD archive?
Just for my curiosity.

Yes sure! tutti buona gente!!

Just to let you know, i am newbie in bms script, so my code is not the prime. :lol:
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Disney's Animated Storybook Mulan .POD

Post by aluigi »

Code: Select all

idstring "RPOD"
get DUMMY long  # 1
getdstring ZERO 16
get FILES long
get DATA_OFF long
for i = 0 < FILES
    getdstring NAME 0x18
    get SIZE long
    get OFFSET long
    log NAME OFFSET SIZE
next i