Go to file
LagoLunatic 311717d4a7
Merge pull request #905 from LagoLunatic/hio
Fix HIO load issues for d_a_player_main
2025-12-10 18:06:04 -05:00
.github/workflows Website CI: Cache node_modules 2025-08-15 19:51:31 -04:00
.vscode Match daNpc_Cb1_c::flyAction 2025-08-22 13:43:47 -04:00
assets Import project 2023-09-10 00:48:55 -04:00
config Fix incorrect relocs detected for demo 2025-08-29 17:20:13 -04:00
docs Fix typo in tutorial 2025-07-17 21:24:44 -04:00
include Fix HIO load issues for d_a_player_main 2025-12-10 17:31:47 -05:00
orig Demo: Add version config 2025-05-19 19:32:23 -04:00
src Fix HIO load issues for d_a_player_main 2025-12-10 17:31:47 -05:00
tools Clean up matDL_dis.py 2025-11-24 19:08:53 -05:00
.clang-format Fix clang for dolzel_rel.h too 2025-08-26 17:04:33 -04:00
.clangd Enable more clangd warnings, minor cleanup 2025-09-18 21:55:48 -04:00
.gitattributes Import project 2023-09-10 00:48:55 -04:00
.gitignore d_a_tori_flag 100% (#689) 2025-02-19 19:48:55 -05:00
LICENSE Initial commit 2023-09-09 10:08:34 -04:00
README.md Update dtk-template & use wibo on macOS (#901) 2025-11-20 12:20:02 -05:00
configure.py Add JSystem PCH to fix weak function order (#904) 2025-12-05 09:11:53 -08:00

README.md

The Legend of Zelda: The Wind Waker
Build Status Progress DOL Progress RELs Progress Discord Badge

A work-in-progress decompilation of The Legend of Zelda: The Wind Waker for GameCube.

This repository does not contain any game assets or assembly whatsoever. An existing copy of the game is required.

All GameCube versions are supported:

  • GZLE01: Rev 0 (USA), Rev 48 (KOR)
  • GZLP01: Rev 0 (PAL)
  • GZLJ01: Rev 0 (JPN)
  • D44J01: Kiosk demo (JPN)

Dependencies

Windows:

On Windows, it's highly recommended to use native tooling. WSL or msys2 are not required.
When running under WSL, objdiff is unable to get filesystem notifications for automatic rebuilds.

  • Install Python and add it to %PATH%.
  • Download ninja and add it to %PATH%.
    • Quick install via pip: pip install ninja

macOS:

  • Install ninja:
    brew install ninja
    

wibo, a minimal 32-bit Windows binary wrapper, will be automatically downloaded and used.

Linux:

wibo, a minimal 32-bit Windows binary wrapper, will be automatically downloaded and used.

Building

  • Clone the repository:

    git clone https://github.com/zeldaret/tww.git
    
  • Copy your game's disc image to orig/GZLE01.

    • Supported formats: ISO (GCM), RVZ, WIA, WBFS, CISO, NFS, GCZ, TGC
    • After the initial build, the disc image can be deleted to save space.
  • Configure:

    python configure.py
    

    To use a version other than GZLE01 (USA), specify --version GZLJ01 (JPN) or --version GZLP01 (PAL).

  • Build:

    ninja
    

Diffing

Once the initial build succeeds, an objdiff.json should exist in the project root.

Download the latest release from encounter/objdiff. Under project settings, set Project directory. The configuration should be loaded automatically.

Select an object from the left sidebar to begin diffing. Changes to the project will rebuild automatically: changes to source files, headers, configure.py, splits.txt or symbols.txt.

Setting up Ghidra

Ghidra is a tool that automatically decompiles code. Although Ghidra's output is not accurate enough to be directly copy-pasted into this decompilation project, it can still be helpful for understanding functions and decompiling them faster.

We have a shared Ghidra project for TWW already set up. To get access to this server:

  • Go to https://ghidra.decomp.dev and link your Discord account.
  • Create a Ghidra account by entering a new username and password into the form on the right.
  • Request "Read" access to the WindWaker server.

Then wait for an admin to approve your request. Once you have access, you can set up the Ghidra project like so:

  • To use Ghidra, you first need to install JDK. You can download OpenJDK 17 from here.
  • Download the RootCubed Ghidra build ghidra_11.1_DEV_20240115 from here.
  • Launch Ghidra with ghidraRun.
  • In Ghidra, go to File -> New Project.... Select Shared Project and input the following information:
    • Server Name: ghidra.decomp.dev
    • Port Number: 13100
    • User ID: (the username that you chose earlier)
    • Password: (the password that you chose earlier)
  • You should now be able to view the files in the Ghidra project. You should checkout the main file.

Now you have Ghidra set up and ready to use.

For an introduction on how to use Ghidra, you can read this section of the Twilight Princess decompilation's guide.

Optionally, you may also want to also request "Read" access to the TwilightPrincess server on https://ghidra.decomp.dev and set that Ghidra project up too, even if you are not interested in working on that game. The reason for this is that a significant amount of engine code is shared between The Wind Waker and Twilight Princess, and the debug version of Twilight Princess (called shield_chn_debug in the Ghidra project) is easier to work with because inline functions are not inlined in that version. It can be worth checking if the function you're working on is present in that game as well.

Contributing

If you've got all the requirements set up and want to learn how to contribute to the decompilation effort, see this guide for details.