OpenRCT2/src
Gymnasiast 33c41456bf Move C header to 'extern C' block 2017-01-01 22:13:31 +01:00
..
audio linear loudness scale on the music and sound volume settings 2016-12-28 22:22:45 +00:00
cmdline Fix #3355: Implement loading of parks from URLs 2016-12-28 19:13:13 +00:00
core Don't use initializer lists for members 2016-12-24 13:12:09 +01:00
drawing Merge pull request #4878 from Broxzier/cpp_fixes 2016-12-28 12:57:34 +00:00
interface Fix some cases of viewport clipping out of map bounds 2016-12-28 22:30:41 +01:00
localisation Fix alignment and dead code 2017-01-01 19:58:05 +01:00
management CppCheck fixes 2016-12-24 13:10:03 +01:00
network Cap var2CTotal so it does not overflow 2016-12-30 01:16:13 +00:00
object Move C header to 'extern C' block 2017-01-01 22:13:31 +01:00
paint Use the same code for the Twister and Vertical RC 2016-12-29 21:25:38 +01:00
peep Constrain mechanics to their patrol area when heading to a ride 2016-12-29 21:18:02 +01:00
platform Add FreeBSD support 2016-12-28 14:18:04 +01:00
rct1 Fix peeps not entering queues in RCT1 imported parks, fix excitement, import more fields 2016-12-29 20:35:02 +01:00
rct2 Merge pull request #4878 from Broxzier/cpp_fixes 2016-12-28 12:57:34 +00:00
ride Fix alignment and dead code 2017-01-01 19:58:05 +01:00
scenario Merge pull request #4878 from Broxzier/cpp_fixes 2016-12-28 12:57:34 +00:00
title Fix restart command skipping first command in title sequence 2016-12-24 17:26:30 +00:00
util CppCheck fixes 2016-12-24 13:10:03 +01:00
windows Fix alignment and dead code 2017-01-01 19:58:05 +01:00
world Merge pull request #4878 from Broxzier/cpp_fixes 2016-12-28 12:57:34 +00:00
FileClassifier.cpp Add code to inspect any file and classify its format 2016-12-28 18:45:01 +00:00
FileClassifier.h Add code to inspect any file and classify its format 2016-12-28 18:45:01 +00:00
OpenRCT2.cpp Use TryClassifyFile to auto load downloaded park 2016-12-28 19:13:19 +00:00
OpenRCT2.h Make CLI object scan a command instead of a flag. 2016-12-28 01:18:13 +00:00
PlatformEnvironment.cpp Refactor PlatformEnvironment 2016-12-14 00:32:06 +00:00
PlatformEnvironment.h Refactor PlatformEnvironment 2016-12-14 00:32:06 +00:00
cheats.c Send value for all toggles through command (#4926) 2016-12-28 22:02:08 +01:00
cheats.h Fix #4172: Expose ride-type changing capability in UI 2016-08-01 20:30:08 +02:00
cmdline_sprite.c Rename openrct2.c h to OpenRCT2.c h 2016-12-14 00:32:06 +00:00
cmdline_sprite.h Fix function definitions to match their declarations 2016-07-14 14:11:49 +02:00
common.h Enable all C++ features for MSVC 2016-12-16 01:19:41 +00:00
config.c Merge pull request #4878 from Broxzier/cpp_fixes 2016-12-28 12:57:34 +00:00
config.h Implement zip writing and title sequence saving 2016-12-16 01:25:02 +00:00
diagnostic.c Add and correct licence headers to all sources (#3108) 2016-05-04 18:24:41 +01:00
diagnostic.h Add missing #defines when DEBUG=0. 2016-10-04 10:05:51 +02:00
editor.c Move addresses and hook into rct2 sub directory 2016-12-16 01:25:05 +00:00
editor.h Integrate gEditorSelectedObjects 2016-09-05 22:26:02 +01:00
game.c Merge pull request #4878 from Broxzier/cpp_fixes 2016-12-28 12:57:34 +00:00
game.h Move addresses and hook into rct2 sub directory 2016-12-16 01:25:05 +00:00
image_io.c Remove trailing whitespace in sources 2016-11-13 20:32:55 +01:00
image_io.h implement OpenGL screenshot 2016-06-11 03:06:30 +01:00
input.c Move scenario sources to sub directory 2016-12-16 01:25:05 +00:00
input.h Refactor cursors to C++ and improve isolation 2016-10-11 18:23:49 +01:00
intro.c Sort includes 2016-12-01 16:03:16 +01:00
intro.h fix intro with new drawing 2016-06-07 22:45:36 +01:00
object.h Refactor/Improve String and Path Handling 2016-10-09 15:29:58 -05:00
object_list.c Refactor/Improve String and Path Handling 2016-10-09 15:29:58 -05:00
object_list.h Move addresses and hook into rct2 sub directory 2016-12-16 01:25:05 +00:00
rct1.c Skip null rides when checking for select-by-track-type, fixes #4796 2016-11-13 21:14:15 +01:00
rct1.h Fix peeps not entering queues in RCT1 imported parks, fix excitement, import more fields 2016-12-29 20:35:02 +01:00
rct2.c Fix loading of RCT1 parks from command line 2016-12-20 17:36:00 +00:00
rct2.h Move RCT2 file copy into rct2.c 2016-12-11 12:16:47 +00:00
readme.md update src/readme.md 2014-11-16 15:37:41 +00:00
sprites.h Add copy/paste functionality to tile inspector 2016-11-09 20:03:18 +01:00
version.c Revert "Temporarily disable branch info for release" 2016-12-27 23:59:57 +01:00
version.h Add FreeBSD support 2016-12-28 14:18:04 +01:00

readme.md

Source directory structure

  • audio

    Contains files for mixing and playing music and sound.

  • drawing

    Low level drawing logic and palette tables.

  • interface

    Window and widget logic, includes high level drawing and input.

  • localisation

    String IDs, currency and date logic.

  • network

    Network and multiplayer logic, includes management of network games and downloading / uploading of content.

  • management

    Park management logic such as finance, marketing and research.

  • peep

    Guest and staff definitions and logic such as action management and pathfinding.

  • platform

    Compiler and operating system specific code such as type definitions, message handling and file input / output.

  • ride

    Data and logic for rides, vehicles and track.

  • util

    Utility and helper functions.

  • windows

    Definitions and logic for all the windows in the game.

  • world

    World objects and mechanics such as the climate, landscape, sprites and park.