Super Mario Galaxy 1 decompilation.
Go to file
shibbo 826199e08e
Some checks failed
Build / build (RMGK01) (push) Has been cancelled
add in Runtime files
2024-11-20 20:58:20 -05:00
.github/workflows update to master branch 2024-10-29 15:11:16 -04:00
.vscode Effect linked 2024-10-14 13:36:38 -04:00
assets throw in initial overhaul 2024-09-23 21:17:42 -04:00
config/RMGK01 some GX fixes and match some of DVD 2024-10-30 23:41:11 -04:00
docs throw in initial overhaul 2024-09-23 21:17:42 -04:00
include add in Runtime files 2024-11-20 20:58:20 -05:00
libs some GX fixes and match some of DVD 2024-10-30 23:41:11 -04:00
orig/RMGK01 throw in initial overhaul 2024-09-23 21:17:42 -04:00
src add in Runtime files 2024-11-20 20:58:20 -05:00
tools add in Runtime files 2024-11-20 20:58:20 -05:00
.flake8 throw in initial overhaul 2024-09-23 21:17:42 -04:00
.gitattributes throw in initial overhaul 2024-09-23 21:17:42 -04:00
.gitignore Merge branch 'master' of https://github.com/SMGCommunity/Petari 2024-10-26 13:48:33 -04:00
configure.py add in Runtime files 2024-11-20 20:58:20 -05:00
convert.py fully configure SMG1 2024-10-26 13:37:11 -04:00
LICENSE throw in initial overhaul 2024-09-23 21:17:42 -04:00
README.example.md throw in initial overhaul 2024-09-23 21:17:42 -04:00
README.md throw in initial overhaul 2024-09-23 21:17:42 -04:00

decomp-toolkit Project Template

If starting a new GameCube / Wii decompilation project, this repository can be used as a scaffold.

See decomp-toolkit for background on the concept and more information on the tooling used.

Documentation

General:

References

Projects using this structure:

Features

  • Few external dependencies: Just python for the generator and ninja for the build system. See Dependencies.
  • Simple configuration: Everything lives in config.yml, symbols.txt, and splits.txt.
  • Multi-version support: Separate configurations for each game version, and a configure.py --version flag to switch between them.
  • Feature-rich analyzer: Many time-consuming tasks are automated, allowing you to focus on the decompilation itself. See Analyzer features.
  • REL support: RELs each have their own symbols.txt and splits.txt, and will automatically be built and linked against the main binary.
  • No manual assembly: decomp-toolkit handles splitting the DOL into relocatable objects based on the configuration. No game assets are committed to the repository.
  • Progress calculation and upload script for frogress.
  • Integration with objdiff for a diffing workflow.
  • CI workflow template for GitHub Actions.

Project structure

  • configure.py - Project configuration and generator script.
  • config/[GAMEID] - Configuration files for each game version.
  • config/[GAMEID]/build.sha1 - SHA-1 hashes for each built artifact, for final verification.
  • build/ - Build artifacts generated by the the build process. Ignored by .gitignore.
  • orig/[GAMEID] - Original game files, extracted from the disc. Ignored by .gitignore.
  • orig/[GAMEID]/.gitkeep - Empty checked-in file to ensure the directory is created on clone.
  • src/ - C/C++ source files.
  • include/ - C/C++ header files.
  • tools/ - Scripts shared between projects.

Temporary, delete when done:

  • config/GAMEID/config.example.yml - Example configuration file and documentation.
  • docs/ - Documentation for decomp-toolkit configuration.
  • README.md - This file, replace with your own. For a template, see README.example.md.
  • LICENSE - This repository is licensed under the CC0 license. Replace with your own if desired.