2019-08-25 00:46:40 -04:00
|
|
|
# Super Mario 64
|
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
- This repo contains a full decompilation of Super Mario 64 (J), (U), and (E) with minor exceptions in the audio subsystem.
|
|
|
|
- Naming and documentation of the source code and data structures are in progress.
|
|
|
|
- Efforts to decompile the Shindou ROM steadily advance toward a matching build.
|
2019-08-25 00:46:40 -04:00
|
|
|
|
|
|
|
It builds the following ROMs:
|
|
|
|
|
|
|
|
* sm64.jp.z64 `sha1: 8a20a5c83d6ceb0f0506cfc9fa20d8f438cafe51`
|
|
|
|
* sm64.us.z64 `sha1: 9bef1128717f958171a4afac3ed78ee2bb4e86ce`
|
2020-03-01 22:42:52 -05:00
|
|
|
* sm64.eu.z64 `sha1: 4ac5721683d0e0b6bbb561b58a71740845dceea9`
|
2019-08-25 00:46:40 -04:00
|
|
|
|
|
|
|
This repo does not include all assets necessary for compiling the ROMs.
|
2020-06-02 12:44:34 -04:00
|
|
|
A prior copy of the game is required to extract the assets.
|
2019-08-25 00:46:40 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
## Quick Start (for Ubuntu)
|
2020-03-31 23:11:48 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
1. Install prerequisites: `sudo apt install -y build-essential git binutils-mips-linux-gnu python3 libaudiofile-dev`
|
|
|
|
2. Clone the repo from within Linux: `git clone https://github.com/n64decomp/sm64.git`
|
|
|
|
3. Place a Super Mario 64 ROM called `baserom.<VERSION>.z64` into the project folder for asset extraction, where `VERSION` can be `us`, `jp`, or `eu`.
|
|
|
|
4. Run `make` to build. Qualify the version through `make VERSION=<VERSION>`. Add `-j4` to improve build speed (hardware dependent).
|
2020-03-31 23:11:48 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
Ensure the repo path length does not exceed 255 characters. Long path names result in build errors.
|
2020-03-31 23:11:48 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
## Installation
|
2020-03-31 23:11:48 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
### Windows
|
2020-03-31 23:11:48 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
Install WSL and a distro of your choice following
|
|
|
|
[Windows Subsystem for Linux Installation Guide for Windows 10.](https://docs.microsoft.com/en-us/windows/wsl/install-win10)
|
|
|
|
We recommend either Debian or Ubuntu 18.04 Linux distributions under WSL.
|
|
|
|
Note: WSL1 does not currently support Ubuntu 20.04.
|
2020-03-31 23:11:48 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
Next, clone the SM64 repo from within the Linux shell:
|
|
|
|
`git clone https://github.com/n64decomp/sm64.git`
|
2020-03-31 23:11:48 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
Then continue following the directions in the [Linux](#linux) installation section below.
|
2020-03-31 23:11:48 -04:00
|
|
|
|
2019-08-25 00:46:40 -04:00
|
|
|
### Linux
|
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
There are 3 steps to set up a working build.
|
2019-08-25 00:46:40 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
#### Step 1: Install dependencies
|
2019-09-01 15:50:50 -04:00
|
|
|
|
|
|
|
The build system has the following package requirements:
|
2020-06-02 12:44:34 -04:00
|
|
|
* binutils-mips
|
2019-09-01 15:50:50 -04:00
|
|
|
* python3 >= 3.6
|
|
|
|
* libaudiofile
|
|
|
|
* qemu-irix
|
2019-08-25 00:46:40 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
Dependency installation instructions for common Linux distros are provided below:
|
|
|
|
|
|
|
|
##### Debian / Ubuntu
|
|
|
|
To install build dependencies:
|
2019-09-01 15:50:50 -04:00
|
|
|
```
|
2020-06-02 12:44:34 -04:00
|
|
|
sudo apt install -y build-essential git binutils-mips-linux-gnu python3 libaudiofile-dev
|
2019-09-01 15:50:50 -04:00
|
|
|
```
|
2019-08-25 00:46:40 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
Download latest package from [qemu-irix Releases.](https://github.com/n64decomp/qemu-irix/releases)
|
|
|
|
|
|
|
|
Install this package with:
|
2019-09-01 15:50:50 -04:00
|
|
|
```
|
2019-10-05 15:08:05 -04:00
|
|
|
sudo dpkg -i qemu-irix-2.11.0-2169-g32ab296eef_amd64.deb
|
2019-09-01 15:50:50 -04:00
|
|
|
```
|
2019-08-25 00:46:40 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
##### Arch Linux
|
|
|
|
To install build dependencies:
|
2019-08-25 00:46:40 -04:00
|
|
|
```
|
2019-10-05 15:08:05 -04:00
|
|
|
sudo pacman -S base-devel python audiofile
|
2019-08-25 00:46:40 -04:00
|
|
|
```
|
2019-10-05 15:08:05 -04:00
|
|
|
Install the following AUR packages:
|
|
|
|
* [mips64-elf-binutils](https://aur.archlinux.org/packages/mips64-elf-binutils) (AUR)
|
|
|
|
* [qemu-irix-git](https://aur.archlinux.org/packages/qemu-irix-git) (AUR)
|
2019-08-25 00:46:40 -04:00
|
|
|
|
2019-09-01 15:50:50 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
##### Other Linux distributions
|
|
|
|
|
|
|
|
Most modern Linux distributions should have equivalent packages to the other two listed above.
|
|
|
|
You may have to use a different version of GNU binutils. Listed below are fully compatible binutils
|
|
|
|
distributions with support in the makefile, and examples of distros that offer them:
|
|
|
|
|
|
|
|
* `mips64-elf-` (Arch AUR)
|
|
|
|
* `mips-linux-gnu-` (Ubuntu and other Debian-based distros)
|
|
|
|
* `mips64-linux-gnu-` (RHEL/CentOS/Fedora)
|
|
|
|
|
|
|
|
You may also use [Docker](#docker-installation) to handle installing an image with minimal dependencies.
|
|
|
|
|
|
|
|
#### Step 2: Copy baserom(s) for asset extraction
|
|
|
|
|
|
|
|
For each version (jp/us/eu) for which you want to build a ROM, put an existing ROM at
|
|
|
|
`./baserom.<VERSION>.z64` for asset extraction.
|
|
|
|
|
|
|
|
##### Step 3: Build the ROM
|
|
|
|
|
|
|
|
Run `make` to build the ROM (defaults to `VERSION=us`).
|
|
|
|
Other examples:
|
2019-08-25 00:46:40 -04:00
|
|
|
```
|
|
|
|
make VERSION=jp -j4 # build (J) version instead with 4 jobs
|
2020-06-02 12:44:34 -04:00
|
|
|
make VERSION=eu COMPARE=0 # build (EU) version but do not compare ROM hashes
|
2019-08-25 02:41:24 -04:00
|
|
|
```
|
2019-08-25 00:46:40 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
Resulting artifacts can be found in the `build` directory.
|
2019-08-25 00:46:40 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
The full list of configurable variables are listed below, with the default being the first listed:
|
|
|
|
|
|
|
|
* ``VERSION``: ``us``, ``jp``, ``eu``, ``sh`` (WIP)
|
|
|
|
* ``GRUCODE``: ``f3d_old``, ``f3d_new``, ``f3dex``, ``f3dex2``, ``f3dzex``
|
|
|
|
* ``COMPARE``: ``1`` (compare ROM hash), ``0`` (do not compare ROM hash)
|
|
|
|
* ``NON_MATCHING``: Use functionally equivalent C implementations for non-matchings. Also will avoid instances of undefined behavior.
|
|
|
|
* ``CROSS``: Cross-compiler tool prefix (Example: ``mips64-elf-``).
|
|
|
|
* ``QEMU_IRIX``: Path to a ``qemu-irix`` binary.
|
|
|
|
|
|
|
|
### macOS
|
|
|
|
|
|
|
|
Installing Docker is the recommended avenue for macOS users. This project does not support macOS natively due to lack of macOS host support.
|
|
|
|
|
|
|
|
### Docker Installation
|
|
|
|
|
|
|
|
#### Create Docker image
|
|
|
|
|
|
|
|
Create the docker image with `docker build -t sm64`.
|
2019-09-01 15:50:50 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
#### Build
|
2019-09-01 15:50:50 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
To build, mount the local filesystem into the Docker container and build the ROM with `docker run`.
|
2019-09-01 15:50:50 -04:00
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
##### macOS example for (U):
|
|
|
|
```
|
|
|
|
docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64 make VERSION=us -j4
|
|
|
|
```
|
|
|
|
|
|
|
|
##### Linux example for (U):
|
|
|
|
For a Linux host, Docker needs to be instructed which user should own the output files:
|
|
|
|
```
|
|
|
|
docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 --user $UID:$UID sm64 make VERSION=us -j4
|
|
|
|
```
|
|
|
|
|
|
|
|
Resulting artifacts can be found in the `build` directory.
|
2019-08-25 00:46:40 -04:00
|
|
|
|
2019-10-05 15:08:05 -04:00
|
|
|
## Project Structure
|
|
|
|
|
|
|
|
```
|
|
|
|
sm64
|
|
|
|
├── actors: object behaviors, geo layout, and display lists
|
2019-11-03 14:36:27 -05:00
|
|
|
├── asm: handwritten assembly code, rom header
|
2020-06-02 12:44:34 -04:00
|
|
|
│ └── non_matchings: asm for non-matching sections
|
2019-10-05 15:08:05 -04:00
|
|
|
├── assets: animation and demo data
|
2020-06-02 12:44:34 -04:00
|
|
|
│ ├── anims: animation data
|
|
|
|
│ └── demos: demo data
|
|
|
|
├── bin: C files for ordering display lists and textures
|
2019-10-05 15:08:05 -04:00
|
|
|
├── build: output directory
|
|
|
|
├── data: behavior scripts, misc. data
|
|
|
|
├── doxygen: documentation infrastructure
|
|
|
|
├── enhancements: example source modifications
|
|
|
|
├── include: header files
|
|
|
|
├── levels: level scripts, geo layout, and display lists
|
|
|
|
├── lib: SDK library code
|
2020-06-02 12:44:34 -04:00
|
|
|
├── rsp: audio and Fast3D RSP assembly code
|
2019-10-05 15:08:05 -04:00
|
|
|
├── sound: sequences, sound samples, and sound banks
|
|
|
|
├── src: C source code for game
|
2020-06-02 12:44:34 -04:00
|
|
|
│ ├── audio: audio code
|
|
|
|
│ ├── buffers: stacks, heaps, and task buffers
|
|
|
|
│ ├── engine: script processing engines and utils
|
|
|
|
│ ├── game: behaviors and rest of game source
|
|
|
|
│ ├── goddard: Mario intro screen
|
|
|
|
│ └── menu: title screen and file, act, and debug level selection menus
|
2019-10-05 15:08:05 -04:00
|
|
|
├── text: dialog, level names, act names
|
|
|
|
├── textures: skybox and generic texture data
|
|
|
|
└── tools: build tools
|
|
|
|
```
|
|
|
|
|
2019-08-25 00:46:40 -04:00
|
|
|
## Contributing
|
|
|
|
|
|
|
|
Pull requests are welcome. For major changes, please open an issue first to
|
|
|
|
discuss what you would like to change.
|
|
|
|
|
2020-06-02 12:44:34 -04:00
|
|
|
Run `clang-format` on your code to ensure it meets the project's coding standards.
|
2019-08-25 00:46:40 -04:00
|
|
|
|
2020-05-13 18:11:50 -04:00
|
|
|
Official Discord: https://discord.gg/DuYH3Fh
|