OpenRCT2/src
Duncan Frost 4905e85cd9 Refactor sub_6A9DE1. Now uses known structures. 2015-02-26 18:42:25 +00:00
..
audio Restart title music if necessary 2015-02-20 02:10:13 +01:00
drawing move osinterface code to shared or windows 2015-02-12 20:51:40 +00:00
interface Move title_options button after resizing screen 2015-02-20 02:31:17 +01:00
localisation Object related stuff and better dutch translation 2015-02-25 15:06:29 +01:00
management Fix negative money due to cheat detection. 2015-02-20 19:45:23 +00:00
peep Fix issue causing rides to not increase reliability when fixed 2015-02-22 18:18:56 +00:00
platform Fix error and removed debugging 2015-02-21 17:26:38 +01:00
ride Merge pull request #857 from duncanspumpkin/fix_ride_breakdown 2015-02-22 18:25:11 +00:00
util try to fix to scenario complete issues 2015-02-21 02:04:46 +00:00
windows Fix ghost entrances caused by tool_cancel not being called 2015-02-23 17:58:22 +00:00
world Merge pull request #858 from duncanspumpkin/fix_banner_crash 2015-02-22 18:58:03 +00:00
addresses.h Refactor code related to map flashing, removed a small mistake related with it 2015-02-16 18:53:47 +01:00
cmdline.c Fix arg_parse accessing invalid memory due to mistake in setup code. Reintroduced free memory of command line parameters 2015-01-18 20:56:08 +00:00
cmdline.h implement RLECOMPRESSED chunk encoding, closes #598 2014-11-26 16:27:21 +00:00
common.h improve reading and saving of configuration 2015-02-16 22:47:11 +00:00
config.c Merge pull request #833 from ThomasdenH/develop 2015-02-21 16:41:02 +00:00
config.h Merge pull request #833 from ThomasdenH/develop 2015-02-21 16:41:02 +00:00
cursors.c move osinterface code to shared or windows 2015-02-12 20:51:40 +00:00
cursors.h move osinterface code to shared or windows 2015-02-12 20:51:40 +00:00
diagnostic.c add log level check so that --verbose option works 2014-11-21 18:39:56 +00:00
diagnostic.h fix GCC errors with diagnostic errors 2014-11-21 19:32:13 +00:00
editor.c Implemented paint_ride_entry 2015-02-26 14:47:34 +01:00
editor.h implement bare minimum so that close button is implemented on object selection window, partial fix for #433 2014-11-24 23:05:35 +00:00
game.c Implemented paint_ride_entry 2015-02-26 14:47:34 +01:00
game.h Fix crash caused by not passing x,y coordinates to remove banner 2015-02-22 18:53:27 +00:00
hook.c hook 2014-09-15 15:14:06 -06:00
hook.h 0x00401AF3, 0x006BC6D8, corrections 2014-09-17 13:44:29 -06:00
input.c improve reading and saving of configuration 2015-02-16 22:47:11 +00:00
input.h implement inventions list window, fixes #630 2014-12-16 01:24:13 +00:00
intro.c move osinterface code to shared or windows 2015-02-12 20:51:40 +00:00
intro.h Add newlines to the end of every file (sed/unix do this) 2014-04-21 14:57:48 +05:30
object.c Refactor sub_6A9DE1. Now uses known structures. 2015-02-26 18:42:25 +00:00
object.h fix object order and add object dat name to object selection window, closes #440 2015-02-11 18:54:31 +00:00
object_list.c Fix cause of #698. Vanilla object count not being reset before rebuild. 2015-02-15 18:06:43 +00:00
openrct2.c improve reading and saving of configuration 2015-02-16 22:47:11 +00:00
openrct2.h refactor openrct2 loop 2014-10-09 14:31:51 +01:00
rct1.h Refactor track_list using TD4 knowledge 2015-02-02 18:43:02 +00:00
rct2.c Fix negative money due to cheat detection. 2015-02-20 19:45:23 +00:00
rct2.h improve reading and saving of configuration 2015-02-16 22:47:11 +00:00
readme.md update src/readme.md 2014-11-16 15:37:41 +00:00
scenario.c Implemented paint_ride_entry 2015-02-26 14:47:34 +01:00
scenario.h ensure scenario path is set when loading a saved game 2015-02-22 18:24:19 +00:00
scenario_list.c add new load / save window, closes #580 2015-02-14 02:16:03 +00:00
sprites.h implement editor scenario options window 2014-12-14 19:21:06 +00:00
title.c Fix merge conflics 2015-02-20 09:12:53 +01:00
title.h Add newlines to the end of every file (sed/unix do this) 2014-04-21 14:57:48 +05:30
tutorial.c refactor various platform functions and includes 2014-10-09 14:03:54 +01:00
tutorial.h implement keyboard shortcuts 2014-04-26 01:16:32 +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.