This is the code for a work-in-progress N64 port of my Asteroids clone.
The general approach that I've taken is to gradually refactor the code so that platform-specific code is well encapsulated, before back-porting those changes to the original codebase. My plan is to eventually merge the two codebases, and build both versions from the same set of source and data files.
You can get the latest build here.
The code is frequently tested using cen64. It has also been tested using Sixtyforce on macOS and Project64 on Windows.
Here's the game running in cen64:
The ROM can simply be copied to a flash cart such as the EverDrive-64. I've tested this using an X7 cart, however it should work on any flash cart.
The game is compatible with Rumble Paks and Controller Paks.
When a Rumble Pak is inserted, it will be activated by ship explosions.
When an Controller Pak is inserted, high scores will be saved into a file on the Controller Pak.
This code has been written to compile using the original Nintendo 64 SDK on Windows (or Wine), and also using CrashOverride95's Modern SDK which is Linux port of the SDK.
To compile on Windows or Wine, you can run compile.bat
. A script for running via wine has also been included in build.sh
.
To compile on Linux using the Modern SDK, simply run make
.
The ROM can also be loaded via USB.
This repo contains a heavily modified version of the USB and Debug Library from UNFLoader (see usb.c and debug.c). I have removed code that was not relevant to this project, and modified some function signatures to better fit with the cross-platform needs of this project.
Even with the changes, you can still load the ROM using the original UNFLoader
executable:
UNFLoader -d -r asteroids.n64
The -d
flag enables debug mode, and will show the output of debug_printf
calls from the ROM in your terminal.
Before I discovered UNFLoader, I used a small C program called loader64. This was based on code written by James Friend, who has made a number of great contributions to the N64 Homebrew community.
This code has been released under the MIT License. See the LICENSE file for more information.
Game assets are under copyright by Atari.
The graphics and audio that have been reproduced here are all used in good faith. The clone is intentionally incomplete, so as to not detract from the value of any Atari releases of the game.