No description
Find a file
2018-09-08 21:13:57 +01:00
.github Add a basic issue template [ci skip] 2018-04-10 16:14:23 +02:00
cmake Check for std::byte support 2018-06-05 21:44:03 +02:00
data/language ko-KR: Fully translated (#41) 2018-01-24 18:50:29 +00:00
distribution/linux Move Ubuntu 32 bit Dockerfile to common directory 2018-01-29 00:00:53 +01:00
dockerfiles Update Fedora mingw32 image with yaml-cpp package 2018-09-02 23:17:47 +02:00
scripts Run clang-format on CI 2018-01-23 23:11:58 +01:00
src/openloco Merge pull request #213 from janisozaur/headers-check 2018-09-08 21:11:54 +01:00
.clang-format Add format 2018-01-23 23:11:58 +01:00
.gitignore Setup auto releasing on tag. 2018-02-13 19:00:33 +00:00
.travis.yml Install bottled yaml 2018-09-04 10:50:52 +02:00
appveyor.yml Prepare vs project for dependencies nuget package 2018-09-04 10:49:45 +02:00
CHANGELOG.md [ci skip] Update changelog 2018-09-08 21:13:57 +01:00
CMakeLists.txt Verify compilability of headers on Travis 2018-09-08 20:59:42 +02:00
CMakeLists_mingw.txt Add mingw toolchain file for cmake 2018-01-29 00:00:53 +01:00
docker-compose.yml Change version in docker-compose.yml to 2 2018-01-31 23:48:14 +01:00
LICENSE Initial commit 2018-01-06 23:35:23 +00:00
loco.exe Cleanup loco.exe file (#6) 2018-01-21 13:18:43 +00:00
openloco.common.props Use shared CRT for Windows 2018-09-04 21:04:56 +01:00
openloco.sln Add initial working wrapper 2018-01-07 03:18:38 +00:00
README.md Update README.md 2018-09-04 17:07:42 +01:00

OpenLoco

An open source re-implementation of Chris Sawyer's Locomotion. A construction and management simulation video game that simulates running a transport company.


Contents


Build Status

Windows Linux / Mac Download
master AppVeyor Travis CI GitHub release

Chat

You only need a GitHub or Twitter account to access these channels.

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.

Language Non Developer Developer
English Gitter Gitter

1 Introduction

OpenLoco is an open-source re-implementation of Chris Sawyer's Locomotion (CSL). CSL is the spiritual successor to Transport Tycoon and OpenLoco aims to improve the game similar to how OpenTTD improved Transport Tycoon and OpenRCT2 improved RollerCoaster Tycoon.

Chris Sawyer's Locomotion was written by Chris Sawyer in x86 assembly building on top of his RollerCoaster Tycoon 2 engine. Much of the code is 1:1 with RollerCoaster Tycoon 2. This means that only select areas of the game such as the update logic should be written. The engine code such as audio, drawing and the window system should be left alone as it would only repeat the work that has already been done for OpenRCT2. It is more beneficial to share as much code as possible between OpenRCT2 and OpenLoco.


2 Downloading the game (pre-built)

OpenLoco requires original files of Chris Sawyer's Locomotion to play. It can be bought at either Steam or GOG.com.

The latest release can be found on GitHub.


3 Building the game

3.1 Building prerequisites

OpenLoco requires original files of Chris Sawyer's Locomotion to play. It can be bought at either Steam or GOG.com.

Windows:

Linux / macOS:


3.2 Compiling and running

Windows:

  1. Check out the repository. This can be done using GitHub Desktop or other tools.
  2. Install dependencies using vcpkg or use the nuget package.
  3. Open a new Developer Command Prompt for VS 2017, then navigate to the repository (e.g. cd C:\GitHub\OpenRCT2).
  4. Run msbuild openloco.sln
  5. Run the game, bin\openloco

Linux / macOS:

The standard CMake build procedure is to install the required libraries, then:

mkdir build
cd build
cmake ..
make

4 Licence

OpenLoco is licensed under the MIT License.


5 More information