2020-05-01 01:47:42 +00:00
# The Legend of Zelda: Ocarina of Time
2020-03-17 04:31:30 +00:00
2021-02-11 12:10:05 +00:00
[![Build Status][jenkins-badge]][jenkins] [![Decompilation Progress][progress-badge]][progress] [![Contributors][contributors-badge]][contributors] [![Discord Channel][discord-badge]][discord]
2021-03-25 17:57:07 +00:00
[jenkins]: https://jenkins.deco.mp/job/OOT/job/master
[jenkins-badge]: https://img.shields.io/jenkins/build?jobUrl=https%3A%2F%2Fjenkins.deco.mp%2Fjob%2FOOT%2Fjob%2Fmaster
2021-02-11 12:10:05 +00:00
2021-12-18 15:09:51 +00:00
[progress]: https://zelda64.dev/games/oot
[progress-badge]: https://img.shields.io/endpoint?url=https://zelda64.dev/assets/csv/progress-oot-shield.json
2021-02-11 12:10:05 +00:00
[contributors]: https://github.com/zeldaret/oot/graphs/contributors
[contributors-badge]: https://img.shields.io/github/contributors/zeldaret/oot
[discord]: https://discord.zelda64.dev
[discord-badge]: https://img.shields.io/discord/688807550715560050?color=%237289DA& logo=discord& logoColor=%23FFFFFF
2020-03-17 04:31:30 +00:00
```diff
- WARNING! -
2021-02-11 12:10:05 +00:00
This repository is a work in progress, and while it can be used to make certain changes, it's still
constantly evolving. If you use it for modding purposes in its current state, please be aware that
the codebase can drastically change at any time. Also note that some parts of the ROM may not be
'shiftable' yet, so modifying them could be difficult at this point.
2020-03-17 04:31:30 +00:00
```
2021-08-13 17:10:01 +00:00
This is a WIP **decompilation** of ** *The Legend of Zelda: Ocarina of Time***. 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 producing a PC port.** For more information you can get in touch with the team on our [Discord server ](https://discord.zelda64.dev ).
2020-05-01 01:47:42 +00:00
The only build currently supported is Master Quest (Debug), but other versions are planned to be supported.
2020-03-17 04:31:30 +00:00
It builds the following ROM:
2020-05-01 01:47:42 +00:00
2020-03-28 21:34:57 +00:00
* zelda_ocarina_mq_dbg.z64 `md5: f0b7f35375f9cc8ca1b2d59d78e35405`
2020-03-17 04:31:30 +00:00
2021-02-11 12:10:05 +00:00
**Note: This repository does not include any of the assets necessary to build the ROM. A prior copy of the game is required to extract the needed assets.**
2020-05-01 01:47:42 +00:00
2021-02-11 12:10:05 +00:00
**Website:** < https: / / zelda64 . dev >
2020-05-01 01:47:42 +00:00
2021-02-11 12:10:05 +00:00
**Discord:** < https: / / discord . zelda64 . dev >
2020-05-01 01:47:42 +00:00
## Installation
2022-01-17 00:43:07 +00:00
We recommend using WSL on Windows, or native Linux, which the rest of this readme describes. We currently have instructions for
2020-05-01 01:47:42 +00:00
2022-01-17 00:43:07 +00:00
* [Windows ](#Windows ), with and without WSL
* [macOS ](docs/BUILDING_MACOS.md )
* [Linux ](#Linux-Native-or-under-WSL--VM ), natively or using WSL / VM
* [Docker ](docs/BUILDING_DOCKER.md )
2021-02-11 12:10:05 +00:00
2022-01-17 00:43:07 +00:00
(These will also depend on the Linux instructions.)
Some of these may also be out of date or unmaintained; usually our contributors use WSL, Linux, and macOS, so these instructions should be up to date.
2021-02-11 12:10:05 +00:00
2022-01-17 00:43:07 +00:00
### Windows
2020-09-21 07:00:28 +00:00
2022-01-17 00:43:07 +00:00
For Windows 10 or 11, install WSL and a distribution by following this
[WSL Installation Guide ](https://docs.microsoft.com/en-us/windows/wsl/install ).
We recommend using Ubuntu 20.04 as the Linux distribution.
2020-09-21 07:00:28 +00:00
2022-01-17 00:43:07 +00:00
For older versions of Windows, install a Linux VM or refer to either [Cygwin ](docs/BUILDING_CYGWIN.md ) or [Docker ](docs/BUILDING_DOCKER.md ) instructions.
2021-02-11 12:10:05 +00:00
2020-05-01 01:47:42 +00:00
### Linux (Native or under WSL / VM)
#### 1. Install build dependencies
The build process has the following package requirements:
* git
* build-essential
* binutils-mips-linux-gnu
* python3
2021-05-30 15:09:59 +00:00
* libpng-dev
2020-05-01 01:47:42 +00:00
Under Debian / Ubuntu (which we recommend using), you can install them with the following commands:
```bash
sudo apt-get update
2021-05-30 15:09:59 +00:00
sudo apt-get install git build-essential binutils-mips-linux-gnu python3 libpng-dev
2020-05-01 01:47:42 +00:00
```
2022-01-17 00:43:07 +00:00
To install the Python dependencies simply run in a terminal:
```bash
python3 -m pip install colorama
```
2022-02-19 21:50:56 +00:00
If you are using GCC as the compiler for Ocarina of Time, you will also need:
* gcc-mips-linux-gnu
2021-05-20 23:01:00 +00:00
#### 2. Clone the repository
2020-05-01 01:47:42 +00:00
Clone `https://github.com/zeldaret/oot.git` where you wish to have the project, with a command such as:
```bash
git clone https://github.com/zeldaret/oot.git
```
2022-01-17 00:43:07 +00:00
This will copy the GitHub repository contents into a new folder in the current directory called `oot` . Change into this directory before doing anything else:
```bash
cd oot
```
2021-05-20 23:01:00 +00:00
#### 3. Prepare a base ROM
2020-05-01 01:47:42 +00:00
Copy over your copy of the Master Quest (Debug) ROM inside the root of this new project directory.
2021-01-14 20:14:33 +00:00
Rename the file to "baserom_original.z64", "baserom_original.n64" or "baserom_original.v64", depending on the original extension.
2020-05-01 01:47:42 +00:00
2021-05-20 23:01:00 +00:00
#### 4. Setup the ROM and build process
2020-05-01 01:47:42 +00:00
Setup and extract everything from your ROM with the following command:
```bash
make setup
```
This will generate a new ROM called "baserom.z64" that will have the overdump removed and the header patched.
It will also extract the individual assets from the ROM.
2021-05-20 23:01:00 +00:00
#### 5. Build the ROM
2020-05-01 01:47:42 +00:00
Run make to build the ROM.
Make sure your path to the project is not too long, otherwise this process may error.
```bash
make
```
If all goes well, a new ROM called "zelda_ocarina_mq_debug.z64" should be built and the following text should be printed:
```bash
zelda_ocarina_mq_dbg.z64: OK
```
If you instead see the following:
```bash
zelda_ocarina_mq_dbg.z64: FAILED
md5sum: WARNING: 1 computed checksum did NOT match
```
This means that the built ROM isn't the same as the base one, so something went wrong or some part of the code doesn't match.
2021-05-03 17:37:54 +00:00
**NOTE:** to speed up the build, you can either:
2021-12-06 17:53:32 +00:00
2021-05-03 17:37:54 +00:00
* pass `-jN` to `make setup` and `make` , where N is the number of threads to use in the build. The generally-accepted wisdom is to use the number of virtual cores your computer has.
* pass `-j` to `make setup` and `make` , to use as many threads as possible, but beware that this can use too much memory on lower-end systems.
Both of these have 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 `-j` or `-jN` ).
2020-05-01 01:47:42 +00:00
## Contributing
2020-04-17 22:05:21 +00:00
2020-05-01 01:47:42 +00:00
All contributions are welcome. This is a group effort, and even small contributions can make a difference.
Some tasks also don't require much knowledge to get started.
2020-04-17 22:05:21 +00:00
2020-05-01 01:47:42 +00:00
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 and other decompilation projects.