OpenRCT2/src
Duncan Frost f7bbfa80a8 Start refactoring 2015-06-19 21:34:37 +01:00
..
audio use log functions instead of printf and RCT2_ERROR (now removed) 2015-06-14 12:03:32 +01:00
drawing set font when drawing checkboxes, extracted draw string left centred to new method 2015-06-17 16:21:50 +01:00
interface Added title restriction to new window 2015-06-19 10:58:56 -04:00
localisation Merge pull request #1394 from Gymnasiast/cheat-park-parameters 2015-06-19 14:43:52 +01:00
management add last_crash_type to ride struct 2015-06-16 00:16:59 +01:00
network fix HTTP request URL bug 2015-06-02 21:09:52 +01:00
peep Add cheat for staff speed 2015-06-18 15:10:53 +02:00
platform use log functions instead of printf and RCT2_ERROR (now removed) 2015-06-14 12:03:32 +01:00
ride Merge branch 'pre-release-0.0.2' into develop 2015-06-17 16:43:36 +01:00
util fix path_get_extension, fixes #1368 2015-06-19 11:40:18 +01:00
windows Start refactoring 2015-06-19 21:34:37 +01:00
world fix #1374 2015-06-17 16:32:50 +01:00
addresses.h refactor map size 2015-06-13 19:11:26 +01:00
cheats.h Rework land ownership cheat into sandbox mode 2015-06-09 17:19:05 +02:00
cmdline.c refactor ride ratings and add junior coaster ride calculation 2015-06-04 22:49:02 +01:00
cmdline.h Added dithering and closest pixel conversion for sprite tool 2015-05-31 20:35:40 +02:00
cmdline_sprite.c improve sprite compiler 2015-06-03 03:11:54 +01:00
common.h improve reading and saving of configuration 2015-02-16 22:47:11 +00:00
config.c closes #1305, uses absolute paths for all file loads 2015-06-16 14:05:25 +01:00
config.h add new custom title sequence to celebrate 0.0.2 release 2015-06-14 21:01:48 +01: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 closes #1204, add log_info 2015-06-09 20:10:37 +01:00
diagnostic.h add missing log_info deffintion for the non ms build systems 2015-06-09 22:41:00 +01:00
editor.c remove commented out CALLPROCs and CALLFUNCs 2015-06-09 15:09:45 +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 add new custom title sequence to celebrate 0.0.2 release 2015-06-14 21:01:48 +01:00
game.h add new custom title sequence to celebrate 0.0.2 release 2015-06-14 21:01:48 +01: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 Console can be used on title screen 2015-06-19 10:51:54 -04:00
input.h Named 2 input flags, and dropdown fix 2015-05-07 14:31:11 -04: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 Start refactoring 2015-06-19 21:34:37 +01:00
object.h Start refactoring 2015-06-19 21:34:37 +01:00
object_list.c Excess space no longer created in filter list 2015-06-14 14:52:24 -04:00
openrct2.c fix get exe path issue 2015-06-16 14:55:09 +01:00
openrct2.h closes #1305, uses absolute paths for all file loads 2015-06-16 14:05:25 +01:00
rct1.c refactor map size 2015-06-13 19:11:26 +01:00
rct1.h refactor map size 2015-06-13 19:11:26 +01:00
rct2.c use log functions instead of printf and RCT2_ERROR (now removed) 2015-06-14 12:03:32 +01:00
rct2.h Added build number support 2015-06-17 00:55:32 +02:00
readme.md update src/readme.md 2014-11-16 15:37:41 +00:00
scenario.c Merge branch 'pre-release-0.0.2' into develop 2015-06-19 11:42:19 +01:00
scenario.h Merge branch 'pre-release-0.0.2' into develop 2015-06-16 21:29:34 +01:00
scenario_list.c use log functions instead of printf and RCT2_ERROR (now removed) 2015-06-14 12:03:32 +01:00
sprites.h Rewrote Themes 2015-06-07 20:31:54 -04:00
title.c Merge branch 'pre-release-0.0.2' into HEAD 2015-06-17 11:41:08 +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 remove commented out CALLPROCs and CALLFUNCs 2015-06-09 15:09:45 +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.