OpenRCT2/src/openrct2/OpenRCT2.cpp

79 lines
2.4 KiB
C++
Raw Normal View History

#pragma region Copyright (c) 2014-2017 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
#include "core/Console.hpp"
2017-02-09 22:48:44 +01:00
#include "core/File.h"
#include "core/FileStream.hpp"
2016-12-11 02:15:07 +01:00
#include "OpenRCT2.h"
2016-12-11 02:15:07 +01:00
extern "C"
{
#include "audio/audio.h"
#include "platform/platform.h"
2017-05-06 23:48:55 +02:00
#include "rct2.h"
2016-12-11 02:15:07 +01:00
}
2016-12-11 02:15:07 +01:00
extern "C"
{
2017-01-04 22:17:08 +01:00
sint32 gExitCode;
sint32 gOpenRCT2StartupAction = STARTUP_ACTION_TITLE;
2016-12-11 02:15:07 +01:00
utf8 gOpenRCT2StartupActionPath[512] = { 0 };
utf8 gExePath[MAX_PATH];
utf8 gCustomUserDataPath[MAX_PATH] = { 0 };
utf8 gCustomOpenrctDataPath[MAX_PATH] = { 0 };
utf8 gCustomRCT2DataPath[MAX_PATH] = { 0 };
utf8 gCustomPassword[MAX_PATH] = { 0 };
2016-12-11 02:15:07 +01:00
bool gOpenRCT2Headless = false;
bool gOpenRCT2ShowChangelog;
bool gOpenRCT2SilentBreakpad;
2015-06-13 14:30:50 +02:00
#ifndef DISABLE_NETWORK
2016-12-11 02:15:07 +01:00
// OpenSSL's message digest context used for calculating sprite checksums
EVP_MD_CTX * gHashCTX = nullptr;
#endif // DISABLE_NETWORK
2017-02-09 22:48:44 +01:00
bool check_file_path(sint32 pathId)
{
const utf8 * path = get_file_path(pathId);
switch (pathId) {
case PATH_ID_G1:
if (!File::Exists(path))
{
Console::Error::WriteLine("Unable to find '%s'", path);
return false;
}
break;
case PATH_ID_CUSTOM1:
case PATH_ID_CUSTOM2:
if (File::Exists(path))
{
try
{
auto fs = FileStream(path, FILE_MODE_OPEN);
sint32 index = 36 + (pathId - PATH_ID_CUSTOM1);
gRideMusicInfoList[index]->length = fs.GetLength();
}
catch (const Exception &)
{
}
}
break;
}
return true;
}
2014-10-09 15:31:51 +02:00
}