A demake of Portal for the Nintendo 64
Go to file
Matt Penny 0fd1954898 Do not hard code build output directory name
The game can now be built in any directory
2024-11-20 23:38:24 -05:00
.github/ISSUE_TEMPLATE Update bug_report.md 2023-11-24 19:11:32 -06:00
asm Do not hard code build output directory name 2024-11-20 23:38:24 -05:00
assets Do not hard code build output directory name 2024-11-20 23:38:24 -05:00
cmake Remove Makefile and update build docs 2024-11-16 19:52:30 -05:00
documentation Do not hard code build output directory name 2024-11-20 23:38:24 -05:00
linker CMake cleanup 2024-11-18 21:56:20 -05:00
skeletool64 Use more standard luac file extension when building Skeletool lua files 2024-11-14 23:50:20 -05:00
src Do not hard code build output directory name 2024-11-20 23:38:24 -05:00
tools Do not hard code build output directory name 2024-11-20 23:38:24 -05:00
vpk Remove Makefile and update build docs 2024-11-16 19:52:30 -05:00
.dockerignore Clean up skeletool CMake integration, and use consistent naming 2024-10-21 23:29:43 -04:00
.gitattributes Support building from source code archive (#85) 2024-08-26 16:36:12 -04:00
.gitignore Remove Makefile and update build docs 2024-11-16 19:52:30 -05:00
CMakeLists.txt Do not hard code build output directory name 2024-11-20 23:38:24 -05:00
Dockerfile Remove Makefile and update build docs 2024-11-16 19:52:30 -05:00
LICENSE Adding a License 2023-04-02 13:58:26 -05:00
README.md Remove Makefile and update build docs 2024-11-16 19:52:30 -05:00
version.txt Support building from source code archive (#85) 2024-08-26 16:36:12 -04:00

Portal64: Still Alive

A demake (remake for an older platform) of Portal for the Nintendo 64. Originally created by James Lambert.

The original repository was taken down by James at Valve's request, due to the build requirement on Nintendo's proprietary libultra and its consequent inclusion in ROM files.

The original branch contains the version history of the original repository. Active development occurs in the master branch.

The main goals of this fork are:

  1. Remove proprietary code requirement (see N64 Libraries)
  2. Finish development of the game (see Development Progress)

We do what we must because we can.

Disclaimer

This project is not affiliated with Nintendo or Valve.

This repository contains no material owned by Nintendo. However, Nintendo's tools are currently required to build the game. No form of compiled ROM will be distributed while this dependency is required since the built game would contain Nintendo's intellectual property. One goal of this project is to remove the requirement on proprietary code.

Game assets from Portal are sourced from the original game's files, which must be supplied separately at build time. In other words, this repository cannot be used to compile the game without legally owning Portal and providing its files. Legal ownership of Portal will be required regardless of tool or library changes.

Overview

This project aims to reproduce Valve's original Portal, playable on the N64.

Because this demake has been in development for some time, it has made significant progress in both gameplay systems and fidelity including:

  • Twelve+ test chambers completed
  • Fully functioning portals, and gun
  • Fully functioning physics engine
  • Lighting system
  • Main/pause menus
  • Sound effects/dialogue
  • Cutscenes
  • Multi-language subtitles and audio dialogue
  • Eye-Candy (Reflections, ...)
  • Much more!

This is a community driven project that welcomes any and all game testers and or Contributors.

How to build

Get the Code

First, clone the repository or download a source code archive.

git clone https://github.com/mwpenny/portal64-still-alive.git portal64

Provide Game Files

You must provide your own legally obtained Portal game files so the game assets can be extracted and used. Follow the instructions at vpk/README.md.

Install Dependencies

Next, install the dependencies. There are two supported ways to do this:

  • Use Docker. This is recommended if you don't want to make system-wide changes or are unfamiliar with Linux.
  • Install natively. This is also applicable if using a virtual machine or Windows Subsystem for Linux (WSL).

Build the Game

With everything set up, follow the instructions at Building the Game.