| Version | Release Date | Windows (64 bit) | Windows (32 bit) | Debian/Ubuntu | Linux (Flatpak) | Source Code |
|---|---|---|---|---|---|---|
| 0.1 | Saturday, March 19, 2022 | Download Installer (2.98 MB) SHA256 | Download Installer (2.98 MB) SHA256 | Download Package (4.95 MB) SHA256 | Flatpak (2.78 MB) SHA256 | Source ZIP (107.38 MB) SHA256 |
To install FreeRCT:
sha256sum FILENAME.
Automated builds are provided for Windows, MacOS, and Debian/Ubuntu for every development version.
| Build Configuration | Installer / Package | Checksum |
|---|---|---|
| FreeRCT Debian+Ubuntu Debug Package clang | Download (26.42 MB) | SHA256 |
| FreeRCT Debian+Ubuntu Debug Package gcc | Download (34.03 MB) | SHA256 |
| FreeRCT Debian+Ubuntu Release Package clang | Download (22.94 MB) | SHA256 |
| FreeRCT Debian+Ubuntu Release Package gcc | Download (23.04 MB) | SHA256 |
| FreeRCT Debug Tarball clang | Download (15.17 MB) | SHA256 |
| FreeRCT Debug Tarball gcc | Download (19.29 MB) | SHA256 |
| FreeRCT Release Tarball clang | Download (13.11 MB) | SHA256 |
| FreeRCT Release Tarball gcc | Download (13.19 MB) | SHA256 |
| FreeRCT Windows x64 Debug Installer | Download (14.49 MB) | SHA256 |
| FreeRCT Windows x64 Debug Zip | Download (24.58 MB) | SHA256 |
| FreeRCT Windows x64 Release Installer | Download (13.95 MB) | SHA256 |
| FreeRCT Windows x64 Release Zip | Download (23.68 MB) | SHA256 |
| FreeRCT Windows x86 Debug Installer | Download (14.46 MB) | SHA256 |
| FreeRCT Windows x86 Debug Zip | Download (24.51 MB) | SHA256 |
| FreeRCT Windows x86 Release Installer | Download (13.86 MB) | SHA256 |
| FreeRCT Windows x86 Release Zip | Download (23.55 MB) | SHA256 |
To install FreeRCT:
sha256sum FILENAME.
The most recent development version can also be played in the browser.
cd into the downloaded FreeRCT directory and call:
# Construct build directory and enter it:
mkdir build
cd build
# Generate Makefile. Some of the more common build options – all of them optional – are:
# -DCMAKE_INSTALL_PREFIX=/usr/local # Set install directory, default is '/usr'.
# -DRELEASE=ON # Build a release build.
# -DASAN=ON # Link with ASan memory checker.
# -DUSERDATAPREFIX="$HOME/.freerct" # Where user data such as savegames is stored.
# Further details and more specialised options can be found in the README file in the root source directory.
cmake ..
# Compile and install:
make
make install # Can be skipped.
Just start the installed binary or type freerct.
If you compiled FreeRCT yourself and skipped the make install step,
use ./build/bin/freerct or make run.
After installation, see the online manual for information how to use FreeRCT.
Available command-line options are:
| Short Option | Long Option | Explanation |
|---|---|---|
| -h | --help | Display all available arguments. |
| -v | --version | Display the build version and configuration. |
| -l FILE | --load FILE | Directly load the specified savegame file. |
| -r | --resave | Immediately save every savegame file again after loading. |
| -a LANG | --language LANG | Start FreeRCT in the specified language. See below for supported languages. |
| -i DIR | --installdir DIR | Use the specified installation directory. |
| -u DIR | --userdatadir DIR | Use the specified user data directory. |
FreeRCT is currently available in the following languages:
| Language Code | Name |
|---|---|
| da_DK | Danish (Denmark) |
| de_DE | German (Germany) |
| en_GB | English (United Kingdom) |
| en_US | English (United States) |
| es_ES | Spanish (Spain) |
| fr_FR | French (France) |
| nds_DE | Low German (Germany) |
| nl_NL | Dutch (Netherlands) |
| sv_SE | Swedish (Sweden) |