From 3dbb8cbb11205b2b1a45a9222d43f91baf384b8c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 5 Oct 2020 21:47:53 +0200 Subject: [PATCH] - safety commit --- source/blood/src/blood.h | 1 - source/blood/src/d_menu.cpp | 17 ------------- source/blood/src/endgame.cpp | 18 +++++++++++--- source/blood/src/misc.h | 1 - .../common/scripting/interface/vmnatives.cpp | 12 ++++++++++ source/core/gamestruct.h | 1 - source/core/textures/buildtiles.cpp | 17 +++++++++++++ source/exhumed/src/d_menu.cpp | 6 ----- source/exhumed/src/exhumed.h | 1 - source/games/duke/src/d_menu.cpp | 20 +++------------- source/games/duke/src/duke3d.h | 1 - source/sw/src/d_menu.cpp | 6 ----- source/sw/src/game.h | 3 +-- wadsrc/static/zscript.txt | 2 ++ wadsrc/static/zscript/base.zs | 1 + wadsrc/static/zscript/games/blood/ui/menu.zs | 24 +++++++++++++++++++ 16 files changed, 75 insertions(+), 56 deletions(-) create mode 100644 wadsrc/static/zscript/games/blood/ui/menu.zs diff --git a/source/blood/src/blood.h b/source/blood/src/blood.h index cf59adac2..5b304d1a3 100644 --- a/source/blood/src/blood.h +++ b/source/blood/src/blood.h @@ -81,7 +81,6 @@ struct GameInterface : ::GameInterface bool CanSave() override; bool StartGame(FNewGameStartup& gs) override; void DrawNativeMenuText(int fontnum, int state, double xpos, double ypos, float fontscale, const char* text, int flags) override; - void DrawMenuCaption(const DVector2& origin, const char* text) override; bool SaveGame(FSaveGameNode*) override; bool LoadGame(FSaveGameNode*) override; void DrawCenteredTextScreen(const DVector2& origin, const char* text, int position, bool bg) override; diff --git a/source/blood/src/d_menu.cpp b/source/blood/src/d_menu.cpp index 0b2eb64f2..6a4066bda 100644 --- a/source/blood/src/d_menu.cpp +++ b/source/blood/src/d_menu.cpp @@ -269,23 +269,6 @@ FSavegameInfo GameInterface::GetSaveSig() return { SAVESIG_BLD, MINSAVEVER_BLD, SAVEVER_BLD }; } -// This also gets used by the summary and the loading screen -void DrawMenuCaption(const char* text) -{ - double scalex = 1.; // Expand the box if the text is longer - int width = BigFont->StringWidth(text); - int boxwidth = tileWidth(2038); - if (boxwidth - 10 < width) scalex = double(width) / (boxwidth - 10); - - DrawTexture(twod, tileGetTexture(2038, true), 160, 20, DTA_FullscreenScale, FSMode_Fit320x200Top, DTA_CenterOffsetRel, true, DTA_ScaleX, scalex, TAG_DONE); - DrawText(twod, BigFont, CR_UNDEFINED, 160 - width/2, 20 - tileHeight(4193) / 2, text, DTA_FullscreenScale, FSMode_Fit320x200Top, TAG_DONE); -} - -void GameInterface::DrawMenuCaption(const DVector2& origin, const char* text) -{ - Blood::DrawMenuCaption(text); -} - void GameInterface::DrawCenteredTextScreen(const DVector2& origin, const char* text, int position, bool bg) { if (text) diff --git a/source/blood/src/endgame.cpp b/source/blood/src/endgame.cpp index 96e4544fa..66c89f0dc 100644 --- a/source/blood/src/endgame.cpp +++ b/source/blood/src/endgame.cpp @@ -87,6 +87,18 @@ static void drawTextScreenBackground(void) } } +// One these screens get scriptified this should use the version in menuCustomizerBlood. +static void DrawCaption(const char* text) +{ + double scalex = 1.; // Expand the box if the text is longer + int width = BigFont->StringWidth(text); + int boxwidth = tileWidth(2038); + if (boxwidth - 10 < width) scalex = double(width) / (boxwidth - 10); + + DrawTexture(twod, tileGetTexture(2038, true), 160, 20, DTA_FullscreenScale, FSMode_Fit320x200Top, DTA_CenterOffsetRel, true, DTA_ScaleX, scalex, TAG_DONE); + DrawText(twod, BigFont, CR_UNDEFINED, 160 - width / 2, 20 - tileHeight(4193) / 2, text, DTA_FullscreenScale, FSMode_Fit320x200Top, TAG_DONE); +} + class DBloodSummaryScreen : public DScreenJob { @@ -141,7 +153,7 @@ class DBloodSummaryScreen : public DScreenJob drawTextScreenBackground(); if (gGameOptions.nGameType == 0) { - DrawMenuCaption(GStrings("TXTB_LEVELSTATS")); + DrawCaption(GStrings("TXTB_LEVELSTATS")); if (bPlayerCheated) { auto text = GStrings("TXTB_CHEATED"); @@ -154,7 +166,7 @@ class DBloodSummaryScreen : public DScreenJob } else { - DrawMenuCaption(GStrings("TXTB_FRAGSTATS")); + DrawCaption(GStrings("TXTB_FRAGSTATS")); DrawKills(); } int myclock = int(clock * 120 / 1'000'000'000); @@ -301,7 +313,7 @@ public: { twod->ClearScreen(); drawTextScreenBackground(); - DrawMenuCaption(pzLoadingScreenText1); + DrawCaption(pzLoadingScreenText1); viewDrawText(1, rec->DisplayName(), 160, 50, -128, 0, 1, 1); auto text = GStrings("TXTB_PLSWAIT"); diff --git a/source/blood/src/misc.h b/source/blood/src/misc.h index 3b539d1d0..d25f692c2 100644 --- a/source/blood/src/misc.h +++ b/source/blood/src/misc.h @@ -143,6 +143,5 @@ void tilePrecacheTile(int nTile, int nType, HitList& hits); char tileGetSurfType(int hit); void scrLoadPalette(void); -void DrawMenuCaption(const char* text); END_BLD_NS diff --git a/source/common/scripting/interface/vmnatives.cpp b/source/common/scripting/interface/vmnatives.cpp index ed0308e63..25d5ccba8 100644 --- a/source/common/scripting/interface/vmnatives.cpp +++ b/source/common/scripting/interface/vmnatives.cpp @@ -355,6 +355,18 @@ DEFINE_ACTION_FUNCTION_NATIVE(FFont, GetCursor, GetCursor) ACTION_RETURN_STRING(FString(self->GetCursor())); } +static int GetGlyphHeight(FFont* fnt, int code) +{ + auto glyph = fnt->GetChar(code, CR_UNTRANSLATED, nullptr); + return glyph ? (int)glyph->GetDisplayHeight() : 0; +} + +DEFINE_ACTION_FUNCTION_NATIVE(FFont, GetGlyphHeight, GetGlyphHeight) +{ + PARAM_SELF_STRUCT_PROLOGUE(FFont); + PARAM_INT(code); + ACTION_RETURN_INT(GetGlyphHeight(self, code)); +} //========================================================================== // // file system diff --git a/source/core/gamestruct.h b/source/core/gamestruct.h index f4c029f60..dc95c80ac 100644 --- a/source/core/gamestruct.h +++ b/source/core/gamestruct.h @@ -83,7 +83,6 @@ struct GameInterface virtual bool DrawSpecialScreen(const DVector2 &origin, int tilenum) { return false; } virtual void DrawCenteredTextScreen(const DVector2& origin, const char* text, int position, bool withbg = true); virtual double SmallFontScale() { return 1; } - virtual void DrawMenuCaption(const DVector2& origin, const char* text) {} virtual bool SaveGame(FSaveGameNode*) { return true; } virtual bool LoadGame(FSaveGameNode*) { return true; } virtual void SerializeGameState(FSerializer& arc) {} diff --git a/source/core/textures/buildtiles.cpp b/source/core/textures/buildtiles.cpp index 223ff1ed6..c1b20d1d6 100644 --- a/source/core/textures/buildtiles.cpp +++ b/source/core/textures/buildtiles.cpp @@ -1194,3 +1194,20 @@ void processSetAnim(const char* cmd, FScriptPosition& pos, SetAnim& imp) TileSiz tilesiz; PicAnm picanm; + +#include "vm.h" + +static int GetTexture(int tile, int anim) +{ + if (tile < 0 || tile >= MAXTILES) return 0; + auto tex = tileGetTexture(tile, anim); + return tex ? tex->GetID().GetIndex() : 0; +} + +DEFINE_ACTION_FUNCTION_NATIVE(_TileFiles, GetTexture, GetTexture) +{ + PARAM_PROLOGUE; + PARAM_INT(tile); + PARAM_BOOL(animate); + ACTION_RETURN_INT(GetTexture(tile, animate)); +} diff --git a/source/exhumed/src/d_menu.cpp b/source/exhumed/src/d_menu.cpp index d03242d38..96ccd702d 100644 --- a/source/exhumed/src/d_menu.cpp +++ b/source/exhumed/src/d_menu.cpp @@ -179,12 +179,6 @@ FSavegameInfo GameInterface::GetSaveSig() return { SAVESIG_PS, MINSAVEVER_PS, SAVEVER_PS }; } -void GameInterface::DrawMenuCaption(const DVector2& origin, const char* text) -{ - // Fixme: should use the extracted font from the menu items (i.e. BigFont) and a stretched box for the menu items. - DrawText(twod, SmallFont, CR_UNTRANSLATED, 160 - SmallFont->StringWidth(text)/2, 10, text, DTA_FullscreenScale, FSMode_Fit320x200Top, TAG_DONE); -} - END_PS_NS diff --git a/source/exhumed/src/exhumed.h b/source/exhumed/src/exhumed.h index bcfaac9f4..9e531724c 100644 --- a/source/exhumed/src/exhumed.h +++ b/source/exhumed/src/exhumed.h @@ -243,7 +243,6 @@ struct GameInterface : ::GameInterface void MenuClosed() override; bool StartGame(FNewGameStartup& gs) override; FSavegameInfo GetSaveSig() override; - void DrawMenuCaption(const DVector2& origin, const char* text) override; bool LoadGame(FSaveGameNode* sv) override; bool SaveGame(FSaveGameNode* sv) override; bool CanSave() override; diff --git a/source/games/duke/src/d_menu.cpp b/source/games/duke/src/d_menu.cpp index 39a4ecf75..9fadefc63 100644 --- a/source/games/duke/src/d_menu.cpp +++ b/source/games/duke/src/d_menu.cpp @@ -314,20 +314,6 @@ FSavegameInfo GameInterface::GetSaveSig() return { SAVESIG_DN3D, MINSAVEVER_DN3D, SAVEVER_DN3D }; } -void GameInterface::DrawMenuCaption(const DVector2& origin, const char* text) -{ - DrawTexture(twod, tileGetTexture(TILE_MENUBAR), origin.X + 160, origin.Y + 19, DTA_FullscreenScale, FSMode_Fit320x200Top, DTA_Color, 0xff808080, DTA_CenterOffsetRel, 1, TAG_DONE); - - FString t = text; - size_t newlen = t.Len(); - if (t[t.Len() - 1] == ':') newlen--; - if (newlen > 63) newlen = 63; - t.Truncate(newlen); - double scale = isRR() ? 0.4 : 1.0; - double x = 160 + origin.X - BigFont->StringWidth(t) * scale * 0.5; - DrawText(twod, BigFont, CR_UNTRANSLATED, x, origin.Y + 12, t, DTA_FullscreenScale, FSMode_Fit320x200Top, DTA_ScaleX, scale, DTA_ScaleY, scale, TAG_DONE); -} - void GameInterface::DrawCenteredTextScreen(const DVector2 &origin, const char *text, int position, bool bg) { if (bg) Menu_DrawBackground(origin); @@ -401,7 +387,7 @@ bool GameInterface::DrawSpecialScreen(const DVector2& origin, int tilenum) if (tilenum == 2504) { Menu_DrawBackground(origin); - DrawMenuCaption(origin, GStrings("MNU_CREDITS")); + //DrawMenuCaption(origin, GStrings("MNU_CREDITS")); m = int(origin.X * 65536) + (20 << 16); l = int(origin.Y * 65536) + (33 << 16); @@ -462,7 +448,7 @@ bool GameInterface::DrawSpecialScreen(const DVector2& origin, int tilenum) else if (tilenum == 2505) { Menu_DrawBackground(origin); - DrawMenuCaption(origin, GStrings("MNU_CREDITS")); + //DrawMenuCaption(origin, GStrings("MNU_CREDITS")); m = int(origin.X * 65536) + (20 << 16); l = int(origin.Y * 65536) + (33 << 16); @@ -505,7 +491,7 @@ bool GameInterface::DrawSpecialScreen(const DVector2& origin, int tilenum) else if (tilenum == 2506) { Menu_DrawBackground(origin); - DrawMenuCaption(origin, GStrings("MNU_CREDITS")); + //DrawMenuCaption(origin, GStrings("MNU_CREDITS")); mgametextcenter(int(origin.X * 65536), int(origin.Y * 65536) + (50 << 16), "Duke Nukem 3D is a trademark of"); mgametextcenter(int(origin.X * 65536), int(origin.Y * 65536) + (59 << 16), "3D Realms Entertainment"); mgametextcenter(int(origin.X * 65536), int(origin.Y * 65536) + (77 << 16), "Duke Nukem 3D"); diff --git a/source/games/duke/src/duke3d.h b/source/games/duke/src/duke3d.h index ed1638026..b6acf7a7c 100644 --- a/source/games/duke/src/duke3d.h +++ b/source/games/duke/src/duke3d.h @@ -45,7 +45,6 @@ struct GameInterface : public ::GameInterface FSavegameInfo GetSaveSig() override; void DrawCenteredTextScreen(const DVector2& origin, const char* text, int position, bool bg) override; double SmallFontScale() override { return isRR() ? 0.5 : 1.; } - void DrawMenuCaption(const DVector2& origin, const char* text) override; void SerializeGameState(FSerializer& arc) override; void QuitToTitle() override; bool DrawSpecialScreen(const DVector2& origin, int tilenum) override; diff --git a/source/sw/src/d_menu.cpp b/source/sw/src/d_menu.cpp index 8f555bc8e..0b330390b 100644 --- a/source/sw/src/d_menu.cpp +++ b/source/sw/src/d_menu.cpp @@ -247,12 +247,6 @@ FSavegameInfo GameInterface::GetSaveSig() return { SAVESIG_SW, MINSAVEVER_SW, SAVEVER_SW }; } -void GameInterface::DrawMenuCaption(const DVector2& origin, const char* text) -{ - DrawTexture(twod, tileGetTexture(2427), 10, 2, DTA_FullscreenScale, FSMode_Fit320x200Top, DTA_TopLeft, true, DTA_Color, 0xfff0f0f0, TAG_DONE); - DrawText(twod, BigFont, CR_UNDEFINED, 160 - BigFont->StringWidth(text) * 0.5, 5, text, DTA_FullscreenScale, FSMode_Fit320x200Top, TAG_DONE); -} - END_SW_NS diff --git a/source/sw/src/game.h b/source/sw/src/game.h index 7638daa19..a10ef9f65 100644 --- a/source/sw/src/game.h +++ b/source/sw/src/game.h @@ -2193,8 +2193,7 @@ struct GameInterface : ::GameInterface bool CanSave() override; bool StartGame(FNewGameStartup& gs) override; FSavegameInfo GetSaveSig() override; - void DrawMenuCaption(const DVector2& origin, const char* text) override; - bool LoadGame(FSaveGameNode* sv) override; + bool LoadGame(FSaveGameNode* sv) override; bool SaveGame(FSaveGameNode* sv) override; void SetAmbience(bool on) override { if (on) StartAmbientSound(); else StopAmbientSound(); } FString GetCoordString() override; diff --git a/wadsrc/static/zscript.txt b/wadsrc/static/zscript.txt index 97f42ba89..ff014d7d0 100644 --- a/wadsrc/static/zscript.txt +++ b/wadsrc/static/zscript.txt @@ -20,3 +20,5 @@ version "4.3" #include "zscript/ui/menu/textentermenu.zs" #include "zscript/ui/menu/menucustomize.zs" +#include "zscript/games/blood/ui/menu.zs" + diff --git a/wadsrc/static/zscript/base.zs b/wadsrc/static/zscript/base.zs index b6c654356..19fb306fc 100644 --- a/wadsrc/static/zscript/base.zs +++ b/wadsrc/static/zscript/base.zs @@ -482,6 +482,7 @@ struct Font native native static Font FindFont(Name fontname); native static Font GetFont(Name fontname); native BrokenLines BreakLines(String text, int maxlen); + native int GetGlyphHeight(int code); } struct Console native diff --git a/wadsrc/static/zscript/games/blood/ui/menu.zs b/wadsrc/static/zscript/games/blood/ui/menu.zs new file mode 100644 index 000000000..2d2dee43f --- /dev/null +++ b/wadsrc/static/zscript/games/blood/ui/menu.zs @@ -0,0 +1,24 @@ + +class MenuCustomizerBlood : MenuCustomize +{ + override int DrawCaption(String title, Font fnt, int y, bool drawit) + { + let font = generic_ui? NewConsoleFont : BigFont; // this ignores the passed font intentionally. + let texid = tileFiles.GetTexture(2038, true); + let texsize = TexMan.GetScaledSize(texid); + let fonth = fnt.GetGlyphHeight("A"); + if (drawit) + { + int width = font.StringWidth(title); + if (texid.isValid()) + { + double scalex = 1.; // Expand the box if the text is longer + if (texsize.X - 10 < width) scalex = texsize.X / (boxwidth - 10); + screen.DrawTexture(texid, false, 160, 20, DTA_FullscreenScale, FSMode_Fit320x200Top, DTA_CenterOffsetRel, true, DTA_ScaleX, scalex); + } + screen.DrawText(fnt, Font.CR_UNDEFINED, 160 - width / 2, 20 - fonth / 2, text, DTA_FullscreenScale, FSMode_Fit320x200Top); + } + int h = texid.isValid()? texsize.Y : fonth; + return y + h * screen.GetHeight() * CleanYfac_1 / 200; // option menus use Clean?fac_1 so we have to convert to that screen space. + } +}