Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Openrct2 | 11,911 | 21 hours ago | 1,534 | gpl-3.0 | C++ | |||||
An open source re-implementation of RollerCoaster Tycoon 2 🎢 | ||||||||||
Et | 7,127 | 6 days ago | 54 | mit | C# | |||||
Unity3D Client And C# Server Framework | ||||||||||
Cuberite | 4,604 | 2 days ago | 560 | other | C++ | |||||
A lightweight, fast and extensible game server for Minecraft | ||||||||||
Azerothcore Wotlk | 3,946 | 7 hours ago | 1,782 | agpl-3.0 | C++ | |||||
Complete Open Source and Modular solution for MMO | ||||||||||
Cellnet | 3,878 | 7 | 6 months ago | 3 | June 12, 2019 | 8 | mit | Go | ||
High performance, simple, extensible golang open source network library | ||||||||||
Linuxgsm | 3,725 | a day ago | 289 | mit | Shell | |||||
The command-line tool for quick, simple deployment and management of Linux dedicated game servers. | ||||||||||
Screeps | 2,663 | 4 | 7 | 6 months ago | 154 | July 28, 2021 | 53 | isc | JavaScript | |
A standalone server for programming game Screeps | ||||||||||
Nano | 2,362 | 3 | 15 days ago | 3 | July 05, 2021 | 26 | mit | Go | ||
Lightweight, facility, high performance golang based game server framework | ||||||||||
Impostor | 2,207 | 5 | 9 days ago | 29 | August 08, 2022 | 11 | gpl-3.0 | C# | ||
Impostor - An open source reimplementation of the Among Us Server | ||||||||||
Goworld | 2,151 | 1 | 10 months ago | 8 | June 21, 2021 | 20 | apache-2.0 | Go | ||
Scalable Distributed Game Server Engine with Hot Swapping in Golang |
Latest release | Latest development build |
---|---|
Chat takes place on Discord. You will need to create a Discord account if you don't yet have one.
If you want to help make the game, join the developer channel.
If you need help, want to talk to the developers, or just want to stay up to date then join the non-developer channel for your language.
If you want to help translate the game to your language, please stop by the Localisation channel.
Language | Non Developer | Developer | Localisation | Asset Replacement |
---|---|---|---|---|
English |
|
|
||
Nederlands |
OpenRCT2 is an open-source re-implementation of RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and maintaining an amusement park containing attractions, shops and facilities. The player must try to make a profit and maintain a good park reputation whilst keeping the guests happy. OpenRCT2 allows for both scenario and sandbox play. Scenarios require the player to complete a certain objective in a set time limit whilst sandbox allows the player to build a more flexible park with optionally no restrictions or finance.
RollerCoaster Tycoon 2 was originally written by Chris Sawyer in x86 assembly and is the sequel to RollerCoaster Tycoon. The engine was based on Transport Tycoon, an older game which also has an equivalent open-source project, OpenTTD. OpenRCT2 attempts to provide everything from RCT2 as well as many improvements and additional features, some of these include support for modern platforms, an improved interface, improved guest and staff AI, more editing tools, increased limits, and cooperative multiplayer. It also re-introduces mechanics from RollerCoaster Tycoon that were not present in RollerCoaster Tycoon 2. Some of those include; mountain tool in-game, the "have fun" objective, launched coasters (not passing-through the station) and several buttons on the toolbar.
OpenRCT2 requires original files of RollerCoaster Tycoon 2 to play. It can be bought at either Steam or GOG.com. If you have the original RollerCoaster Tycoon and its expansion packs, you can point OpenRCT2 to these in order to play the original scenarios.
OpenRCT2.org offers precompiled builds and installers of the latest master and the develop branch. There is also a cross platform Launcher available that will automatically update your build of the game so that you always have the latest version.
Flathub offers flatpaks for Linux distributions that support this application distribution system:
Some Linux distributions offer native packages already. These packages are usually third-party, but we're trying to resolve issues they are facing.
develop
branch (nightly builds)nixos-unstable
channel): openrct2
Some *BSD operating systems offer native packages. These packages are usually third-party, but we're trying to resolve issues they are facing.
OpenRCT2 requires original files of RollerCoaster Tycoon 2 to play. It can be bought at either Steam or GOG.com.
mingw-x86_64
, mingw-xi686
, ucrt-x86_64
, clang-x86_64
, and clang-xi686
, each of these require the $MINGW_PACKAGE_PREFIX
and msys
and clangarm-64
are lacking packages for some dependencies
See the wiki for the actual package names used in pacman.
Refer to https://github.com/OpenRCT2/OpenRCT2/wiki/Building-OpenRCT2-on-Linux#required-packages-general for more information about installing the packages.
Check out the repository, this can be done using GitHub Desktop or other tools
Open a new Developer Command Prompt for VS 2022
Navigate to the repository (e.g. cd C:\GitHub\OpenRCT2
)
To build the 64-bit version, use msbuild openrct2.proj /t:build /p:platform=x64
To build the 32-bit version, use msbuild openrct2.proj /t:build /p:platform=Win32
Run the game, bin\openrct2
Once you have ran msbuild once, further development can be done within Visual Studio by opening openrct2.sln
. Make sure to select the correct target platform for which you ran the build in point #3 (Win32
for the 32-bit version, x64
for the 64-bit version), otherwise the build will fail in Visual Studio.
Other examples:
set platform=x64
msbuild openrct2.proj /t:clean
msbuild openrct2.proj /t:rebuild /p:configuration=release
msbuild openrct2.proj /t:g2
msbuild openrct2.proj /t:PublishPortable
CMake can build either a self-contained application bundle, which includes all the necessary game files and dependencies, or it can build a command line version that links against system installed dependencies. CMake will retrieve the dependencies from Dependencies automatically. You can build the macOS app using CMake using the following commands:
cmake -S . -B build
cmake --build build --target install
Then you can run the game by opening OpenRCT2.app
To build the command line version, you'll need to disable the macOS app bundle:
cmake -S . -B build -DMACOS_BUNDLE=off
cmake --build build
cmake --build build --target install
ln -s ../data data
Then you can run the game by running ./openrct2
.
To link against system dependencies instead of letting CMake download the dependencies from Dependencies, add -DMACOS_USE_DEPENDENCIES=off
to your cmake args.
Detailed instructions can be found on Building OpenRCT2 on macOS using CMake.
The standard CMake build procedure is to install the required libraries, then:
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=. # set your standard cmake options, e.g. build type here - For example, -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake --build build # you can parallelise your build job with e.g. -j 8 or consider using ninja
cmake --build build --target install # the install target creates all the necessary files in places we expect them
You can also use Ninja in place of Make using -G Ninja
in the first command, if you prefer, see Wiki for details.
Detailed instructions can be found on Building OpenRCT2 on Linux.
Note: the cmake -S . -B build
syntax is available for CMake >= 3.14. For older versions use:
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=. # set your standard cmake options, e.g. build type here - For example, -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake --build . --target install
OpenRCT2 uses the gitflow workflow. If you are implementing a new feature or logic from the original game, please branch off and perform pull requests to develop
. If you are fixing a bug for the next release, please branch off and perform pull requests to the correct release branch. master
only contains tagged releases, you should never branch off this.
Please read our contributing guidelines for information.
A list of bugs can be found on the issue tracker. Feel free to work on any bug and submit a pull request to the develop branch with the fix. Mentioning that you intend to fix a bug on the issue will prevent other people from trying as well.
Please talk to the OpenRCT2 team first before starting to develop a new feature. We may already have plans for or reasons against something that you'd like to work on. Therefore contacting us will allow us to help you or prevent you from wasting any time. You can talk to us via Discord, see links at the top of this page.
You can translate the game into other languages by editing the language files in data/language
directory. Please join discussions in the #localisation channel on Discord and submit pull requests to OpenRCT2/Localisation.
You can help create new graphics for the game by visiting the OpenGraphics project. 3D modellers needed!
You can help create the music and sound effects for the game. Check out the OpenMusic repository and drop by our #open-sound-and-music channel on Discord to find out more.
We would also like to distribute additional scenarios with the game, when the time comes. For that, we need talented scenario makers! Check out the OpenScenarios repository.
OpenRCT2 is licensed under the GNU General Public License version 3.
OpenLoco | OpenTTD | openage | OpenRA |
---|---|---|---|
![]() |
![]() |
![]() |
![]() |
Chris Sawyer's Locomotion | Transport Tycoon Deluxe | Age of Empires 2 | Red Alert |
Companies that kindly allow us to use their stuff:
DigitalOcean | JetBrains | Backtrace |
---|---|---|
![]() |
![]() |
![]() |
Hosting of various services | CLion and other products | Minidump uploads and inspection |