reone/README.md

59 lines
3.7 KiB
Markdown
Raw Normal View History

2020-08-02 15:47:59 +00:00
# reone
2021-02-26 13:45:46 +00:00
[![Build Status](https://github.com/seedhartha/reone/actions/workflows/cmake.yml/badge.svg)](https://github.com/seedhartha/reone/actions/workflows/cmake.yml)
[![Coverity Scan Build Status](https://scan.coverity.com/projects/21827/badge.svg)](https://scan.coverity.com/projects/seedhartha-reone)
2021-02-25 12:29:17 +00:00
2020-09-22 10:25:25 +00:00
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 is flexible and modern, and can be used to:
2020-12-31 04:52:40 +00:00
- Play KotOR and TSL from beginning to end
- Create mods that drastically change the gameplay or improve the visuals
2020-12-11 01:35:48 +00:00
The project is in the early stages of development at this point: resource management, scene management, rendering, audio, GUI and scripting subsystems are already implemented, while game mechanics are actively being worked on. See project [gallery](https://github.com/seedhartha/reone/wiki/Gallery) and [roadmap](https://github.com/seedhartha/reone/wiki/Roadmap) in the Wiki.
2020-08-02 15:47:59 +00:00
2020-12-10 18:52:06 +00:00
## Contributing
reone is open to potential contributors. Contact me at <vkremianskii@gmail.com> if you're interested in taking a particular task from the [roadmap](https://github.com/seedhartha/reone/wiki/Roadmap).
2020-12-31 04:52:40 +00:00
Developer resources:
- [Project Architecture](https://github.com/seedhartha/reone/wiki/Project-Architecture)
- [Code Style](https://github.com/seedhartha/reone/wiki/Code-Style)
- [Tooling](https://github.com/seedhartha/reone/wiki/Tooling)
- [Modding](https://github.com/seedhartha/reone/wiki/Modding)
2020-12-31 04:52:40 +00:00
- [Knowledge Database](https://github.com/seedhartha/reone/wiki/Knowledge-Database)
2020-12-10 18:52:06 +00:00
2020-08-02 15:47:59 +00:00
## Installation
Those wishing to test reone, can 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).
2020-12-31 11:49:08 +00:00
reone must only be used to run a legal copy of the game - both KotOR and TSL can be obtained from Steam or GOG.com. Keep in mind that mod compatibility is not being tested and thus cannot be guaranteed.
2020-08-02 15:47:59 +00:00
2020-09-24 11:05:41 +00:00
Install [Visual C++ Redistributable](https://aka.ms/vs/16/release/vc_redist.x64.exe) to run prebuilt Windows executables.
2020-09-20 10:40:46 +00:00
2020-08-02 15:47:59 +00:00
## Usage
Launch reone either using the launcher application, or from the command line:
`reone --game C:\swkotor`
2020-08-02 15:47:59 +00:00
## Configuration
reone can be configured from either the launcher, the configuration file, or the command line.
Configuration file, named "reone.cfg", must be located in the current directory. See a complete list of program options [here](https://github.com/seedhartha/reone/wiki/Program-options).
2020-10-10 03:48:29 +00:00
## Similar Projects
reone is not the only project aiming to reimplement the Odyssey engine - there are at least four alternatives:
2020-10-10 03:48:29 +00:00
2020-12-31 04:52:40 +00:00
- [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 reimplementation.
In contrast, this is what reone offers:
2020-12-31 11:49:08 +00:00
- KotOR and TSL only, unlike xoreos, which aims to reimplement all of Aurora engine games - codebase is lighter and development is more focused.
2020-12-31 04:52:40 +00:00
- 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.