mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-15 08:52:01 +00:00
454816299e
Due to dependencies on initializing some data in app_init it was not possible to cleanly set up the fonts. This adds a game-side function for loading the entire palettes before starting with the texture data and another one for loading game-side texture data. This now allows fully setting up the palettes before starting with the textures and to fully set up the textures before reading the .def files. All this is needed because to properly initialize, the fonts need to be able to access the fully initialized texture state, including replacements and hires substitutions from the .def files.
143 lines
4.3 KiB
C++
143 lines
4.3 KiB
C++
#pragma once
|
|
|
|
bool System_WantGuiCapture(); // During playing this tells us whether the game must be paused due to active GUI elememts.
|
|
|
|
#include <stdint.h>
|
|
#include "vectors.h"
|
|
#include "engineerrors.h"
|
|
#include "stats.h"
|
|
#include "packet.h"
|
|
#include "binaryangle.h"
|
|
#include "inputstate.h"
|
|
|
|
class FSerializer;
|
|
struct FRenderViewpoint;
|
|
struct spritetype;
|
|
|
|
struct GameStats
|
|
{
|
|
int kill, tkill;
|
|
int secret, tsecret;
|
|
int timesecnd;
|
|
int frags;
|
|
};
|
|
|
|
struct FNewGameStartup
|
|
{
|
|
int Episode;
|
|
int Level;
|
|
int Skill;
|
|
};
|
|
|
|
struct FSavegameInfo
|
|
{
|
|
const char *savesig;
|
|
int minsavever;
|
|
int currentsavever;
|
|
};
|
|
|
|
struct ReservedSpace
|
|
{
|
|
int top;
|
|
int statusbar;
|
|
};
|
|
|
|
enum EMenuSounds : int;
|
|
struct MapRecord;
|
|
|
|
extern cycle_t drawtime, actortime, thinktime, gameupdatetime;
|
|
|
|
struct GeoEffect
|
|
{
|
|
int* geosectorwarp;
|
|
int* geosectorwarp2;
|
|
int* geosector;
|
|
int* geox;
|
|
int* geoy;
|
|
int* geox2;
|
|
int* geoy2;
|
|
int geocnt;
|
|
|
|
};
|
|
|
|
struct GameInterface
|
|
{
|
|
virtual const char* Name() { return "$"; }
|
|
virtual ~GameInterface() {}
|
|
virtual bool GenerateSavePic() { return false; }
|
|
virtual void app_init() = 0;
|
|
virtual void LoadGameTextures() {}
|
|
virtual void loadPalette();
|
|
virtual void clearlocalinputstate() {}
|
|
virtual void UpdateScreenSize() {}
|
|
virtual void FreeLevelData();
|
|
virtual void FreeGameData() {}
|
|
virtual void PlayHudSound() {}
|
|
virtual GameStats getStats() { return {}; }
|
|
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 bool StartGame(FNewGameStartup& gs) { return true; }
|
|
virtual FSavegameInfo GetSaveSig() { return { "", 0, 0}; }
|
|
virtual double SmallFontScale() { return 1; }
|
|
virtual void SerializeGameState(FSerializer& arc) {}
|
|
virtual void DrawPlayerSprite(const DVector2& origin, bool onteam) {}
|
|
virtual void SetAmbience(bool on) {}
|
|
virtual FString GetCoordString() { return "'stat coord' not implemented"; }
|
|
virtual void ExitFromMenu() { throw CExitEvent(0); }
|
|
virtual ReservedSpace GetReservedScreenSpace(int viewsize) { return { 0, 0 }; }
|
|
virtual void GetInput(InputPacket* packet, ControlInfo* const hidInput) {}
|
|
virtual void UpdateSounds() {}
|
|
virtual void ErrorCleanup() {}
|
|
virtual void Startup() {}
|
|
virtual void DrawBackground() {}
|
|
virtual void Render() {}
|
|
virtual void Ticker() {}
|
|
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) {}
|
|
virtual void NewGame(MapRecord* map, int skill, bool special = false) {}
|
|
virtual void LevelCompleted(MapRecord* map, int skill) {}
|
|
virtual bool DrawAutomapPlayer(int x, int y, int z, int a, double const smoothratio) { return false; }
|
|
virtual void SetTileProps(int tile, int surf, int vox, int shade) {}
|
|
virtual fixed_t playerHorizMin() { return IntToFixed(-200); }
|
|
virtual fixed_t playerHorizMax() { return IntToFixed(200); }
|
|
virtual int playerKeyMove() { return 0; }
|
|
virtual void WarpToCoords(int x, int y, int z, int a, int h) {}
|
|
virtual void ToggleThirdPerson() { }
|
|
virtual void SwitchCoopView() { Printf("Unsupported command\n"); }
|
|
virtual void ToggleShowWeapon() { Printf("Unsupported command\n"); }
|
|
virtual int chaseCamX(binangle ang) { return 0; }
|
|
virtual int chaseCamY(binangle ang) { return 0; }
|
|
virtual int chaseCamZ(fixedhoriz horiz) { return 0; }
|
|
virtual void processSprites(spritetype* tsprite, int& spritesortcnt, int viewx, int viewy, int viewz, binangle viewang, double smoothRatio) = 0;
|
|
virtual void UpdateCameras(double smoothratio) {}
|
|
virtual void EnterPortal(spritetype* viewer, int type) {}
|
|
virtual void LeavePortal(spritetype* viewer, int type) {}
|
|
virtual bool GetGeoEffect(GeoEffect* eff, int viewsector) { return false; }
|
|
virtual int Voxelize(int sprnum) { return -1; }
|
|
|
|
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();
|
|
|