OpenRCT2/src/openrct2/Game.h

182 lines
5.7 KiB
C
Raw Normal View History

/*****************************************************************************
2020-07-21 15:04:34 +02:00
* Copyright (c) 2014-2020 OpenRCT2 developers
2015-10-20 20:16:30 +02:00
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
2015-10-20 20:16:30 +02:00
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
2015-10-20 20:16:30 +02:00
2017-11-30 18:17:06 +01:00
#pragma once
2015-03-07 12:13:10 +01:00
#include "common.h"
#include <string>
struct ParkLoadResult;
struct rct_s6_data;
2015-03-07 12:13:10 +01:00
enum class GameCommand : int32_t
{
PasswordlessLogin = -3,
ToggleSceneryCluster = -2,
Chat = -1,
SetRideAppearance, // GA
SetLandHeight, // GA
TogglePause, // GA
PlaceTrack, // GA
RemoveTrack, // GA
LoadOrQuit, // GA
CreateRide, // GA
DemolishRide, // GA
SetRideStatus, // GA
SetRideVehicles, // GA
SetRideName, // GA
SetRideSetting, // GA
PlaceRideEntranceOrExit, // GA
RemoveRideEntranceOrExit, // GA
RemoveScenery, // GA
PlaceScenery, // GA
SetWaterHeight, // GA
PlacePath, // GA
PlacePathFromTrack, // GA
RemovePath, // GA
ChangeSurfaceStyle, // GA
SetRidePrice, // GA
SetGuestName, // GA
SetStaffName, // GA
RaiseLand, // GA
LowerLand, // GA
EditLandSmooth, // GA
RaiseWater, // GA
LowerWater, // GA
SetBrakesSpeed, // GA
HireNewStaffMember, // GA
SetStaffPatrol, // GA
FireStaffMember, // GA
SetStaffOrders, // GA
SetParkName, // GA
SetParkOpen, // GA
BuyLandRights, // GA
PlaceParkEntrance, // GA
RemoveParkEntrance, // GA
SetMazeTrack, // GA
SetParkEntranceFee, // GA
SetStaffColour, // GA
PlaceWall, // GA
RemoveWall, // GA
PlaceLargeScenery, // GA
RemoveLargeScenery, // GA
SetCurrentLoan, // GA
SetResearchFunding, // GA
PlaceTrackDesign, // GA
StartMarketingCampaign, // GA
PlaceMazeDesign, // GA
PlaceBanner, // GA
RemoveBanner, // GA
SetSceneryColour, // GA
SetWallColour, // GA
SetLargeSceneryColour, // GA
SetBannerColour, // GA
SetLandOwnership, // GA
ClearScenery, // GA
SetBannerName, // GA
SetSignName, // GA
SetBannerStyle, // GA
SetSignStyle, // GA
SetPlayerGroup, // GA
ModifyGroups, // GA
KickPlayer, // GA
Cheat, // GA
PickupGuest, // GA
PickupStaff, // GA
BalloonPress, // GA
ModifyTile, // GA
EditScenarioOptions, // GA
PlacePeepSpawn, // GA
SetClimate, // GA
SetColourScheme, // GA
SetStaffCostume, // GA
PlaceFootpathAddition, // GA
RemoveFootpathAddition, // GA
GuestSetFlags, // GA
SetDate, // GA
Custom, // GA
Count,
};
enum : uint32_t
{
2019-04-02 19:17:37 +02:00
GAME_COMMAND_FLAG_APPLY = (1 << 0), // If this flag is set, the command is applied, otherwise only the cost is retrieved
GAME_COMMAND_FLAG_REPLAY = (1 << 1), // Command was issued from replay manager.
GAME_COMMAND_FLAG_2 = (1 << 2), // Unused
GAME_COMMAND_FLAG_ALLOW_DURING_PAUSED = (1 << 3), // Allow while paused
2019-04-01 19:58:16 +02:00
GAME_COMMAND_FLAG_4 = (1 << 4), // Unused
GAME_COMMAND_FLAG_NO_SPEND = (1 << 5), // Game command is not networked
GAME_COMMAND_FLAG_GHOST = (1 << 6), // Game command is not networked
2018-06-22 23:25:16 +02:00
GAME_COMMAND_FLAG_PATH_SCENERY = (1 << 7),
GAME_COMMAND_FLAG_NETWORKED = (1u << 31) // Game command is coming from network
};
enum
{
2018-06-22 23:25:16 +02:00
GAME_PAUSED_NORMAL = 1 << 0,
GAME_PAUSED_MODAL = 1 << 1,
GAME_PAUSED_SAVING_TRACK = 1 << 2,
};
enum
{
2018-06-22 23:25:16 +02:00
ERROR_TYPE_NONE = 0,
ERROR_TYPE_GENERIC = 254,
ERROR_TYPE_FILE_LOAD = 255
};
extern rct_string_id gGameCommandErrorTitle;
extern rct_string_id gGameCommandErrorText;
extern uint32_t gCurrentTicks;
extern uint32_t gCurrentRealTimeTicks;
2016-04-23 03:49:24 +02:00
extern uint16_t gCurrentDeltaTime;
2018-06-22 23:25:16 +02:00
extern uint8_t gGamePaused;
extern int32_t gGameSpeed;
extern bool gDoSingleUpdate;
2018-06-22 23:25:16 +02:00
extern float gDayNightCycle;
extern bool gInUpdateCode;
extern bool gInMapInitCode;
extern std::string gCurrentLoadedPath;
Feature: Preview title sequences in-game Title sequences can now be played back in-game, allowing for much easier editing. Improved title sequence playback in general. Clicking play while on a different title sequence will play the new one. Clicking stop will make the title screen go back to the config title sequence. And the closing the title sequence window will also make the game go back to the config title sequence, and reload the sequence if it was modified. Changes made to title sequences in-game are now correctly loaded in the title screen. Starting a title sequence within the editor will now always reset it even if it's the current playing sequence. (Not for playing in the editor though). Get Location in title sequence command editor now has 100% accuracy compared to before where it would usually get some offset value. Added `get_map_coordinates_from_pos_window` which will allow getting the viewport coordinates of a specific window even if the input coordinates are under another window. This has use with getting 2D positions from the main window without the other windows getting in the way. Options window will now always specify the config title sequence in the dropdown and not the current title sequence. Made a global variable `gLoadKeepWindowsOpen`, in game.h to keep windows open when loading a park. When loading a title sequence park in-game. The sequence player will force-close all park-specific windows ahead of time. Skipping while testing title sequences no longer needs to reload the park if the current playback position is already before the target position and ahead of the load position. Added changelog entry.
2017-10-30 12:07:01 +01:00
extern bool gLoadKeepWindowsOpen;
void game_reset_speed();
void game_increase_game_speed();
void game_reduce_game_speed();
2014-04-11 03:42:39 +02:00
void game_create_windows();
void reset_all_sprite_quadrant_placements();
2014-09-23 21:33:55 +02:00
void update_palette_effects();
2014-05-02 23:21:08 +02:00
void game_load_or_quit_no_save_prompt();
2018-06-22 23:25:16 +02:00
void load_from_sv6(const char* path);
2015-07-05 17:19:01 +02:00
void game_load_init();
void game_load_scripts();
2020-04-22 23:53:32 +02:00
void game_unload_scripts();
void pause_toggle();
bool game_is_paused();
bool game_is_not_paused();
2015-08-22 12:56:32 +02:00
void save_game();
2018-06-22 23:25:16 +02:00
void* create_save_game_as_intent();
2015-08-22 12:56:32 +02:00
void save_game_as();
void save_game_cmd(const utf8* name = nullptr);
void save_game_with_name(const utf8* name);
2015-02-21 12:05:15 +01:00
void game_autosave();
2015-07-30 00:57:43 +02:00
void game_convert_strings_to_utf8();
2018-06-22 23:25:16 +02:00
void game_convert_strings_to_rct2(rct_s6_data* s6);
void utf8_to_rct2_self(char* buffer, size_t length);
void rct2_to_utf8_self(char* buffer, size_t length);
void game_fix_save_vars();
2020-03-31 23:12:35 +02:00
void start_silent_record();
bool stop_silent_record();