Skip to content
/ mk64 Public
forked from n64decomp/mk64

A speedy Mario Kart 64 decompilation, brought to you by the cousin of a tame racing driver.

Notifications You must be signed in to change notification settings

coco875/mk64

This branch is 10 commits ahead of, 3 commits behind n64decomp/mk64:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3c07bf1 · Feb 4, 2025
Oct 22, 2024
Feb 4, 2025
Jan 21, 2025
Sep 15, 2024
Feb 4, 2025
Aug 21, 2024
Jan 1, 2024
Jan 4, 2025
Jan 21, 2025
Oct 20, 2024
Feb 4, 2025
Oct 22, 2024
Jun 15, 2024
Aug 24, 2024
Aug 24, 2024
May 14, 2022
Jun 16, 2022
Sep 15, 2024
Sep 15, 2024
Sep 4, 2024
Apr 13, 2024
Jan 4, 2025
Oct 28, 2023
Aug 24, 2024
Sep 20, 2023
Feb 4, 2025
Apr 10, 2024
Aug 26, 2023
Nov 5, 2023
Feb 22, 2024
Aug 16, 2024
Nov 21, 2022
Jan 4, 2025
Oct 20, 2023
Oct 20, 2023
Jan 4, 2025
Oct 15, 2020
Nov 21, 2022
Mar 25, 2024
Apr 13, 2024
Jan 21, 2024
Oct 28, 2023
Jan 4, 2025
Aug 23, 2024
Sep 15, 2024
Aug 23, 2024
Sep 15, 2024

Repository files navigation

Mario Kart 64

This work-in-progress decompilation of Mario Kart 64 pursues historical and educational elements within the game found via taking it apart and putting it back together. Inspiration to do so not only emanates from the game's hardware and technology but also its immensely positive effects on the cultures and families of nearly every nationality.

This repository does not contain assets. Compiling requires asset extraction from a prior copy of the game.

It supports and builds the following versions:

ROM Output Revision SHA-1 Checksum
mk64.us.z64 USA 579c48e211ae952530ffc8738709f078d5dd215e
mk64.eu-1.0.z64 EUR 1.0 a729039453210b84f17019dda3f248d5888f7690
mk64.eu-final.z64 EUR 1.1 f6b5f519dd57ea59e9f013cc64816e9d273b2329

Linux Compile

Progress

Total progress consists of all code segments together.

Game code progress consists of main, ending and racing.

Build Status Build Status

Build Status Build Status Build Status

  • Build Status
  • Build Status
  • Build Status
  • Build Status
  • Build Status

Quick Start

git submodule update --init --recursive

Extract assets

make assets -j
make -j

Building

Build instructions located in the API docs
See also, the comprehensive API and documentation which includes an overview of the code-base while also discussing significant concepts, features, and modding.

Current State

The code-base may change significanty overtime as naming and documentation continues. The code-base is shiftable.

Some menu textures are compressed using a format called tkmk00. A byte-matching compressor/decompressor does not yet exist.

Project Structure

mk64
├── asm: Handwritten assembly code, rom header and boot
│   ├── non_matchings: Assembly for non-matching sections
│   └── os: Libultra handwritten assembly code
├── assets: Textures
├── courses: Course data, geography, display lists and staff ghosts
├── build: Output directory
├── data: Misc data, text, audio banks, and instrument sets
├── docs: Build guides
├── include: Header files
├── music: Sequences
├── src: C source code for the game
|   ├── actors: Individual actors split out from other files
│   ├── audio: Sample tables and audio code
│   ├── data: Misc data referenced in other C files
|   ├── debug: Custom debug code
|   ├── ending: Podium ceremony and credits code
│   ├── os: Libultra C code
|   └── racing: Race and game engine code
├── textures: Texture data, bitmaps
|   ├── common: Textures common to many courses
|   ├── courses: Course specific textures
|   ├── crash screen: Crash screen font image
│   ├── raw: Raw textures
│   ├── standalone: Whole textures
|   ├── startup_logo: Reflection map
|   └── trophy: Ceremony cutscene podium and trophy textures
└── tools: build tools

Documentation

Documentation available online at https://n64decomp.github.io/mk64/.

Documentation generated using Doxygen. Run make doc to test locally. Documentation resides in docs/html. Open index.html to view the site.

Contributing

Pull requests are welcome. For major changes, please discuss in the Discord.

Run make format to ensure it meets the project's coding standards. If code needs to avoid formatting place // clang-format off before the code and // clang-format on after.

Official Discord: discord.gg/DuYH3Fh

About

A speedy Mario Kart 64 decompilation, brought to you by the cousin of a tame racing driver.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 87.3%
  • Assembly 8.6%
  • Makefile 2.9%
  • C++ 0.6%
  • Python 0.6%
  • Shell 0.0%