OpenRCT2/src/openrct2/OpenRCT2.h

97 lines
2.3 KiB
C
Raw Normal View History

#pragma region Copyright (c) 2014-2016 OpenRCT2 Developers
/*****************************************************************************
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
*
* OpenRCT2 is the work of many authors, a full list can be found in contributors.md
* For more information, visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* A full copy of the GNU General Public License can be found in licence.txt
*****************************************************************************/
#pragma endregion
2016-12-11 02:15:07 +01:00
#pragma once
#include "common.h"
#include "core/Guard.hpp"
2016-12-14 13:07:48 +01:00
#ifdef __cplusplus
extern "C"
{
#endif
#include "platform/platform.h"
#ifdef __cplusplus
}
#endif
#ifndef DISABLE_NETWORK
2016-12-11 02:15:07 +01:00
#include <openssl/evp.h>
#endif // DISABLE_NETWORK
2016-12-11 02:15:07 +01:00
enum STARTUP_ACTION
{
STARTUP_ACTION_INTRO,
STARTUP_ACTION_TITLE,
STARTUP_ACTION_OPEN,
STARTUP_ACTION_EDIT
};
#ifdef __cplusplus
interface IPlatformEnvironment;
namespace OpenRCT2
{
IPlatformEnvironment * SetupEnvironment();
}
#endif
2016-12-11 02:15:07 +01:00
#ifdef __cplusplus
extern "C"
{
#endif
/** The exit code for OpenRCT2 when it exits. */
extern int gExitCode;
2016-12-11 02:15:07 +01:00
extern int gOpenRCT2StartupAction;
extern utf8 gOpenRCT2StartupActionPath[512];
extern utf8 gExePath[MAX_PATH];
extern utf8 gCustomUserDataPath[MAX_PATH];
extern utf8 gCustomOpenrctDataPath[MAX_PATH];
extern utf8 gCustomRCT2DataPath[MAX_PATH];
extern utf8 gCustomPassword[MAX_PATH];
extern bool gOpenRCT2Headless;
extern bool gOpenRCT2ShowChangelog;
#ifndef DISABLE_NETWORK
2016-12-11 02:15:07 +01:00
extern EVP_MD_CTX * gHashCTX;
#endif // DISABLE_NETWORK
#ifndef DISABLE_NETWORK
2016-12-11 02:15:07 +01:00
extern int gNetworkStart;
extern char gNetworkStartHost[128];
extern int gNetworkStartPort;
#endif
2016-12-11 02:15:07 +01:00
void openrct2_write_full_version_info(utf8 * buffer, size_t bufferSize);
bool openrct2_initialise();
void openrct2_launch();
void openrct2_dispose();
void openrct2_finish();
2016-12-11 02:15:07 +01:00
int cmdline_run(const char * * argv, int argc);
2017-01-10 18:37:08 +01:00
#ifdef __WINDOWS__
int RunOpenRCT2(int argc, char * * argv);
2017-01-04 23:50:35 +01:00
#endif
2016-12-11 02:15:07 +01:00
#ifdef __cplusplus
}
#endif