#pragma once bool System_WantGuiCapture(); // During playing this tells us whether the game must be paused due to active GUI elememts. #include #include "vectors.h" #include "engineerrors.h" #include "stats.h" #include "packet.h" #include "serializer.h" #include "inputstate.h" #include "maptypes.h" class FSerializer; struct FRenderViewpoint; struct sectortype; struct tspritetype; class DCoreActor; struct MapRecord; struct PlayerAngles; struct GameStats { int kill, tkill; int secret, tsecret; int timesecnd; int frags; }; struct FNewGameStartup { MapRecord* Map; int Episode; int Level; int Skill; }; struct FSavegameInfo { const char *savesig; int minsavever; int currentsavever; }; enum EMenuSounds : int; struct MapRecord; struct TilesetBuildInfo; extern cycle_t drawtime, actortime, thinktime, gameupdatetime; struct GeoEffect { sectortype** geosectorwarp; sectortype** geosectorwarp2; sectortype** geosector; double* geox; double* geoy; double* geox2; double* geoy2; int geocnt; }; struct GameInterface { virtual const char* Name() { return "$"; } virtual ~GameInterface() {} virtual bool GenerateSavePic() { return false; } virtual void app_init() = 0; virtual void LoadTextureInfo(TilesetBuildInfo& info) {} virtual void SetupSpecialTextures(TilesetBuildInfo&) = 0; virtual void loadPalette() = 0; virtual void FreeLevelData(); virtual void FreeGameData() {} virtual void PlayHudSound() {} virtual GameStats getStats() { return {}; } virtual void MenuOpened() {} virtual void MenuClosed() {} virtual void MenuSound(EMenuSounds snd) {} virtual bool CanSave() { return true; } virtual bool StartGame(FNewGameStartup& gs) { return true; } virtual FSavegameInfo GetSaveSig() { return { "", 0, 0}; } virtual double SmallFontScale() { return 1; } virtual void SerializeGameState(FSerializer& arc) = 0; virtual void DrawPlayerSprite(const DVector2& origin, bool onteam) {} virtual void SetAmbience(bool on) {} virtual void ExitFromMenu() { throw CExitEvent(0); } virtual void UpdateSounds() = 0; virtual void ErrorCleanup() {} virtual void Startup() = 0; virtual void DrawBackground() = 0; virtual void Render() = 0; virtual void Ticker() = 0; virtual int GetPlayerChecksum(int pnum) { return 0x12345678 + pnum; } virtual const char *CheckCheatMode() { return nullptr; } virtual const char* GenericCheat(int player, int cheat) = 0; virtual void NextLevel(MapRecord* map, int skill) = 0; virtual void NewGame(MapRecord* map, int skill, bool special = false) = 0; virtual void LevelCompleted(MapRecord* map, int skill) = 0; virtual bool DrawAutomapPlayer(const DVector2& mxy, const DVector2& cpos, const DAngle cang, const DVector2& xydim, const double czoom, double const interpfrac) { return false; } virtual DAngle playerPitchMin() { return DAngle::fromDeg(57.375); } virtual DAngle playerPitchMax() { return DAngle::fromDeg(-57.375); } virtual DCoreActor* getConsoleActor() = 0; virtual void ToggleThirdPerson() = 0; virtual void SwitchCoopView() { Printf("Unsupported command\n"); } virtual void ToggleShowWeapon() { Printf("Unsupported command\n"); } virtual void processSprites(tspriteArray& tsprites, const DVector3& view, DAngle viewang, double interpfrac) = 0; virtual void UpdateCameras(double smoothratio) {} virtual void EnterPortal(DCoreActor* viewer, int type) {} virtual void LeavePortal(DCoreActor* viewer, int type) {} virtual bool GetGeoEffect(GeoEffect* eff, sectortype* viewsector) { return false; } virtual int Voxelize(int sprnum) { return -1; } virtual void AddExcludedEpisode(const FString& episode) {} virtual int GetCurrentSkill() { return -1; } virtual bool IsQAVInterpTypeValid(const FString& type) { return false; } virtual void AddQAVInterpProps(const int res_id, const FString& interptype, const bool loopable, const TMap>&& ignoredata) { } virtual void RemoveQAVInterpProps(const int res_id) { } virtual bool WantEscape() { return false; } virtual void StartSoundEngine() = 0; virtual void reapplyInputBits(InputPacket* const input) = 0; virtual void doPlayerMovement(const float scaleAdjust) = 0; virtual FString statFPS() { FString output; output.AppendFormat("Actor think time: %.3f ms\n", actortime.TimeMS()); output.AppendFormat("Total think time: %.3f ms\n", thinktime.TimeMS()); output.AppendFormat("Game Update: %.3f ms\n", gameupdatetime.TimeMS()); output.AppendFormat("Draw time: %.3f ms\n", drawtime.TimeMS()); return output; } }; extern GameInterface* gi; void ImGui_Begin_Frame();