OpenRCT2/src/openrct2
Ted John d70cd3775e Fix silent warnings 2017-01-12 18:40:49 +00:00
..
audio Use static inline 2017-01-12 18:29:29 +00:00
cmdline Remove --console CLI switch 2017-01-10 17:29:52 +00:00
core Fix more warnings, disable others 2017-01-12 13:00:12 +00:00
drawing More warning fixes, more warnings disabled 2017-01-12 13:12:53 +00:00
interface More warning fixes, more warnings disabled 2017-01-12 13:12:53 +00:00
localisation Fix more warnings 2017-01-12 13:16:00 +00:00
management Fix more warnings 2017-01-12 13:16:00 +00:00
network Fix name warnings for NetworkPacket 2017-01-12 17:45:48 +00:00
object Fix more warnings 2017-01-12 17:36:05 +00:00
paint Fix silent warnings 2017-01-12 18:40:49 +00:00
peep Fix more warnings 2017-01-12 18:02:28 +00:00
platform Fix silent warnings 2017-01-12 18:40:49 +00:00
rct1 Fix more warnings 2017-01-12 18:02:28 +00:00
rct2 Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
ride Fix silent warnings 2017-01-12 18:40:49 +00:00
scenario Fix more warnings 2017-01-12 18:02:28 +00:00
title Don't zoom to cursor for keyboard or toolbar inputs (#5028) 2017-01-11 17:43:11 -06:00
util Fix remaining warnings 2017-01-12 18:20:22 +00:00
windows Fix Win32 warnings 2017-01-12 18:28:51 +00:00
world Fix silent warnings 2017-01-12 18:40:49 +00:00
FileClassifier.cpp Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
FileClassifier.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
Imaging.cpp Fix more warnings, disable others 2017-01-12 13:00:12 +00:00
Imaging.h Move image_io to C++ 2017-01-07 12:10:42 +00:00
OpenRCT2.cpp Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
OpenRCT2.h Fix mingw build 2017-01-10 17:58:04 +00:00
PlatformEnvironment.cpp Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
PlatformEnvironment.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
cheats.c Use constant for random colour 2017-01-11 23:00:28 +01:00
cheats.h Add cheats to set/add money by custom amounts 2017-01-10 23:43:42 +01:00
cmdline_sprite.c More warning fixes, more warnings disabled 2017-01-12 13:12:53 +00:00
cmdline_sprite.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
common.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
config.c Fix Win32 warnings 2017-01-12 18:28:51 +00:00
config.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
diagnostic.c Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
diagnostic.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
editor.c Fix cast warnings 2017-01-12 12:41:47 +00:00
editor.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
game.c Fix cast warnings 2017-01-12 12:41:47 +00:00
game.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
input.c Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
input.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
intro.c Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
intro.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
libopenrct2.vcxproj Fix Debug | Win32 (RCT2) builds for VS 2017-01-11 18:33:08 +00:00
object.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
object_list.c Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
object_list.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
rct1.c Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
rct1.h Fix balloons, import balloons, ducks and steam particles 2017-01-08 23:35:29 +00:00
rct2.c Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
rct2.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
readme.md Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
sprites.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
version.c Move contents of src into project sub directory 2017-01-04 17:44:12 +00:00
version.h Move contents of src into project sub directory 2017-01-04 17:44:12 +00: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.