11-05-2016, 05:46 AM
|
Posts: 177
Threads: 14
Joined: Feb 2015
|
(09-05-2016, 05:33 AM)mib_f8sm9c Wrote: So this brings us to the A1 buffer. For clarity, the A1 buffer is NOT an output, it's a processing aide to determine pixels that are in areas with lots of changing colors. Every time that a pixel's color changes from a previous pixel, in the A1 buffer it adds 1 to the pixel to the right, the pixel that's 2 pixels right, the pixel down, the pixel down & left, the pixel down & right, and the pixel down twice. 6 in total. Effectively this map shows you areas that are heavy in changing colors, and places that are effectively the same color.
Thanks for confirming the A1 buffer is just used temporarily during decoding. I couldn't find any references to it outside of the TKMK00 decoder, so I had my suspicions.
(09-05-2016, 05:33 AM)mib_f8sm9c Wrote:
That being said, making a compressor sounds pretty complex. Deciding how to make the Hoffman tree from the start sounds like an interesting challenge, and it'd probably be hard to make a compressor that'd out-perform the one made for this. I'm having fun though.
I've been able to read over your description and the code you posted and I think I was able to understand all of it. Thanks for posting all of that, it really helped. However, I agree that writing a compressor will be difficult. I think first pass will just trying to store it as uncompressed as possible (similar to the fake MIO0 headers concept), so always using a new color, always new RGBA, but I haven't quite thought out how to handle the effect this has on the color change map and channel readers. I'll give this some more thought.
(09-05-2016, 05:33 AM)mib_f8sm9c Wrote:
EDIT: Okay, I figured out how the new pixel color is calculated from the predicted values & the output from the Channel Commands. I think I have it all figured out. I'll write up my own non-assembly-style decompressor, comment the heck out of it & probably upload it here, and then maybe take a hack at a compressor. But not today. I need a break, I lost my whole weekend to TKMK.
EDIT EDIT: Working C# code for a decoder:
http://pastebin.com/Zyx0xCdz
Awesome! I ran some tests comparing the md5sums of all 63 TKMK00 images produced from your C# version and my C version, and they all matched! Looks like you got it all figured out. And I hear you about needing a break. I thought a good weekend was all I needed to decode TKMK00 and it ended up taking me nearly a week to cobble together that C code.
I've been going through the structures used to generate the menus and trying to figure out how to update images inside of it. Like everything else, it is quite convoluted. I'll update this post with a complete doc once I have more sorted out. Here is what I have now: http://sprunge.us/RFiN
Brief summary: the menus use both TKMK00 and MIO0 compressed assets (characters and map previews use MIO0). This table uses both and passes them to 800996BC() with either a segmented address from the table or a virtual address. Based on which type of data, it calls one of two specialized DMA functions to compute ROM offsets from segmented addresses and then calls the appropriate mio0decode/tkmk00decode function. Related submenus are then also loaded based on data in the menu structure.
Also, out of curiosity, I took the time to try and decode the two Japanese TKMK00 menu options. Looks like at one time they were thinking of having race modes without items.
![[Image: 8086C0.png]](http://queueram.com/n64/mk64/tkmk00/be/8086C0.png) | アイテムなし | without item |
![[Image: 8089C0.png]](http://queueram.com/n64/mk64/tkmk00/be/8089C0.png) | アイテムあり | with item |
Thanks to abitalive and his friend for confirming the translation.
|