Just Dance 2014 (Wii) .tga.ckd/png.ckd
-
- Posts: 14
- Joined: Sat Jun 10, 2017 9:22 pm
Just Dance 2014 (Wii) .tga.ckd/png.ckd
Hello, recently i've been extracting Just Dance games for Wii and i found out some (probably dds?) textures and i couldn't open them. They seem to have their header reversed so i don't know how to open them. Could anyone help me?
-
- Posts: 14
- Joined: Sat Jun 10, 2017 9:22 pm
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Just Dance 2014 (Wii) .tga.ckd/png.ckd
Not useful but at least it's a starting point (the stored dds is in big endian):
Please note that this is not my field so wait the replies of other users.
Code: Select all
endian big
get DUMMY long
idstring "TEX\0"
get OFFSET long
get SIZE asize
math SIZE - OFFSET
encryption reverselong ""
get NAME basename # .tga
get NAME basename #
string NAME + ".dds"
log NAME OFFSET SIZE
-
- Posts: 14
- Joined: Sat Jun 10, 2017 9:22 pm
Re: Just Dance 2014 (Wii) .tga.ckd/png.ckd
aluigi wrote:Not useful but at least it's a starting point (the stored dds is in big endian):Please note that this is not my field so wait the replies of other users.Code: Select all
endian big
get DUMMY long
idstring "TEX\0"
get OFFSET long
get SIZE asize
math SIZE - OFFSET
encryption reverselong ""
get NAME basename # .tga
get NAME basename #
string NAME + ".dds"
log NAME OFFSET SIZE
Is there anything for stored dds in Little Endian? This is what happens if i open the big endian file in GetPaint.Net...
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Just Dance 2014 (Wii) .tga.ckd/png.ckd
The dds is stored as big endian so the script automatically swaps all the 32bit fields without knowing the format (just raw basic swapping).
If you don't want it then remove the 'encryption reverselong ""' line
If you don't want it then remove the 'encryption reverselong ""' line