WIP 1:1 decompilation of Super Paper Mario
Go to file
2022-08-23 13:24:24 +01:00
config Analysis fixess 2022-08-20 16:15:47 +01:00
include Remove SDA2_BASE define 2022-08-02 15:36:18 +01:00
orig New build system 2022-07-01 12:13:31 +01:00
rel float -> f32 2022-07-20 12:48:34 +01:00
src ppcdis asset support 2022-08-02 14:21:24 +01:00
tools Update ppcdis 2022-08-23 13:24:24 +01:00
.gitignore ppcdis asset support 2022-08-02 14:21:24 +01:00
.gitmodules New build system 2022-07-01 12:13:31 +01:00
common.py Move full disasm target to out 2022-08-20 15:02:14 +01:00
configure.py Optional full binary disasm 2022-08-09 15:37:50 +01:00
CONTRIBUTING.md Update diff.py 2022-07-08 00:19:27 +01:00
decompme.py decompme diff label fix 2022-07-12 12:43:04 +01:00
diff_settings.py Update diff.py 2022-07-08 00:19:27 +01:00
diff.py Update diff.py 2022-07-08 14:03:19 +01:00
expected.py New build system 2022-07-01 12:13:31 +01:00
getfunction.py decompme diff label fix 2022-07-12 12:43:04 +01:00
makectx_m2c.py Fix makectx 2022-07-05 14:32:08 +01:00
makectx.py Fix makectx 2022-07-05 14:32:08 +01:00
progress.py Fix progress check 2022-07-08 15:35:26 +01:00
README.md Shorten contributing.md link 2022-07-22 15:01:51 +01:00
requirements.txt Missing requirement 2022-07-27 16:06:08 +01:00

spm-decomp

Decompilation of Super Paper Mario PAL revision 0. This will never be a decompilation of the full game, just specific parts that are useful or interesting, and it certainly won't lead to ports to any other platform. The repo is currently not shiftable (i.e. making changes to the code that causes functions or data to change size or move won't create a working output) but is intended to be at some point. The SDK, NW4R and MSL libraries are out of scope for this project and will not be decompiled (though partial headers will be needed for them to allow other code to be decompiled).

See also https://github.com/SeekyCt/spm-docs for other documentation.

Building

  • Dump a copy of the game and extract the main.dol & relF.bin files
  • Extract relF.bin to relF.rel with a tool like nlzss
  • Place main.dol and relF.rel in the orig folder
  • Place Codewarrior EPPC Version 4.1 Build 60831 in tools/4199_60831
  • Install DevkitPPC, Ninja and Python
    • DevkitPPC r38 and r41 are known to work, other versions probably do too
    • Python 3.8+ is supported, earlier versions may work
  • If you didn't use --recursive when cloning, run git submodule update --init --recursive
  • Install the modules from requirements.txt (pip install -r requirements.txt)
  • Run configure.py
  • Run ninja

Pulling

When pulling the repo later on, make sure to rerun configure.py and git submodule update --recursive

Checking Progress

Running progress.py after a successful build will give the current dol & rel .text section progress.

Contributing

See CONTRIBUTING.md

Modding

In it's current state, the repo isn't really ready for direct editing (the DOL isn't shiftable, the REL might be but it's not been thoroughly tested), but functions can be copied into rel mods and edited there, and the documentation is still useful.

Credits

  • PistonMiner, Zephiles, Jdaster64, Jasper, NWPlayer123, Malleo, SolidifiedGaming and Diagamma for their TTYD documentation
  • All contributors to the PM64 decomp
  • All contributors to asm-differ
  • All contributors to ppcdis