Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seedhartha/reone
Game engine capable of running KotOR and TSL
https://github.com/seedhartha/reone
c-plus-plus game-engine kotor kotor2
Last synced: about 1 month ago
JSON representation
Game engine capable of running KotOR and TSL
- Host: GitHub
- URL: https://github.com/seedhartha/reone
- Owner: seedhartha
- License: gpl-3.0
- Created: 2020-06-27T12:36:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-28T21:01:21.000Z (5 months ago)
- Last Synced: 2024-07-29T22:49:19.536Z (5 months ago)
- Topics: c-plus-plus, game-engine, kotor, kotor2
- Language: C++
- Homepage:
- Size: 26.2 MB
- Stars: 265
- Watchers: 30
- Forks: 23
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
- awesome - seedhartha/reone - Game engine capable of running KotOR and TSL (C++)
- open-source-games - [source
README
# reone
[![Build Status](https://github.com/seedhartha/reone/actions/workflows/build-test-linux.yml/badge.svg)](https://github.com/seedhartha/reone/actions/workflows/build-test-linux.yml)
reone is a free and open source game engine, capable of running Star Wars: Knights of the Old Republic and its sequel, The Sith Lords. We aim to provide an engine that can be used to:
- Play KotOR and TSL from beginning to end
- Create mods that drastically change the gameplay or improve the visualsThe project is at a mid-stage of development: most engine subsystems have already been implemented, while game mechanics are actively being worked on. See project [roadmap](https://github.com/seedhartha/reone/wiki/Roadmap) for our long-term plans.
## Legal
reone adheres to clean-room design principles. We do not condone the use of decompilation - instead, we rely on publicly available information (e.g., file format specification provided by BioWare) and our own observations of the game and its resources.
We do not distribute copyrighted materials - instead, we require our users and developers to obtain a legal copy of the game.
Lastly, reone is explicitly a non-commercial project: we do not seek to gain profit, neither through donations nor other means.
## Installation
To install reone, either download a prebuilt executable from the [releases](https://github.com/seedhartha/reone/releases) page, or build it from source. Building it requires a modern C++ compiler and a set of free and open source libraries. See detailed instructions for your operating system [here](https://github.com/seedhartha/reone/wiki/Installation).
reone is being developed and tested against unmodded Steam versions of both KotOR and TSL. Compatibility with any other version is not guaranteed, although GOG and retail versions should work with no or minor modification.
Install [Visual C++ Redistributable](https://aka.ms/vs/16/release/vc_redist.x64.exe) to run prebuilt Windows executables.
## Usage
Use launcher application to choose a game directory and launch reone. Alternatively, reone can be started from the command line: `reone --game GAME_DIR`
## Configuration
reone can be configured via the launcher, the configuration file or the command line.
Configuration file, named "reone.cfg", must be located in the current directory. See complete list of program options [here](https://github.com/seedhartha/reone/wiki/Program-options).
## Contributing
reone is open to potential contributors. Contact us on [this](https://discord.gg/6sqSyfn8Jp) Discord server if you're interested in taking a particular task from the [roadmap](https://github.com/seedhartha/reone/wiki/Roadmap).
Developer resources:
- [Project Architecture](https://github.com/seedhartha/reone/wiki/Project-Architecture)
- [Code Style](https://github.com/seedhartha/reone/wiki/Code-Style)
- [Testing](https://github.com/seedhartha/reone/wiki/Testing)
- [Tooling](https://github.com/seedhartha/reone/wiki/Tooling)
- [Knowledge Database](https://github.com/seedhartha/reone/wiki/Knowledge-Database)## Similar Projects
reone is not the only project aiming to reimplement the Odyssey engine - there are at least four alternatives:
- [xoreos](https://github.com/xoreos/xoreos) - a reimplementation of BioWare's Aurora engine and its derivatives
- [KotOR.js](https://github.com/KobaltBlu/KotOR.js) - a remake of the Odyssey engine written in JavaScript
- [The Northern Lights](https://github.com/lachjames/NorthernLights) - a Unity-based reimplementation and a level editor
- [KotOR-Unity](https://github.com/rwc4301/KotOR-Unity) - another Unity-based reimplementationIn contrast, this is what reone offers:
- KotOR and TSL only, unlike xoreos, which aims to reimplement all of Aurora engine games - codebase is lighter and development is more focused
- Written in C++ - industry standard language, faster than the JavaScript implementation
- Custom game engine based on SDL 2 and OpenGL 3.3 - does not depend on Unity, which is a proprietary software with a learning curve of itself