Infogrames *.DTA (Multiplatform)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
JackTheRipper
Posts: 51
Joined: Mon Jan 10, 2022 12:12 am

Infogrames *.DTA (Multiplatform)

Post by JackTheRipper »

Seen in Superman: Shadow of Apokolips, Micro Machines, and others.

PS2 Superman was No Volume Name
Gamecube Superman was Hello World

Sample: LxxSound.dta
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

Re: Infogrames *.DTA (Multiplatform)

Post by AlphaTwentyThree »

can you upload to a different service please? It's locked in my country.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Infogrames *.DTA (Multiplatform)

Post by aluigi »

Code: Select all

# Infogrames DTA

getdstring VOLUME_NAME 0x20
getdstring AUTHOR 0x10
getdstring DATE 0x30
get INFO_SIZE long
get FILES long
get ZERO long
get SOME_CRC long
getdstring ZERO 16

savepos BASE_OFF
math BASE_OFF + INFO_SIZE
math BASE_OFF x 0x800

for i = 0 < FILES
    get DUMMY short # 32
    get DUMMY short # 0x1234
    get SIZE long
    get SOME_CRC long
    get OFFSET long
    getdstring NAME 16
    math OFFSET * 0x800
    math OFFSET + BASE_OFF
    log NAME OFFSET SIZE
next i
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

Re: Infogrames *.DTA (Multiplatform)

Post by AlphaTwentyThree »

sorry, wrong thread