Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Textures, recreate headers, conversions, algorithms and parsing of image files
k33an
Posts: 39
Joined: Mon Apr 30, 2018 12:39 pm

Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by k33an »

Hello everyone,
Just Dance 2019 is coming out soon, but only for X360 and Wii, so I'm going to mod 2019 on PS3 combining Wii and X360 assets. To make routines fully playable I just need to know how to modify pictos (to show you upcoming moves) and menu assets.
I'm going to use X360 pictures because they are high quality. I'm kindly asking for someone to make script/converter from X360 pics to PS3 pics. Here are JD18 files, but Ubisoft hasn't changed their JD files system from 2014, so I think that 2019 will be structurally same.

Just Dance 2016 also has some exclusive routines for Wii version so it would be great if Wii files could also be converted to PS3 ones.
Files from all consoles are from same routine from JD2018.

And possibly .png to PS3 menu assets/pictos.

So in conlusion, I need to convert Wii and X360 menu assets and pictos, and .png files to PS3 pictos and menu assets.

Here are files: https://drive.google.com/open?id=1E8ymi ... UBnxLy-8RV
Thanks!
k33an
Posts: 39
Joined: Mon Apr 30, 2018 12:39 pm

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by k33an »

I found X360 noesis script. I previously had PS3 script, now I only need Wii.
I figured out how to make .tga.ckd file. I just exported image from other console as dds and pasted header from current and it works.
I tried to convert .png file to .dds and do same to convert it to .tga.ckd, but I always get distorted picture.
k33an
Posts: 39
Joined: Mon Apr 30, 2018 12:39 pm

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by k33an »

Bump
Can someone make noesis Wii converter?
GHFear
Posts: 290
Joined: Fri Mar 30, 2018 2:48 am

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by GHFear »

The file has every chunk of 4 bytes reversed. It is basically a DDS files that has every 4 bytes reversed. It's been through some NVidia Texture Tool processing.
If you reverse every 4 bytes, it should just be a common DDS file with a slightly different header.
No idea how you'd go about it tho.
Acewell
Posts: 706
Joined: Fri Aug 08, 2014 1:06 am

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by Acewell »

here is Noesis python script to open your "Just Dance 2018" Wii ckd samples. :)
*script updated Feb 16, 2019*
tex_JustDance2018_Wii_ckd.zip

this script will allow you to export the rgb and alpha layer data in 2 files,
you will have to combine them by hand in photoshop or something. :)

if you have other ckd scripts in there you may need to move them out temporarily
to avoid conflicts while you use this one because of the generic type check.
Last edited by Acewell on Sun Feb 17, 2019 2:36 am, edited 2 times in total.
k33an
Posts: 39
Joined: Mon Apr 30, 2018 12:39 pm

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by k33an »

Thank you so so much. I can't open this texture with PS3 script. Can you modify it open this?
GHFear
Posts: 290
Joined: Fri Mar 30, 2018 2:48 am

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by GHFear »

Do you have more of those that don't work for the PS3? I can get a picture out of it, but not sure if it's the right colors.
Acewell
Posts: 706
Joined: Fri Aug 08, 2014 1:06 am

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by Acewell »

k33an wrote:I can't open this texture with PS3 script. Can you modify it open this?

okay i updated the script here for rgba8888 :)
viewtopic.php?p=34540#p34540
k33an
Posts: 39
Joined: Mon Apr 30, 2018 12:39 pm

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by k33an »

I think that colours aren't right. Here are few samples that don't work with original script.
Acewell
Posts: 706
Joined: Fri Aug 08, 2014 1:06 am

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by Acewell »

okay updated again, see what you think about the colors too. :)
k33an
Posts: 39
Joined: Mon Apr 30, 2018 12:39 pm

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by k33an »

Files now load fine, but in some Wii script files are exported completely white. On this picture there should be rows of characters, but exported it's completely blank.
Acewell
Posts: 706
Joined: Fri Aug 08, 2014 1:06 am

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by Acewell »

the rgb colors and alpha layer are 2 separate data buffers in the Wii ckd,
i can set the script up to convert both buffers and export them separately.
you will of course have to combine them by hand in Photoshop or something.
also i don't like how the Nintendo library python script changes the file names to "default".
i did not write that library so it is difficult for me to edit that script to make it work
how i want it. i will try to combine the 2 scripts at some point in the future though. :)
k33an
Posts: 39
Joined: Mon Apr 30, 2018 12:39 pm

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by k33an »

It's fine as long as I can have right texture.
Acewell
Posts: 706
Joined: Fri Aug 08, 2014 1:06 am

Re: Just Dance 2018 X360,PS3,Wii [*.png.ckd, *.tga.ckd]

Post by Acewell »

script updated here, give it a try, i will improve it more later. :)
viewtopic.php?p=43370#p43370

you can export each ckd file in 2 separate files, the rgb layers
and the alpha layer. the alpha layer will be in the file with
"noesisdupname_001" in the name. this will be fixed at a later time.