1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 20:13:07 +01:00
Files
OpenRCT2/src
janisozaur 0b9b976dd6 Cast peep's arguments properly (#3341)
Left-hand side of shift operator determines what's the resultant size of
whole expression. Consider this:

    uint16 p = 65535;
    uint32 q = p << 16;

`q` will be an undefined result, as it will not fit in `uint16` type
anymore, and compiler can optimise it away, unless you cast `p` to be
something which can hold such value, in this case `uint32`.
2016-04-18 23:02:08 +01:00
..
2016-03-20 18:13:17 +00:00
2016-03-19 12:56:35 +01:00
2015-12-14 22:52:27 +01:00
2016-02-17 17:39:33 +01:00
2016-02-20 13:41:44 +00:00
2015-12-20 22:03:37 -06:00
2015-12-20 22:03:37 -06:00
2016-01-09 00:25:30 +00:00
2016-04-15 23:25:45 +01:00
2016-01-22 16:44:08 -07:00
2015-12-20 22:03:37 -06:00
2016-04-15 23:25:45 +01:00
2016-04-15 18:26:47 +01:00
2016-02-25 13:33:19 +01:00
2016-02-25 17:43:29 +00:00
2016-01-18 20:49:52 +01:00
2016-01-02 21:05:33 +00:00
2016-04-15 22:42:57 +01:00

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.