* Split out functions in unknown_070110, and do some documenting on them. Also fixes the scoring script to include UNUSED funcs * Match func_80021400 * Match unused func_800B3678 * Commit suggestions * Match func_80009AB4 * Fix breaking NON_EQUIVALENT builds when I changed the LevelHeader struct * I swear I fixed this before the last push, but oh well. Here's the proper fix * Match func_80007FA4 * Add suggestions for PR, and do a NON_EQUIVALENT but near match of func_8005F310 * Add offsets to the sound_ids, and set them up in some arrays that are a list of sounds to play. * Update a few variables to floats to match func_800699E4 * Fix NON_EQUIVALENT * Nearly match func_80011134 * Match func_8001B668 and do some more documenting * Match func_80069A40 * Do a NON_EQUIVALENT, possible NON_MATHCING match of func_8005CB680 * Do NON_MATCHING of func_8005C364 + update diff.py * WIP func_8005A6F0 * Remove unk8004F77C struct as it's just Object_Racer * Match func_8005A6F0 * Match func_8002263C * WIP func_8005B818 * WIP func_80011570 and match catmull_rom_interpolation * Match func_80011570 * Remove some extra function declarations from C files, and used the .h files instead. * Better matches for the catmull math funcs * Get obj_loop_effectbox a little closer to matching * Match obj_loop_goldenballoon * Fix some minor whitespace issues. Co-authored-by: Ryan Myers <foldor@gmail.com>
Diddy Kong Racing
This repo contains a work-in-progress decompilation of Diddy Kong Racing for the N64. You will need to have a original copy of the ROM to extract the game's assets.
Currently, only the US 1.0 version of the game is supported. US 1.1, EU 1.0, EU 1.1, and JP are not supported at this time.
Dependencies
libcapstone-devlibssl-devgcc, Version 8.0 or highermake, Version 4.2 or higherpython3wget
sudo apt install build-essential pkg-config git python3 libssl-dev wget libcapstone-dev
binutils
You are not required to install a binutils package, but it does speed up the initial setup if you do have it installed.
- Ubuntu/Debian (x86):
sudo apt install binutils-mips-linux-gnu
Setup / Building
- Install the dependencies
- Place the ROM file within the
baseromsdirectory.
a. The name of the ROM file does not matter, but it must end with one of these extensions:.z64,.v64,.n64, or.rom. It will be detected automatically from an md5 checksum.
b. If you use a byte-swapped or little-endian ROM, then it will automatically be converted to a big-endian (.z64) ROM file. - Run
makein the main directory.
a. Use the-jNargument to useNnumber of threads to speed up building. For example, if you have a system with 4 cores / 4 threads, you should domake -j4.
Modding
If you are modifying the code in the repo, then you should add NON_MATCHING=1 to the make command.
Example: make NON_MATCHING=1 -j4
The NON_MATCHING define will include the functions that don't exactly match one-to-one, but should be no different functionality-wise. If you do notice any bugs that occur in a NON_MATCHING build that are not in the vanilla game, then please file an issue describing the bug. It would be helpful if you can track down which function is causing the bug, but that is not required.
Style Guide
The style guide for the project can be found here: https://docs.google.com/document/d/1euQf8nwynGcCZL1MfoMaLs-XRvx3ejjj8fIfykUZ-NQ
If you see variables/functions/structs/etc. that doesn't follow these rules, then file an issue and we'll try to fix them.
Scripts
There are some useful scripts that should be kept in mind when working on this repo.
./extract.sh <version>
This script will extract all the assets from a DKR ROM and place them into /assets/ folder according to the config file within the /extract-ver/ folder. The version parameter should either be us_1.0, us_1.1, eu_1.0, eu_1.1, or jp.
Example: ./extract.sh us_1.0
./diff.sh <function_name>
Compares the assembly output of a function from a built ROM to the base ROM. Useful for decompiling.
Example: ./diff.sh menu_init
./rename.sh <old_name> <new_name>
This script will rename an existing symbol, file name, and/or folder name within the repo with a new one.
Example: ./rename.sh D_A4001000 SP_IMEM
./get_symbol.sh <ram_address>|<symbol>
Given either a RAM address or symbol, returns its (symbol, address) pairing as defined in /build/us_1.0/dkr.map. If specified, the RAM address must be in base 16. The 0x prefix is not required.
Example:
./get_symbol.sh 0xA4001000
0xA4001000 = SP_IMEM
./get_symbol.sh osCicId
0x80000310 = osCicId
./score.sh
Prints out the current completion percentage of the decomp. You do need to have an OK build for this to work properly.
The scoring is split into 2 sections:
- Assembly to C Decompilation (Adventure One)
- Cleanup and Documentation (Adventure Two)
Show scores for Adventure One & Adventure Two: ./score.sh
Show score for Adventure One only: ./score.sh -a 1
Show score for Adventure Two only: ./score.sh -a 2
Show top 10 files remaining: ./score.sh -t 10
To make progress in Adventure 2, a function must be properly named (must not start with func_) and also include a doxygen comment above it.
For example:
/**
* Returns 1 if Drumstick is avaliable to use, or 0 if not.
*/
s32 is_drumstick_unlocked(void) {
return gActiveMagicCodes & 2;
}
As of August 25th, 2022, this is our current score:
========================================================
ADVENTURE ONE (ASM -> C Decompilation)
------------------- 29.61% Complete --------------------
# Decompiled functions: 1210
# GLOBAL_ASM remaining: 576
# NON_MATCHING functions: 14
# NON_EQUIVALENT WIP functions: 99
--------------------- Game Status ----------------------
Balloons: 15/47, Keys: 1/4, Trophies: 1/5
T.T. Amulets: 1/4, Wizpig Amulets: 1/4
--------------------------------------------------------
We are racing in Snowball Valley. (Lap 2/3)
========================================================
ADVENTURE TWO (Cleanup & Documentation)
------------------- 5.16% Complete --------------------
# Documented functions: 181
# Undocumented remaining: 1605
--------------------- Game Status ----------------------
Balloons: 3/47, Keys: 0/4, Trophies: 0/5
T.T. Amulets: 0/4, Wizpig Amulets: 0/4
--------------------------------------------------------
We are collecting the fourth balloon on Timber's Island.
TODO list
Major
What should be focused on.
- Decompiling the non-matching asm files into matching C functions.
- Documenting variables & functions
Minor
What can be done, but not essential.
- Figuring out the formats for the assets in the /assets/ folder.
- Creating tools to modify assets
Future
These features won't be complete anytime soon.
- Add support for the other 4 versions.