Decompilation of Super Mario Odyssey for all versions.
Go to file
MonsterDruide1 45eeaec347
Merge pull request #3 from Sanae6/master
Add FireDrum2D actor and related functions
2021-12-20 21:24:29 +01:00
data Add FireDrum2D actor 2021-12-20 14:19:32 -06:00
lib Add FireDrum2D actor 2021-12-20 14:19:32 -06:00
src Add FireDrum2D actor 2021-12-20 14:19:32 -06:00
toolchain tools: Build multiple versions - deactivated 2021-08-26 01:09:30 +02:00
tools Update submodules 2021-12-10 13:54:49 +01:00
.clang-format Run clang-format 2021-11-16 22:58:25 +01:00
.gitignore Add FireDrum2D actor 2021-12-20 14:19:32 -06:00
.gitmodules Move libraries from include to lib 2021-08-19 16:45:52 +02:00
CMakeLists.txt Move libraries from include to lib 2021-08-19 16:45:52 +02:00
Contributing.md Guideline changes from BotW project 2021-12-10 14:45:47 +01:00
README.md Guideline changes from BotW project 2021-12-10 14:45:47 +01:00

OdysseyDecomp

Decompilation of all Super Mario Odyssey versions, from 1.0.0 to 1.3.0.

Building

Reminder: this will not produce a playable game. This project will not allow you to play the game if you don't already own it on a Switch.

For Windows users

While Linux is not a hard requirement, it is strongly advised to set up WSL to simplify the setup process. Ubuntu 20.04 is usually a good choice.

The instructions below assume that you are using Linux (native or WSL) or macOS.

1. Set up dependencies

Ubuntu users can install those dependencies by running:

sudo apt install python3 ninja-build cmake ccache

Additionally, you'll also need:

  • A Rust toolchain (follow the instructions here)
  • The following Python modules: capstone colorama cxxfilt pyelftools ansiwrap watchdog python-Levenshtein toml (install them with pip install ...)

2. Set up the project

  1. Clone this repository. If you are using WSL, please clone the repo inside WSL, not on the Windows side (for performance reasons).

  2. Run git submodule update --init --recursive

    Next, you'll need to acquire the original 1.0 main NSO executable.

    • To dump it from a Switch, follow the instructions on the wiki.
    • You do not need to dump the entire game (RomFS + ExeFS + DLC). Just dumping the 1.0 ExeFS is sufficient.
  3. Download Clang 3.9.1 manually

    • As we're not sure about the right compiler version yet, it won't be downloaded automatically.
    • Download a prebuilt binary (version 3.9.1) from LLVM, matching your environment.
    • Extract it to toolchain/clang-3.9.1, so that the file toolchain/clang-3.9.1/bin/clang exists.
  4. Run tools/setup.py [path to the NSO]

    • This will:
      • install tools/check to check for differences in decompiled code
      • convert the executable if necessary
      • set up Clang 4.0.1 by downloading it from the official LLVM website
      • create a build directory in build/
    • If something goes wrong, follow the instructions given to you by the script.

3. Build

To start the build, just run

ninja -C build

By default, Ninja will perform a multithreaded build. There is no need to pass -j manually.

To check whether everything built correctly, just run tools/check after the build completes.

Contributing

Anyone is welcome to contribute to this project, just send a pull request!

TODO

  • Enable comparison between different versions and check for mis-matches in all versions using tools/check
  • 1.3.0 uses a different optimization method, find it and implement it into the toolchain

Credits

This decompilation uses this as a reference for the sead library used. Big thanks to their research!