Files

92 lines
4.9 KiB
Markdown
Raw Permalink Normal View History

2025-06-19 21:08:30 -06:00
![Spaghetti Kart](docs/spaghettigithublight.png#gh-light-mode-only)
![Spaghetti Kart](docs/spaghettigithubnight.png#gh-dark-mode-only)
2023-10-14 12:22:42 -06:00
2025-06-23 07:03:01 -06:00
## Help Wanted!
This project is looking for a C or C++ coder interested in making a couple scrollable menus that can have lots of items in it. As a method to display custom content does not exist. A tick/render system for custom menus already exists. So just someone willing to build out the menu.
2025-02-08 10:46:29 -06:00
## Discord
2025-02-08 10:46:29 -06:00
Official Discord: https://discord.com/invite/shipofharkinian
2024-04-13 02:54:59 +02:00
2025-02-08 10:46:29 -06:00
If you're having any trouble after reading through this `README`, feel free ask for help in the SpaghettiKart Support text channels. Please keep in mind that we do not condone piracy.
2025-02-08 10:46:29 -06:00
# Quick Start
2025-02-08 10:46:29 -06:00
SpaghettiKart does not include any copyrighted assets. You are required to provide a supported copy of the game.
2023-10-14 12:16:58 -06:00
2025-02-08 10:46:29 -06:00
### 1. Verify your ROM dump
2025-06-19 17:34:58 -05:00
The US ROM is the only supported version. You can verify you have dumped a supported copy of the game by using the SHA-1 File Checksum Online at https://www.romhacking.net/hash/. The hash for a US ROM is SHA-1: 579C48E211AE952530FFC8738709F078D5DD215E.
2025-02-08 10:46:29 -06:00
### 2. Verify your ROM is in .z64 format
Your ROM needs to be in .z64 format. If it's in .n64 format, use the following to convert it to a .z64: https://hack64.net/tools/swapper.php
2021-12-18 04:03:34 -07:00
2025-02-08 10:46:29 -06:00
### 2. Download SpaghettiKart from [Releases](https://github.com/HarbourMasters/SpaghettiKart/releases)
2020-10-14 21:13:33 -07:00
2025-02-08 10:46:29 -06:00
### 3. Generating the O2R from the ROM
#### Windows
* Extract every file from the zip into a folder of your choosing.
2025-06-19 17:34:58 -05:00
* Run "Spaghettify.exe" and select your US ROM.
2020-10-14 21:13:33 -07:00
2025-06-19 17:34:58 -05:00
#### Linux
2025-02-08 10:46:29 -06:00
* Extract every file from the zip into a folder of your choosing.
* Ensure `zenity` or `kdialog` package is installed.
2025-06-19 17:34:58 -05:00
* Run "spaghetti.appimage" and select your US ROM. You may have to chmod +x the appimage via terminal.
#### Nintendo Switch
* Run one of the PC releases to generate an `mk64.o2r` file. After launching the game on PC, you will be able to find these files in the same directory as `Spaghettify.exe` or `spaghetti.appimage`.
* Copy the files to your sd card
2023-10-19 23:37:21 -06:00
2025-02-08 10:46:29 -06:00
### 4. Play!
2025-06-19 17:34:58 -05:00
* Launch `Spaghettify.exe`
2025-02-08 10:46:29 -06:00
Congratulations, you are now sailing with SpaghettiKart! Have fun!
2020-10-14 21:13:33 -07:00
2025-02-08 10:46:29 -06:00
# Configuration
2021-02-28 00:44:26 -07:00
2025-06-30 14:27:06 -04:00
### Default controls configuration
| N64 | A | B | L | R | Z | Start | Analogue stick | C buttons | D-Pad |
| - | - | - | - | - | - | - | - | - | - |
| Keyboard | Shift | Ctrl | Q | Space | Z | Enter | Arrow keys | TGFH (↑ ↓ ← →) | Num 8 2 4 6 |
| SDL Gamepad | A | X | LB | RB | LT | Start | L-Stick | R-Stick Up, B, Y, R-Stick Right (↑ ↓ ← →) | D-Pad |
2020-10-14 21:13:33 -07:00
2025-02-08 10:46:29 -06:00
### Other shortcuts
| Keys | Action |
| - | - |
| F11 | Fullscreen |
| Tab | Toggle Alternate assets |
| Ctrl+R | Reset |
2025-06-21 14:49:46 -05:00
| Esc | Settings |
2025-02-08 10:46:29 -06:00
### Graphics Backends
Currently, there are three rendering APIs supported: DirectX11 (Windows), OpenGL (all platforms), and Metal (macOS). You can change which API to use in the `Settings` menu of the menubar, which requires a restart. If you're having an issue with crashing, you can change the API in the `spaghettify.cfg.json` file by finding the line `"Backend":{`... and changing the `id` value to `3` and set the `Name` to `OpenGL`. `DirectX 11` with id `2` is the default on Windows. `Metal` with id `4` is the default on macOS.
2021-02-28 22:54:49 -07:00
2025-02-08 10:46:29 -06:00
# Custom Assets
2025-06-19 17:34:58 -05:00
Custom assets are packed in `.o2r` or stored `.zip` files. To use custom assets, place them in the `mods` folder.
2021-02-28 22:54:49 -07:00
2025-06-19 17:34:58 -05:00
If you're interested in creating and/or packing your own custom asset `.o2r` files, check out the following tools:
* [**retro - O2R generator**](https://github.com/HarbourMasters64/retro)
* [**fast64 - Blender plugin**](https://github.com/HarbourMasters/fast64)
**Note that .otr archives are not supported in SpaghettiKart!**
2023-10-14 05:04:33 +02:00
2025-02-08 10:46:29 -06:00
# Development
### Building
2024-01-19 17:23:52 -07:00
2025-02-08 10:46:29 -06:00
If you want to manually compile SpaghettiKart, please consult the [building instructions](https://github.com/HarbourMasters/SpaghettiKart/blob/main/docs/BUILDING.md).
2023-10-14 05:04:33 +02:00
2025-02-08 10:46:29 -06:00
### Playtesting
If you want to playtest a continuous integration build, you can find them at the links below. Keep in mind that these are for playtesting only, and you will likely encounter bugs and possibly crashes.
2020-10-14 21:13:33 -07:00
2025-06-30 23:30:31 +00:00
* [Windows](https://nightly.link/HarbourMasters/SpaghettiKart/workflows/main/main/spaghetti-windows.zip?status=completed)
2025-07-19 14:36:19 +02:00
* [Linux](https://nightly.link/HarbourMasters/SpaghettiKart/workflows/main/main/spaghetti-linux-x64.zip?status=completed)
2025-06-30 23:30:31 +00:00
* [macOS](https://nightly.link/HarbourMasters/SpaghettiKart/workflows/main/main/spaghetti-mac-x64.zip?status=completed)
* [Switch](https://nightly.link/HarbourMasters/SpaghettiKart/workflows/main/main/Spaghettify-switch.zip?status=completed)
2021-02-28 00:44:26 -07:00
2025-06-19 21:08:30 -06:00
Maintainers: [MegaMech](https://www.github.com/MegaMech), [Coco](https://www.github.com/coco875), [Kirito](https://github.com/KiritoDv)
2025-02-08 10:46:29 -06:00
<a href="https://github.com/Kenix3/libultraship/">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="./docs/poweredbylus.darkmode.png">
<img alt="Powered by libultraship" src="./docs/poweredbylus.lightmode.png">
</picture>
2025-06-19 17:34:58 -05:00
</a>