Decompilation of Paper Mario
Go to file
Ethan Roseman 1dd75cd0e5 UnkBattleFunc2 2020-12-30 16:03:05 +09:00
.github/workflows
.vscode M -> N, StartRumbleWithParams dup 2020-12-28 16:09:39 +09:00
asm UnkBattleFunc2 2020-12-30 16:03:05 +09:00
docs
include UnkBattleFunc2 2020-12-30 16:03:05 +09:00
src UnkBattleFunc2 2020-12-30 16:03:05 +09:00
tools UnkBattleFunc1 2020-12-30 15:53:40 +09:00
.clang-tidy Merge branch 'mac-support' into audio 2020-12-05 19:57:10 -05:00
.editorconfig
.gitattributes
.gitignore match world partner table 2020-12-22 15:53:16 +00:00
.gitmodules add sprite editor gui 2020-12-22 00:09:55 +00:00
CONTRIBUTING.md Create CONTRIBUTING.md 2020-12-24 03:38:37 -05:00
Dockerfile Use install.sh 2020-12-28 10:06:48 +09:00
Doxyfile
Jenkinsfile
Makefile Merge pull request #138 from nanaian/worldpartners 2020-12-26 12:42:49 +00:00
README.md Update README.md 2020-12-24 03:40:01 -05:00
checksum.sha1
coverage.py
diff.py
diff_settings.py
docker-compose.yml
docker-sync.yml
format.sh 4 more and format 2020-12-12 17:55:21 +09:00
install.sh
requirements.txt
requirements_extra.txt
sources.mk again 2020-12-22 16:33:26 +00:00
undefined_funcs.txt
undefined_funcs_auto.txt
undefined_syms.txt Battle funcs 2020-12-28 14:34:30 +09:00
undefined_syms_auto.txt Battle funcs 2020-12-28 14:34:30 +09:00

README.md

Paper Mario

This is a WIP decompilation of Paper Mario (USA). It builds the following ROM:

  • papermario.z64 md5: a722f8161ff489943191330bf8416496

Discord: Paper Mario Modding

Setup

You'll need Linux, a Linux VM, or Windows 10 (WSL2) to work on this project.

Clone the repository

$ git clone https://github.com/ethteck/papermario.git
$ cd papermario

Install build dependencies

$ ./install.sh

Our install script does not yet support distros other than Ubuntu, Arch, and their derivatives. Please consider contributing to the script if you use another distro!

Base ROM

You'll need a Paper Mario (USA) ROM to work on this project. Copy it into the root directory of the repository with the name baserom.z64.

Install tools and extract ROM

$ make setup

Compile the game

$ make

If you get OK, you're all set! Otherwise, please feel free to reach out to us in our Discord channel.

Star Rod GUI

You can open our modified version of Star Rod with make editor.

Contributing

Please see CONTRIBUTING.md for information on how to contribute to the project. Any and all help is welcome!

Troubleshooting

  • If you are using Windows, you may encounter the following when you run make:
sha1sum -c checksum.sha1
sha1sum: 'papermario.z64'$'\r': No such file or directory
: FAILED open or read
sha1sum: WARNING: 1 listed file could not be read
Makefile:118: recipe for target 'verify' failed
make: *** [verify] Error 1

💡 Solution

Run git checkout checksum.sha1 and retry building. Windows has different line endings than Linux, causing some of our tools to break.