# Legend of Zelda: Majora's Mask (US) 1.0 [![Build Status][jenkins-badge]][jenkins] [![Decompilation Progress][progress-badge]][progress] [![Contributors][contributors-badge]][contributors] [![Discord Channel][discord-badge]][discord] [jenkins]: https://jenkins.deco.mp/job/MM/job/main [jenkins-badge]: https://img.shields.io/jenkins/build?jobUrl=https%3A%2F%2Fjenkins.deco.mp%2Fjob%2FMM%2Fjob%2Fmain [progress]: https://zelda64.dev/games/mm [progress-badge]: https://img.shields.io/endpoint?url=https://zelda64.dev/assets/csv/progress-mm-shield.json [contributors]: https://github.com/zeldaret/mm/graphs/contributors [contributors-badge]: https://img.shields.io/github/contributors/zeldaret/mm [discord]: https://discord.zelda64.dev [discord-badge]: https://img.shields.io/discord/688807550715560050?color=%237289DA&logo=discord&logoColor=%23FFFFFF ```diff - WARNING! - This repository is a work in progress, and while it can be used to make certain changes, it's still constantly evolving. If you wish to use it for modding purposes in its current state, please be aware that the codebase could drastically change at any time. Also note that some parts of the ROM may not be 'shiftable' yet, so modifying them could currently be difficult. ``` This is a WIP **decompilation** of ***The Legend of Zelda: Majora's Mask***. The purpose of the project is to recreate a source code base for the game from scratch, using information found inside the game along with static and/or dynamic analysis. **It is not, and will not, produce a PC port.** For frequently asked questions, you can visit [our website](https://zelda64.dev/games/mm), and for more information you can get in touch with the team on our [Discord server](https://discord.zelda64.dev). The only version currently supported is N64 US, but we intend to eventually support every retail version of the original game (i.e. not versions of MM3D, which is a totally different game). It currently builds the following ROM and compressed ROM: * mm-n64-us.z64 `md5: f46493eaa0628827dbd6ad3ecd8d65d6` * mm-n64-us-compressed.z64 `md5: 2a0a8acb61538235bc1094d297fb6556` **This repo does not include any assets or assembly code necessary for compiling the ROM. A prior copy of the game is required to extract the required assets.** Please refer to the following for more information: - [Website](https://zelda64.dev/) - [Discord](https://discord.zelda64.dev/) - [How to Contribute](docs/CONTRIBUTING.md) ## Installation ### Windows For Windows 10, install WSL and a distribution by following this [Windows Subsystem for Linux Installation Guide](https://docs.microsoft.com/en-us/windows/wsl/install-win10). We recommend using Debian or Ubuntu 20.04 Linux distributions. ### MacOS Preparation is covered in a [separate document](docs/BUILDING_MACOS.md). ### Docker Preparation is covered in [Building Docker](docs/BUILDING_DOCKER.md). ### Linux (Native or under WSL / VM) #### 1. Install build dependencies The build process has the following package requirements: * make * git * build-essential * binutils-mips-linux-gnu * python3 * python3-pip * python3-venv * libpng-dev Under Debian / Ubuntu (which we recommend using), you can install them with the following commands: ```bash sudo apt update sudo apt install make git build-essential binutils-mips-linux-gnu python3 python3-pip python3-venv libpng-dev ``` #### 2. Clone the repository Create your own fork of the repository at `https://github.com/zeldaret/mm`. Then clone your fork where you wish to have the project, with the command: ```bash git clone https://github.com//mm.git ``` This will copy the GitHub repository contents into a new folder in the current directory called `mm`. Change into this directory before doing anything else: ```bash cd mm ``` #### 3. Prepare a base ROM Place a copy of the US ROM inside the `baseroms/n64-us/` folder. Rename the file to `baserom.z64`, `baserom.n64` or `baserom.v64`, depending on the original extension. #### 4. Make and Build the ROM To start the extraction/build process, run the following command: ```bash make init ``` The extraction/build process: 1. Prepares build environment: - Creates a Python virtual environment - Downloads necessary tools from pip - Compiles tools for the build process 2. Extracts ROM contents: - Decompresses the ROM - Extracts individual files - Extracts archive files 3. Extracts assets: - Extracts assets based on the XML files found in `assets/xml` 4. Disassembles code: - Disassembles code-containing files - Disassembles data (data, rodata, and bss) 5. Builds the ROM: - Compiles the code and assets into a new ROM - Generates a compressed version of the ROM If all goes well, the new ROM should be built at `build/n64-us/mm-n64-us.z64`, a compressed version generated at `build/n64-us/mm-n64-us-compressed.z64`, and the following text printed: ```bash build/n64-us/mm-n64-us.z64: OK ``` and ```bash build/n64-us/mm-n64-us-compressed.z64: OK ``` If you instead see the following: ```bash build/n64-us/mm-n64-us.z64: FAILED md5sum: WARNING: 1 computed checksum did NOT match ``` or ```bash build/n64-us/mm-n64-us-compressed.z64: FAILED md5sum: WARNING: 1 computed checksum did NOT match ``` This means that something is wrong with the ROM's contents. Either the baserom files are incorrect due to a bad ROM, or some of the code is not matching. Running `make init` will also make the `./expected` directory and copy all of the files there, which will be useful when running the diff script. The diff script is useful in decompiling functions and can be run with this command: `./tools/asm-differ/diff.py -wmo3 ` **Note**: to speed up the build, you can pass `-jN` to `make setup` and `make`, where N is the number of threads to use in the build, e.g. `make -j4`. The generally-accepted wisdom is to use the number of virtual cores your computer has, which is the output of `nproc` (which should be installed as part of `coreutils`). The disadvantage that the ordering of the terminal output is scrambled, so for debugging it is best to stick to one thread (i.e. not pass `-jN`). (`-j` also exists, which uses unlimited jobs, but is generally slower.) ## Contributing All contributions are welcome. This is a group effort, and even small contributions can make a difference. Some work also doesn't require much knowledge to get started. Please note that is is our strict policy that *Anyone who wishes to contribute to the OOT or MM projects **must not have accessed leaked source code at any point in time** for Nintendo 64 SDK, iQue player SDK, libultra, Ocarina of Time, Majora's Mask, Animal Crossing/Animal Forest, or any other game that shares the same game engine or significant portions of code to a Zelda 64 game or any other console similar to the Nintendo 64.* Most discussions happen on our [Discord Server](https://discord.zelda64.dev), where you are welcome to ask if you need help getting started, or if you have any questions regarding this project or ZeldaRET's other decompilation projects. For more information on getting started, see our [Contributing Guide](docs/CONTRIBUTING.md), [Style Guide](docs/STYLE.md) and our [Code Review Guidelines](docs/REVIEWING.md) to see what code quality guidelines we follow.