2020-06-20 15:52:10 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
bool System_WantGuiCapture(); // During playing this tells us whether the game must be paused due to active GUI elememts.
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2020-07-04 13:51:02 +00:00
|
|
|
#include "vectors.h"
|
2020-07-18 19:28:57 +00:00
|
|
|
#include "engineerrors.h"
|
2020-06-20 15:52:10 +00:00
|
|
|
|
|
|
|
struct GameStats
|
|
|
|
{
|
|
|
|
int kill, tkill;
|
|
|
|
int secret, tsecret;
|
|
|
|
int timesecnd;
|
|
|
|
int frags;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FNewGameStartup
|
|
|
|
{
|
|
|
|
int Episode;
|
|
|
|
int Level;
|
|
|
|
int Skill;
|
|
|
|
int CustomLevel1;
|
|
|
|
int CustomLevel2;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FSavegameInfo
|
|
|
|
{
|
|
|
|
const char *savesig;
|
|
|
|
int minsavever;
|
|
|
|
int currentsavever;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FSaveGameNode
|
|
|
|
{
|
|
|
|
FString SaveTitle;
|
|
|
|
FString Filename;
|
|
|
|
bool bOldVersion = false;
|
|
|
|
bool bMissingWads = false;
|
|
|
|
bool bNoDelete = false;
|
|
|
|
bool bIsExt = false;
|
|
|
|
|
|
|
|
bool isValid() const
|
|
|
|
{
|
|
|
|
return Filename.IsNotEmpty() && !bOldVersion && !bMissingWads;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-08-16 00:55:50 +00:00
|
|
|
struct ReservedSpace
|
|
|
|
{
|
|
|
|
int top;
|
|
|
|
int statusbar;
|
|
|
|
};
|
2020-06-20 15:52:10 +00:00
|
|
|
|
|
|
|
enum EMenuSounds : int;
|
|
|
|
|
|
|
|
struct GameInterface
|
|
|
|
{
|
|
|
|
virtual const char* Name() { return "$"; }
|
|
|
|
virtual ~GameInterface() {}
|
|
|
|
virtual bool GenerateSavePic() { return false; }
|
2020-08-23 15:47:05 +00:00
|
|
|
virtual void app_init() = 0;
|
|
|
|
virtual void RunGameFrame() = 0;
|
2020-07-17 18:56:10 +00:00
|
|
|
virtual void clearlocalinputstate() {}
|
2020-06-20 15:52:10 +00:00
|
|
|
virtual void UpdateScreenSize() {}
|
|
|
|
virtual void FreeGameData() {}
|
2020-07-15 17:48:04 +00:00
|
|
|
virtual void PlayHudSound() {}
|
2020-06-20 15:52:10 +00:00
|
|
|
virtual FString statFPS() { return "FPS display not available"; }
|
|
|
|
virtual GameStats getStats() { return {}; }
|
|
|
|
virtual void DrawNativeMenuText(int fontnum, int state, double xpos, double ypos, float fontscale, const char* text, int flags) {}
|
|
|
|
virtual void MainMenuOpened() {}
|
|
|
|
virtual void MenuOpened() {}
|
|
|
|
virtual void MenuClosed() {}
|
|
|
|
virtual void MenuSound(EMenuSounds snd) {}
|
|
|
|
virtual bool CanSave() { return true; }
|
|
|
|
virtual void CustomMenuSelection(int menu, int item) {}
|
|
|
|
virtual void StartGame(FNewGameStartup& gs) {}
|
|
|
|
virtual FSavegameInfo GetSaveSig() { return { "", 0, 0}; }
|
|
|
|
virtual bool DrawSpecialScreen(const DVector2 &origin, int tilenum) { return false; }
|
2020-07-02 08:59:22 +00:00
|
|
|
virtual void DrawCenteredTextScreen(const DVector2& origin, const char* text, int position, bool withbg = true);
|
|
|
|
virtual double SmallFontScale() { return 1; }
|
2020-06-20 15:52:10 +00:00
|
|
|
virtual void DrawMenuCaption(const DVector2& origin, const char* text) {}
|
2020-07-20 22:07:02 +00:00
|
|
|
virtual bool SaveGame(FSaveGameNode*) { return true; }
|
|
|
|
virtual bool LoadGame(FSaveGameNode*) { return true; }
|
|
|
|
virtual void SerializeGameState(FSerializer& arc) {}
|
2020-06-20 15:52:10 +00:00
|
|
|
virtual bool CleanupForLoad() { return true; }
|
|
|
|
virtual void DrawPlayerSprite(const DVector2& origin, bool onteam) {}
|
|
|
|
virtual void QuitToTitle() {}
|
|
|
|
virtual void SetAmbience(bool on) {}
|
|
|
|
virtual FString GetCoordString() { return "'stat coord' not implemented"; }
|
2020-07-04 13:51:02 +00:00
|
|
|
virtual bool CheatAllowed(bool printmsg) { return true; }
|
2020-07-18 19:28:57 +00:00
|
|
|
virtual void ExitFromMenu() { throw CExitEvent(0); }
|
2020-08-16 00:55:50 +00:00
|
|
|
virtual ReservedSpace GetReservedScreenSpace(int viewsize) { return { 0, 0 }; }
|
2020-08-24 18:20:15 +00:00
|
|
|
virtual void ResetFollowPos(bool) {}
|
|
|
|
|
2020-06-20 15:52:10 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
extern GameInterface* gi;
|
|
|
|
|
|
|
|
|
|
|
|
void ImGui_Begin_Frame();
|
|
|
|
|