mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 20:48:58 +00:00
7794cca429
Try to make code working on more platforms
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
#pragma once
|
|
|
|
enum eLevelName {
|
|
LEVEL_IGNORE = -1, // beware, this is only used in CPhysical's m_nZoneLevel
|
|
LEVEL_NONE = 0,
|
|
LEVEL_INDUSTRIAL,
|
|
LEVEL_COMMERCIAL,
|
|
LEVEL_SUBURBAN
|
|
};
|
|
|
|
class CGame
|
|
{
|
|
public:
|
|
static eLevelName currLevel;
|
|
static bool bDemoMode;
|
|
static bool nastyGame;
|
|
static bool frenchGame;
|
|
static bool germanGame;
|
|
#ifdef MORE_LANGUAGES
|
|
static bool polishGame;
|
|
static bool russianGame;
|
|
#endif
|
|
static bool noProstitutes;
|
|
static bool playingIntro;
|
|
static char aDatFile[32];
|
|
|
|
static bool InitialiseOnceBeforeRW(void);
|
|
static bool InitialiseRenderWare(void);
|
|
static void ShutdownRenderWare(void);
|
|
static bool InitialiseOnceAfterRW(void);
|
|
static void FinalShutdown(void);
|
|
static bool Initialise(const char *datFile);
|
|
static bool ShutDown(void);
|
|
static void ReInitGameObjectVariables(void);
|
|
static void ReloadIPLs(void);
|
|
static void ShutDownForRestart(void);
|
|
static void InitialiseWhenRestarting(void);
|
|
static void Process(void);
|
|
|
|
// NB: these do something on PS2
|
|
static void TidyUpMemory(bool, bool);
|
|
static void DrasticTidyUpMemory(bool);
|
|
static void ProcessTidyUpMemory(void);
|
|
};
|