Decompilation of Kingdom Hearts (PS2)
Go to file
2024-11-04 22:28:24 +09:00
.vscode Progress on xkingdom and xapple (#25) 2024-01-03 16:24:43 +09:00
config moved crt0 into src, adjusted symbol_addrs, fixed xbeginning beginning (#63) 2024-10-28 15:28:28 +09:00
include libvu0 (#62) 2024-10-21 16:12:26 +09:00
src moved crt0 into src, adjusted symbol_addrs, fixed xbeginning beginning (#63) 2024-10-28 15:28:28 +09:00
tools Initial Support for new game version: Final Mix (#59) 2024-09-04 21:58:02 +09:00
.clang-format think i found another split (#9) 2023-10-24 05:25:38 +09:00
.gitignore Initial Support for new game version: Final Mix (#59) 2024-09-04 21:58:02 +09:00
configure.py Located sdk in FM version, moved sdk symbols to dedicated files (#60) 2024-10-12 13:40:58 +09:00
decomp.yaml Jenkins & decomp.yaml (#64) 2024-11-04 22:28:24 +09:00
diff_settings.py couple matches 2023-09-26 09:32:20 +09:00
diff.py work on a c func 2023-09-18 03:26:35 +09:00
find_splits.py more c files 2023-09-23 17:57:43 +09:00
Jenkinsfile Jenkins & decomp.yaml (#64) 2024-11-04 22:28:24 +09:00
overlays.tsv smores 2023-09-15 15:28:53 +09:00
README.md Initial Support for new game version: Final Mix (#59) 2024-09-04 21:58:02 +09:00
requirements.txt Initial Support for new game version: Final Mix (#59) 2024-09-04 21:58:02 +09:00
undefined_syms.txt Fix build 2023-12-19 16:47:49 +09:00

Kingdom Hearts De:Compiled

A decompilation of the Playstation 2 releases of Kingdom Hearts.

Supported Versions

Game Version ELF Sha1
Original Japanese SLPS_251.05 9dabbf867a7ec2a030df99ba1ed969f2deef0488
Final Mix (JP Exclusive) SLPS_251.98 e70bda789916142aafb53d85cef2e806b35ad8d8

Dependencies

Some python dependencies are required, which you can obtain by running pip install -U -r requirements.txt.


Setup

  1. Extract the ELF file from an ISO of the game version you're targeting and place it in the root of the repo.

  2. Run ./configure.py to generate the build files.

    • Optionally, specify the game version you're targeting with the --version/-v flag. Defaults to the original Japanese version if not specified.
    • You can clear existing configurations with the --clean/-c flag
    • eg: ./configure.py -c -v fm will clear the existing build configuration and generate a new one for the Final Mix version.
  3. Run ninja to build the project. Final output will be stored by version in the build directory.


Notes

No game assets are published in this repository. This includes any files required to run the game, such as the game's executable, ISO, or any files extracted from it.

This repository targets the game's main executable, an elf file named uniquely by the game's serial number. A copy of the elf file is required to build the project, and must be provided by the user by extracting it from a legal copy of the game.

Warning

Additional asset extraction is currently only supported by the JP version of the game.

Additional assets that are not used in this project may optionally be extracted by running ./tools/iso/extract.py on the game's ISO. The extracted files are in the kingdom directory.