From ee559b7ba9a7a749f9a6f9b368abc18745303b77 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 16 May 2021 10:35:33 +0200 Subject: [PATCH] - removed all leftover parts of the native status bars. --- source/core/gamecontrol.cpp | 10 +- source/core/statusbar.h | 60 +- source/core/statusbar2.cpp | 202 +----- source/games/sw/src/sbar.cpp | 1000 ----------------------------- wadsrc/static/zscript/razebase.zs | 9 - 5 files changed, 4 insertions(+), 1277 deletions(-) diff --git a/source/core/gamecontrol.cpp b/source/core/gamecontrol.cpp index c58d202b7..76f0e3d20 100644 --- a/source/core/gamecontrol.cpp +++ b/source/core/gamecontrol.cpp @@ -140,7 +140,7 @@ void PostLoadSetup(); void FontCharCreated(FGameTexture* base, FGameTexture* untranslated, FGameTexture* translated); void LoadVoxelModels(); -DBaseStatusBar* StatusBar; +DStatusBarCore* StatusBar; bool AppActive = true; @@ -825,15 +825,9 @@ void CreateStatusBar() { I_FatalError("No status bar defined"); } - StatusBar = static_cast(stbarclass->CreateNew()); + StatusBar = static_cast(stbarclass->CreateNew()); StatusBar->SetSize(0, 320, 200); InitStatusBar(); - // this is for comparing the scriptification with the C++ versions - stbarclass = PClass::FindClass("NativeSWStatusBar"); - StatusBar2 = static_cast(stbarclass->CreateNew()); - StatusBar2->SetSize(0, 320, 200); - StatusBar2->Release(); - } diff --git a/source/core/statusbar.h b/source/core/statusbar.h index 0dbde56a8..4404a4dca 100644 --- a/source/core/statusbar.h +++ b/source/core/statusbar.h @@ -70,64 +70,7 @@ enum HUDMSGLayer_Default = HUDMSGLayer_OverHUD, }; -struct FLevelStats -{ - int screenbottomspace; - int time; // in milliseconds - int frags; - int kills, maxkills; // set maxkills to -1 to ignore, or to -2 to only print kills - int secrets, maxsecrets, supersecrets; // set maxsecrets to -1 to ignore - int spacing; // uses fontheight if 0 or less. - EColorRange letterColor, standardColor, completeColor; - double fontscale; - FFont* font; -}; - -//============================================================================ -// -// -// -//============================================================================ - -class DBaseStatusBar : public DStatusBarCore -{ - DECLARE_ABSTRACT_CLASS (DBaseStatusBar, DStatusBarCore) - -public: - DBaseStatusBar (); - virtual ~DBaseStatusBar() = default; - - // do not make this a DObject Serialize function because it's not used like one! - //void SerializeMessages(FSerializer &arc); - - virtual void Tick (); - - void PrintLevelStats(FLevelStats& stats); - void PrintAutomapInfo(FLevelStats& stats, bool forcetextfont = false); - int GetTopOfStatusbar() const - { - return SBarTop; - } - short CalcMagazineAmount(short ammo_remaining, short clip_capacity, bool reloading); - void Set43ClipRect(); - virtual void UpdateStatusBar() = 0; - - -private: - DObject *AltHud = nullptr; - -public: - - - bool Centering; - bool FixedOrigin; - -private: - -}; - -extern DBaseStatusBar *StatusBar; -inline DBaseStatusBar* StatusBar2; +extern DStatusBarCore *StatusBar; // Status bar factories ----------------------------------------------------- @@ -137,7 +80,6 @@ void ST_Clear(); extern FGameTexture *CrosshairImage; -void SBar_DrawString(DStatusBarCore* self, DHUDFont* font, const FString& string, double x, double y, int flags, int trans, double alpha, int wrapwidth, int linespacing, double scaleX, double scaleY, int pt = 0, int style = STYLE_Translucent); void setViewport(int viewSize); struct MapRecord; void setLevelStarted(MapRecord *); diff --git a/source/core/statusbar2.cpp b/source/core/statusbar2.cpp index fd08c88c2..8b9018663 100644 --- a/source/core/statusbar2.cpp +++ b/source/core/statusbar2.cpp @@ -64,12 +64,6 @@ #include "../version.h" -#define XHAIRSHRINKSIZE (1./18) -#define XHAIRPICKUPSIZE (2+XHAIRSHRINKSIZE) -#define POWERUPICONSIZE 32 - -//IMPLEMENT_CLASS(DHUDFont, true, false); - EXTERN_CVAR (Bool, am_showmonsters) EXTERN_CVAR (Bool, am_showsecrets) EXTERN_CVAR (Bool, am_showtime) @@ -78,12 +72,10 @@ EXTERN_CVAR (Bool, noisedebug) EXTERN_CVAR(Bool, vid_fps) EXTERN_CVAR(Bool, inter_subtitles) -//extern DBaseStatusBar *StatusBar; - extern int setblocks; -IMPLEMENT_CLASS(DBaseStatusBar, true, false) //--------------------------------------------------------------------------- +// // ST_Clear // //--------------------------------------------------------------------------- @@ -99,198 +91,6 @@ void ST_Clear() */ } -//--------------------------------------------------------------------------- -// -// Constructor -// -//--------------------------------------------------------------------------- -DBaseStatusBar::DBaseStatusBar () -{ - CompleteBorder = false; - Centering = false; - FixedOrigin = false; - SetSize(0); -} - -//--------------------------------------------------------------------------- -// -// PROC Tick -// -//--------------------------------------------------------------------------- - -void DBaseStatusBar::Tick () -{ -} - - -static DObject *InitObject(PClass *type, int paramnum, VM_ARGS) -{ - auto obj = type->CreateNew(); - // Todo: init - return obj; -} - -//============================================================================ -// -// -// -//============================================================================ - -void DBaseStatusBar::PrintLevelStats(FLevelStats &stats) -{ - double y; - double scale = stats.fontscale * hud_statscale; - if (stats.spacing <= 0) stats.spacing = xs_CRoundToInt(stats.font->GetHeight() * stats.fontscale); - double spacing = stats.spacing * hud_statscale; - if (stats.screenbottomspace < 0) - { - y = 200 - (RelTop - stats.screenbottomspace) * hud_scalefactor - spacing; - } - else - { - y = 200 - stats.screenbottomspace * hud_scalefactor - spacing; - } - - double y1, y2, y3; - - if (stats.maxsecrets > 0) // don't bother if there are no secrets. - { - y1 = y; - y -= spacing; - } - if (stats.frags >= 0 || stats.maxkills != -1) - { - y2 = y; - y -= spacing; - } - y3 = y; - - - FString text; - int black = 0x80000000; - - text.Format(TEXTCOLOR_ESCAPESTR "%cT: " TEXTCOLOR_ESCAPESTR "%c%d:%02d", stats.letterColor + 'A', stats.standardColor + 'A', stats.time / 60000, (stats.time % 60000) / 1000); - DrawText(twod, stats.font, CR_UNTRANSLATED, 2 * hud_statscale + scale, y3 + scale, text, DTA_FullscreenScale, FSMode_ScaleToHeight, DTA_VirtualWidth, 320, DTA_VirtualHeight, 200, - DTA_KeepRatio, true, DTA_ScaleX, scale, DTA_ScaleY, scale, DTA_LegacyRenderStyle, STYLE_TranslucentStencil, DTA_Color, black, TAG_DONE); - DrawText(twod, stats.font, CR_UNTRANSLATED, 2 * hud_statscale, y3, text, DTA_FullscreenScale, FSMode_ScaleToHeight, DTA_VirtualWidth, 320, DTA_VirtualHeight, 200, - DTA_KeepRatio, true, DTA_ScaleX, scale, DTA_ScaleY, scale, TAG_DONE); - - text = ""; - if (stats.frags > -1) text.Format(TEXTCOLOR_ESCAPESTR "%cF: " TEXTCOLOR_ESCAPESTR "%c%d", stats.letterColor + 'A', stats.standardColor + 'A', stats.frags); - else if (stats.maxkills == -2) text.Format(TEXTCOLOR_ESCAPESTR "%cK: " TEXTCOLOR_ESCAPESTR "%c%d", stats.letterColor + 'A', stats.standardColor + 'A', stats.kills); - else if (stats.maxkills != -1) text.Format(TEXTCOLOR_ESCAPESTR "%cK: " TEXTCOLOR_ESCAPESTR "%c%d/%d", - stats.letterColor + 'A', stats.kills == stats.maxkills ? stats.completeColor + 'A' : stats.standardColor + 'A', stats.kills, stats.maxkills); - - if (text.IsNotEmpty()) - { - DrawText(twod, stats.font, CR_UNTRANSLATED, 2 * hud_statscale+scale, y2+scale, text, DTA_FullscreenScale, FSMode_ScaleToHeight, DTA_VirtualWidth, 320, DTA_VirtualHeight, 200, - DTA_KeepRatio, true, DTA_ScaleX, scale, DTA_ScaleY, scale, DTA_LegacyRenderStyle, STYLE_TranslucentStencil, DTA_Color, black, TAG_DONE); - - DrawText(twod, stats.font, CR_UNTRANSLATED, 2 * hud_statscale, y2, text, DTA_FullscreenScale, FSMode_ScaleToHeight, DTA_VirtualWidth, 320, DTA_VirtualHeight, 200, - DTA_KeepRatio, true, DTA_ScaleX, scale, DTA_ScaleY, scale, TAG_DONE); - } - - if (stats.maxsecrets > 0) // don't bother if there are no secrets. - { - if (stats.supersecrets <= 0) - text.Format(TEXTCOLOR_ESCAPESTR "%cS: " TEXTCOLOR_ESCAPESTR "%c%d/%d", - stats.letterColor + 'A', stats.secrets >= stats.maxsecrets ? stats.completeColor + 'A' : stats.standardColor + 'A', stats.secrets, stats.maxsecrets); - else - text.Format(TEXTCOLOR_ESCAPESTR "%cS: " TEXTCOLOR_ESCAPESTR "%c%d/%d+%d", - stats.letterColor + 'A', stats.secrets >= stats.maxsecrets ? stats.completeColor + 'A' : stats.standardColor + 'A', stats.secrets, stats.maxsecrets, stats.supersecrets); - - - DrawText(twod, stats.font, CR_UNTRANSLATED, 2 * hud_statscale + scale, y1 + scale, text, DTA_FullscreenScale, FSMode_ScaleToHeight, DTA_VirtualWidth, 320, DTA_VirtualHeight, 200, - DTA_KeepRatio, true, DTA_ScaleX, scale, DTA_ScaleY, scale, DTA_LegacyRenderStyle, STYLE_TranslucentStencil, DTA_Color, black, TAG_DONE); - - DrawText(twod, stats.font, CR_UNTRANSLATED, 2 * hud_statscale, y1, text, DTA_FullscreenScale, FSMode_ScaleToHeight, DTA_VirtualWidth, 320, DTA_VirtualHeight, 200, - DTA_KeepRatio, true, DTA_ScaleX, scale, DTA_ScaleY, scale, TAG_DONE); - } -} - -//============================================================================ -// -// -// -//============================================================================ - -void DBaseStatusBar::PrintAutomapInfo(FLevelStats& stats, bool forcetextfont) -{ - auto lev = currentLevel; - FString mapname; - if (am_showlabel) - mapname.Format(TEXTCOLOR_ESCAPESTR "%c%s: " TEXTCOLOR_ESCAPESTR "%c%s", stats.letterColor+'A', lev->LabelName(), stats.standardColor+'A', lev->DisplayName()); - else - mapname = lev->DisplayName(); - - forcetextfont |= am_textfont; - double y; - double scale = stats.fontscale * (forcetextfont ? *hud_statscale : 1); // the tiny default font used by all games here cannot be scaled for readability purposes. - if (stats.spacing <= 0) stats.spacing = xs_CRoundToInt(stats.font->GetHeight() * stats.fontscale); - double spacing = stats.spacing * (forcetextfont ? *hud_statscale : 1); - if (am_nameontop) - { - y = spacing + 1; - } - else if (stats.screenbottomspace < 0) - { - y = 200 - RelTop - spacing; - } - else - { - y = 200 - stats.screenbottomspace - spacing; - } - auto cluster = FindCluster(lev->cluster); - FString volname; - if (cluster) volname = cluster->name; - if (volname.IsEmpty() && am_nameontop) y = 1; - - DrawText(twod, stats.font, stats.standardColor, 2 * hud_statscale, y, mapname, DTA_FullscreenScale, FSMode_ScaleToHeight, DTA_VirtualWidth, 320, DTA_VirtualHeight, 200, - DTA_ScaleX, scale, DTA_ScaleY, scale, DTA_KeepRatio, true, TAG_DONE); - y -= spacing; - if (!(lev->flags & MI_USERMAP) && !(g_gameType & GAMEFLAG_PSEXHUMED) && volname.IsNotEmpty()) - DrawText(twod, stats.font, stats.standardColor, 2 * hud_statscale, y, GStrings.localize(volname), - DTA_FullscreenScale, FSMode_ScaleToHeight, DTA_VirtualWidth, 320, DTA_VirtualHeight, 200, - DTA_ScaleX, scale, DTA_ScaleY, scale, DTA_KeepRatio, true, TAG_DONE); -} - -//============================================================================ -// -// -// -//============================================================================ - -short DBaseStatusBar::CalcMagazineAmount(short ammo_remaining, short clip_capacity, bool reloading) -{ - // Determine amount in clip. - short clip_amount = ammo_remaining % clip_capacity; - - // Set current clip value to clip capacity if wrapped around to zero, otherwise use determined value. - short clip_current = ammo_remaining != 0 && clip_amount == 0 ? clip_capacity : clip_amount; - - // Return current clip value if weapon has rounds or is not on a reload cycle. - return ammo_remaining == 0 || (reloading && clip_amount == 0) ? 0 : clip_current; -} - -//============================================================================ -// -// -// -//============================================================================ - -void DBaseStatusBar::Set43ClipRect() -{ - auto GetWidth = [=]() { return twod->GetWidth(); }; - auto GetHeight = [=]() {return twod->GetHeight(); }; - - auto screenratio = ActiveRatio(GetWidth(), GetHeight()); - if (screenratio < 1.34) return; - - int width = xs_CRoundToInt(GetWidth() * 1.333 / screenratio); - int left = (GetWidth() - width) / 2; - twod->SetClipRect(left, 0, width, GetHeight()); -} - //============================================================================ // // diff --git a/source/games/sw/src/sbar.cpp b/source/games/sw/src/sbar.cpp index bd7c116ff..403cca123 100644 --- a/source/games/sw/src/sbar.cpp +++ b/source/games/sw/src/sbar.cpp @@ -46,1006 +46,6 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms BEGIN_SW_NS -enum -{ - ID_PanelMedkit = 2396, - ID_PanelRepairKit = 2399, - ID_PanelCloak = 2397, //2400 - ID_PanelNightVision = 2398, - ID_PanelChemBomb = 2407, - ID_PanelFlashBomb = 2408, - ID_PanelCaltrops = 2409, -}; - -static const short icons[] = { - ID_PanelMedkit, - ID_PanelRepairKit, - ID_PanelCloak, - ID_PanelNightVision, - ID_PanelChemBomb, - ID_PanelFlashBomb, - ID_PanelCaltrops, -}; - -class DNativeSWStatusBar : public DBaseStatusBar -{ - DECLARE_CLASS(DNativeSWStatusBar, DBaseStatusBar) - HAS_OBJECT_POINTERS - - TObjPtr miniFont, numberFont; - - enum - { - PANEL_HEALTH_BOX_X = 20, - PANEL_BOX_Y = (174 - 6), - PANEL_HEALTH_XOFF = 2, - PANEL_HEALTH_YOFF = 4, - - PANEL_AMMO_BOX_X = 197, - PANEL_AMMO_XOFF = 1, - PANEL_AMMO_YOFF = 4, - - WSUM_X = 93, - WSUM_Y = PANEL_BOX_Y+1, - WSUM_XOFF = 25, - WSUM_YOFF = 6, - - PANEL_KEYS_BOX_X = 276, - PANEL_KEYS_XOFF = 0, - PANEL_KEYS_YOFF = 2, - - PANEL_ARMOR_BOX_X = 56, - PANEL_ARMOR_XOFF = 2, - PANEL_ARMOR_YOFF = 4, - - FRAG_YOFF = 2, - - INVENTORY_BOX_X = 231, - INVENTORY_BOX_Y = (176-8), - - INVENTORY_PIC_XOFF = 1, - INVENTORY_PIC_YOFF = 1, - - INVENTORY_PERCENT_XOFF = 19, - INVENTORY_PERCENT_YOFF = 13, - - INVENTORY_STATE_XOFF = 19, - INVENTORY_STATE_YOFF = 1, - - MINI_BAR_Y = 174 , - MINI_BAR_HEALTH_BOX_X = 4, - MINI_BAR_AMMO_BOX_X = 32, - MINI_BAR_INVENTORY_BOX_X = 64, - MINI_BAR_INVENTORY_BOX_Y = MINI_BAR_Y, - - }; - - enum - { - PANEL_FONT_G = 3636, - PANEL_FONT_Y = 3646, - PANEL_FONT_R = 3656, - - PANEL_SM_FONT_G = 3601, - PANEL_SM_FONT_Y = 3613, - PANEL_SM_FONT_R = 3625, - - PANEL_KEY_RED = 2392, - PANEL_KEY_GREEN = 2393, - PANEL_KEY_BLUE = 2394, - PANEL_KEY_YELLOW = 2395, - PANEL_SKELKEY_GOLD = 2448, - PANEL_SKELKEY_SILVER= 2449, - PANEL_SKELKEY_BRONZE= 2458, - PANEL_SKELKEY_RED = 2459, - - MINI_BAR_HEALTH_BOX_PIC = 2437, - MINI_BAR_AMMO_BOX_PIC = 2437, - MINI_BAR_INVENTORY_BOX_PIC = 2438, - - ID_SelectionBox = 2435, - }; - - -public: - DNativeSWStatusBar() - { - numberFont = Create( BigFont, 0, Off, 1, 1 ); - miniFont = Create(SmallFont2, 0, Off, 1, 1 ); - numberFont->Release(); - miniFont->Release(); - } - -private: - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DisplayPanelNumber(double xs, double ys, int number) - { - char buffer[32]; - char* ptr; - double x; - - mysnprintf(buffer, 32, "%03d", number); - - for (ptr = buffer, x = xs; *ptr; ptr++) - { - if (!isdigit(*ptr)) - { - continue; - } - int tex = PANEL_FONT_G + (*ptr - '0'); - DrawGraphic(tileGetTexture(tex), x, ys, DI_ITEM_LEFT_TOP, 1, -1, -1, 1, 1); - x += tileWidth(tex) + 1; - } - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DisplaySummaryString(double xs, double ys, int color, int shade, const char* buffer) - { - double x; - const char* ptr; - char ch; - int font_pic; - static const short font_base[] = { PANEL_SM_FONT_G, PANEL_SM_FONT_Y, PANEL_SM_FONT_R }; - - assert(color < 3); - for (ptr = buffer, x = xs; *ptr; ptr++) - { - ch = *ptr; - if (ch == ' ') - { - x += 4; - continue; - } - - switch (ch) - { - case '\\': - ch = '0' - 1; // one pic before 0 - break; - case ':': - ch = '9' + 1; // one pic after nine - break; - } - - font_pic = font_base[color] + (ch - '0'); - DrawGraphic(tileGetTexture(font_pic), x, ys, DI_ITEM_LEFT_TOP, 1, -1, -1, 1, 1, STYLE_Translucent, shadeToLight(shade)); - x += tileWidth(font_pic) + 1; - } - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DisplayTimeLimit(PLAYERp pp) - { - int seconds = gNet.TimeLimitClock / 120; - sprintf(ds, "%03d:%02d", seconds / 60, seconds % 60); - DisplaySummaryString(PANEL_KEYS_BOX_X + 1, PANEL_BOX_Y + 6, 0, 0, ds); - } - - //--------------------------------------------------------------------------- - // - // todo: migrate to FFont to support localization - // - //--------------------------------------------------------------------------- - - void DisplayTinyString(double xs, double ys, const char* buffer, int pal) - { - SBar_DrawString(this, miniFont, buffer, xs, ys, DI_ITEM_LEFT_TOP, CR_UNTRANSLATED, 1, -1, -1, 1, 1); - } - - void DisplayFragString(PLAYERp pp, double xs, double ys, const char* buffer) - { - DisplayTinyString(xs, ys, buffer, User[pp->SpriteP - sprite]->spal); - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DisplayFragNumbers() - { - for (int pnum = 0; pnum < 4; pnum++) - { - char buffer[32]; - short xs, ys; - short frag_bar; - - static int xoffs[] = - { - 69, 147, 225, 303 - }; - - ys = FRAG_YOFF; - - // frag bar 0 or 1 - frag_bar = ((pnum) / 4); - // move y down according to frag bar number - ys = ys + (tileHeight(FRAG_BAR) - 2) * frag_bar; - - // move x over according to the number of players - xs = xoffs[MOD4(pnum)]; - - mysnprintf(buffer, 32, "%03d", Player[pnum].Kills); - - DisplayFragString(&Player[pnum], xs, ys, buffer); - } - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DisplayFragNames() - { - for (int pnum = 0; pnum < 4; pnum++) - { - short xs, ys; - short frag_bar; - - static int xoffs[] = - { - 7, 85, 163, 241 - }; - - ys = FRAG_YOFF; - - // frag bar 0 or 1 - frag_bar = ((pnum) / 4); - // move y down according to frag bar number - ys = ys + (tileHeight(FRAG_BAR) - 2) * frag_bar; - - // move x over according to the number of players - xs = xoffs[MOD4(pnum)]; - - DisplayFragString(&Player[pnum], xs, ys, Player[pnum].PlayerName); - } - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DisplayFragBar(PLAYERp pp) - { - // must draw this in HUD mode and align to the top center - short i, num_frag_bars; - int y; - - if (numplayers <= 1) - return; - - if (gNet.MultiGameType == MULTI_GAME_COOPERATIVE) - return; - - // if player sprite has not been initialized we have no business - // sticking a frag bar up. Prevents processing from MenuLevel etc. - if (!pp->SpriteP) - return; - - //num_frag_bars = ((numplayers-1)/4)+1; - num_frag_bars = ((OrigCommPlayers - 1) / 4) + 1; - - for (i = windowxy1.x; i <= windowxy2.x; i++) - { - y = (tileHeight(FRAG_BAR) * num_frag_bars) - (2 * (num_frag_bars - 1)); - y = y * ydim / 200; - } - - for (i = 0, y = 0; i < num_frag_bars; i++) - { - DrawGraphic(tileGetTexture(FRAG_BAR), 0, y, DI_ITEM_LEFT_TOP, 1, -1, -1, 1, 1); - y += tileHeight(FRAG_BAR) - 2; - } - DisplayFragNames(); - DisplayFragNumbers(); - } - - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void PlayerUpdateWeaponSummary(PLAYERp pp, int UpdateWeaponNum) - { - USERp u = User[pp->PlayerSprite].Data(); - int x, y; - int pos; - int column; - int WeaponNum, wpntmp; - int color, shade; - char ds[32]; - - WeaponNum = UpdateWeaponNum; - - if (DamageData[WeaponNum].with_weapon != -1) - { - WeaponNum = DamageData[WeaponNum].with_weapon; - } - - static short wsum_xoff[3] = { 0,36,66 }; - static const char* wsum_fmt2[3] = { "%3d/%-3d", "%2d/%-2d", "%2d/%-2d" }; - - pos = WeaponNum - 1; - column = pos / 3; - if (column > 2) column = 2; - x = WSUM_X + wsum_xoff[column]; - y = WSUM_Y + (WSUM_YOFF * (pos % 3)); - - if (UpdateWeaponNum == u->WeaponNum) - { - shade = 0; - color = 0; - } - else - { - shade = 11; - color = 0; - } - - wpntmp = WeaponNum + 1; - if (wpntmp > 9) - wpntmp = 0; - mysnprintf(ds, 32, "%d:", wpntmp); - - if (TEST(pp->WpnFlags, BIT(WeaponNum))) - DisplaySummaryString(x, y, 1, shade, ds); - else - DisplaySummaryString(x, y, 2, shade + 6, ds); - - mysnprintf(ds, 32, wsum_fmt2[column], pp->WpnAmmo[WeaponNum], DamageData[WeaponNum].max_ammo); - DisplaySummaryString(x + 6, y, color, shade, ds); - } - - void PlayerUpdateWeaponSummaryAll(PLAYERp pp) - { - for (int i = WPN_STAR; i <= WPN_HEART; i++) - { - PlayerUpdateWeaponSummary(pp, i); - } - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DisplayKeys(PLAYERp pp, double xs, double ys, double scalex = 1, double scaley = 1) - { - double x, y; - int row, col; - int i, xsize, ysize; - - static short StatusKeyPics[] = - { - PANEL_KEY_RED, - PANEL_KEY_BLUE, - PANEL_KEY_GREEN, - PANEL_KEY_YELLOW, - PANEL_SKELKEY_GOLD, - PANEL_SKELKEY_SILVER, - PANEL_SKELKEY_BRONZE, - PANEL_SKELKEY_RED - }; - - - xsize = tileWidth(PANEL_KEY_RED) + 1; - ysize = tileHeight(PANEL_KEY_RED) + 2; - - i = 0; - for (row = 0; row < 2; row++) - { - for (col = 0; col < 2; col++) - { - if (pp->HasKey[i]) - { - x = xs + PANEL_KEYS_XOFF + (row * xsize); - y = ys + PANEL_KEYS_YOFF + (col * ysize); - DrawGraphic(tileGetTexture(StatusKeyPics[i]), x, y, DI_ITEM_LEFT_TOP, 1, -1, -1, scalex, scaley); - } - i++; - } - } - - // Check for skeleton keys - i = 0; - for (row = 0; row < 2; row++) - { - for (col = 0; col < 2; col++) - { - if (pp->HasKey[i + 4]) - { - x = xs + PANEL_KEYS_XOFF + (row * xsize); - y = ys + PANEL_KEYS_YOFF + (col * ysize); - DrawGraphic(tileGetTexture(StatusKeyPics[i + 4]), x, y, DI_ITEM_LEFT_TOP, 1, -1, -1, scalex, scaley); - } - i++; - } - } - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void PlayerUpdateInventoryPercent(PLAYERp pp, int InventoryBoxX, int InventoryBoxY, int InventoryXoff, int InventoryYoff) - { - char ds[32]; - INVENTORY_DATAp id = &InventoryData[pp->InventoryNum]; - - int x = InventoryBoxX + INVENTORY_PERCENT_XOFF + InventoryXoff; - int y = InventoryBoxY + INVENTORY_PERCENT_YOFF + InventoryYoff; - - if (TEST(id->Flags, INVF_COUNT)) - { - mysnprintf(ds, 32, "%d", pp->InventoryAmount[pp->InventoryNum]); - } - else - { - mysnprintf(ds, 32, "%d%c", pp->InventoryPercent[pp->InventoryNum], '%'); - } - DisplayTinyString(x, y, ds, 0); - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void PlayerUpdateInventoryPic(PLAYERp pp, int InventoryBoxX, int InventoryBoxY, int InventoryXoff, int InventoryYoff) - { - INVENTORY_DATAp id = &InventoryData[pp->InventoryNum]; - int x = InventoryBoxX + INVENTORY_PIC_XOFF + InventoryXoff; - int y = InventoryBoxY + INVENTORY_PIC_YOFF + InventoryYoff; - DrawGraphic(tileGetTexture(icons[pp->InventoryNum]), x, y, DI_ITEM_LEFT_TOP, 1, -1, -1, id->Scale/65536., id->Scale / 65536.); - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void PlayerUpdateInventoryState(PLAYERp pp, double InventoryBoxX, double InventoryBoxY, int InventoryXoff, int InventoryYoff) - { - char ds[32]; - INVENTORY_DATAp id = &InventoryData[pp->InventoryNum]; - - double x = InventoryBoxX + INVENTORY_STATE_XOFF + InventoryXoff; - double y = InventoryBoxY + INVENTORY_STATE_YOFF + InventoryYoff; - - if (TEST(id->Flags, INVF_AUTO_USE)) - { - DisplayTinyString(x, y, "AUTO", 0); - } - else if (TEST(id->Flags, INVF_TIMED)) - { - DisplayTinyString(x, y, pp->InventoryActive[pp->InventoryNum] ? "ON" : "OFF", 0); - } - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DisplayBarInventory(PLAYERp pp) - { - int InventoryBoxX = INVENTORY_BOX_X; - int InventoryBoxY = INVENTORY_BOX_Y; - - int InventoryXoff = -1; - int InventoryYoff = 0; - - // put pic - if (pp->InventoryAmount[pp->InventoryNum]) - { - PlayerUpdateInventoryPic(pp, InventoryBoxX, InventoryBoxY, 0, InventoryYoff); - // Auto/On/Off - PlayerUpdateInventoryState(pp, InventoryBoxX, InventoryBoxY, InventoryXoff, InventoryYoff); - // Percent count/Item count - PlayerUpdateInventoryPercent(pp, InventoryBoxX, InventoryBoxY, InventoryXoff, InventoryYoff); - } - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DrawCompass(PLAYERp pp) - { - enum - { - COMPASS_TIC = 2380, - COMPASS_TIC2 = 2381, - - COMPASS_NORTH = 2382, - COMPASS_NORTH2 = 2383, - - COMPASS_SOUTH = 2384, - COMPASS_SOUTH2 = 2385, - - COMPASS_EAST = 2386, - COMPASS_EAST2 = 2387, - - COMPASS_WEST = 2388, - COMPASS_WEST2 = 2389, - - COMPASS_MID_TIC = 2390, - COMPASS_MID_TIC2 = 2391, - - COMPASS_X = 140, - COMPASS_Y = (162-5), - }; - - auto NORM_CANG = [](int ang) { return (((ang)+32) & 31); }; - - int start_ang, ang; - int x_size = tileWidth(COMPASS_NORTH); - int x; - int i; - - static const short CompassPic[32] = - { - COMPASS_EAST, COMPASS_EAST2, - COMPASS_TIC, COMPASS_TIC2, - COMPASS_MID_TIC, COMPASS_MID_TIC2, - COMPASS_TIC, COMPASS_TIC2, - - COMPASS_SOUTH, COMPASS_SOUTH2, - COMPASS_TIC, COMPASS_TIC2, - COMPASS_MID_TIC, COMPASS_MID_TIC2, - COMPASS_TIC, COMPASS_TIC2, - - COMPASS_WEST, COMPASS_WEST2, - COMPASS_TIC, COMPASS_TIC2, - COMPASS_MID_TIC, COMPASS_MID_TIC2, - COMPASS_TIC, COMPASS_TIC2, - - COMPASS_NORTH, COMPASS_NORTH2, - COMPASS_TIC, COMPASS_TIC2, - COMPASS_MID_TIC, COMPASS_MID_TIC2, - COMPASS_TIC, COMPASS_TIC2, - }; - - static const short CompassShade[10] = - { - //20, 16, 11, 6, 1, 1, 6, 11, 16, 20 - 25, 19, 15, 9, 1, 1, 9, 15, 19, 25 - }; - - ang = pp->angle.ang.asbuild(); - - if (pp->sop_remote) - ang = 0; - - start_ang = (ang + 32) >> 6; - - start_ang = NORM_CANG(start_ang - 4); - - for (i = 0, x = COMPASS_X; i < 10; i++) - { - DrawGraphic(tileGetTexture(CompassPic[NORM_CANG(start_ang + i)]), x, COMPASS_Y, DI_ITEM_LEFT_TOP, 1, -1, -1, 1, 1, STYLE_Translucent, shadeToLight(CompassShade[i])); - x += x_size; - } - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DrawStatusBar() - { - auto pp = Player + screenpeek; - USERp u = User[pp->PlayerSprite].Data(); - BeginStatusBar(320, 200, tileHeight(STATUS_BAR)); - - if (hud_size == Hud_StbarOverlay) Set43ClipRect(); - int left = (320 - tileWidth(STATUS_BAR)) / 2; - DrawGraphic(tileGetTexture(STATUS_BAR), left, 200, DI_ITEM_LEFT_BOTTOM, 1, -1, -1, 1, 1); - twod->ClearClipRect(); - DisplayPanelNumber(PANEL_HEALTH_BOX_X + PANEL_HEALTH_XOFF, PANEL_BOX_Y + PANEL_HEALTH_YOFF, u->Health); - DisplayPanelNumber(PANEL_ARMOR_BOX_X + PANEL_ARMOR_XOFF, PANEL_BOX_Y + PANEL_ARMOR_YOFF, pp->Armor); - if (u->WeaponNum != WPN_FIST && u->WeaponNum != WPN_SWORD) - DisplayPanelNumber(PANEL_AMMO_BOX_X + PANEL_AMMO_XOFF, PANEL_BOX_Y + PANEL_AMMO_YOFF, pp->WpnAmmo[u->WeaponNum]); - PlayerUpdateWeaponSummaryAll(pp); - if (gNet.MultiGameType != MULTI_GAME_COMMBAT) - DisplayKeys(pp, PANEL_KEYS_BOX_X, PANEL_BOX_Y); - else if (gNet.TimeLimit) - DisplayTimeLimit(pp); - DisplayBarInventory(pp); - DrawCompass(pp); - PrintLevelStats(-3); - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DisplayMinibarInventory(PLAYERp pp) - { - int InventoryBoxX = MINI_BAR_INVENTORY_BOX_X; - int InventoryBoxY = MINI_BAR_INVENTORY_BOX_Y - 200; - - int InventoryXoff = 0; - int InventoryYoff = 1; - - if (pp->InventoryAmount[pp->InventoryNum]) - { - PlayerUpdateInventoryPic(pp, InventoryBoxX, InventoryBoxY, InventoryXoff+1, InventoryYoff); - // Auto/On/Off - PlayerUpdateInventoryState(pp, InventoryBoxX, InventoryBoxY, InventoryXoff, InventoryYoff); - // Percent count/Item count - PlayerUpdateInventoryPercent(pp, InventoryBoxX, InventoryBoxY, InventoryXoff, InventoryYoff); - } - } - - //--------------------------------------------------------------------------- - // - // Used in DrawHUD2() for determining whether a reloadable weapon is reloading. - // - //--------------------------------------------------------------------------- - - bool DoReloadStatus(uint8_t *reloadstate, int ammo) - { - bool reloading = ammo == 0 && *reloadstate != 2; - - if (ammo == 0 && *reloadstate == 0) - { - *reloadstate = 1; - } - else if (ammo) - { - *reloadstate = 0; - } - - return reloading; - } - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DrawHUD1() - { - BeginHUD(320, 200, 1); - auto pp = Player + screenpeek; - USERp u = User[pp->PlayerSprite].Data(); - int x, y; - INVENTORY_DATAp id; - - x = MINI_BAR_HEALTH_BOX_X; - y = -26; - - DrawGraphic(tileGetTexture(MINI_BAR_HEALTH_BOX_PIC), x, y, DI_ITEM_LEFT_TOP, 1, -1, -1, 1, 1); - - x = MINI_BAR_HEALTH_BOX_X + 3; - DisplayPanelNumber(x, y + 5, u->Health); - - if (u->WeaponNum != WPN_SWORD && u->WeaponNum != WPN_FIST) - { - x = MINI_BAR_AMMO_BOX_X; - DrawGraphic(tileGetTexture(MINI_BAR_AMMO_BOX_PIC), x, y, DI_ITEM_LEFT_TOP, 1, -1, -1, 1, 1); - - x = MINI_BAR_AMMO_BOX_X + 3; - DisplayPanelNumber(x, y + 5, pp->WpnAmmo[u->WeaponNum]); - } - PrintLevelStats(30); - - if (!pp->InventoryAmount[pp->InventoryNum]) - return; - - // Inventory Box - x = MINI_BAR_INVENTORY_BOX_X; - - DrawGraphic(tileGetTexture(MINI_BAR_INVENTORY_BOX_PIC), x, y, DI_ITEM_LEFT_TOP, 1, -1, -1, 1, 1); - DisplayMinibarInventory(pp); - } - - //========================================================================== - // - // Fullscreen HUD variant #1 - // - //========================================================================== - - void DrawHUD2() - { - BeginHUD(320, 200, 1); - - auto pp = Player + screenpeek; - USERp u = User[pp->PlayerSprite].Data(); - - FString format; - FGameTexture* img; - double imgScale; - double baseScale = numberFont->mFont->GetHeight() * 0.83125; - - // - // Health - // - img = tileGetTexture(ICON_SM_MEDKIT); - imgScale = baseScale / img->GetDisplayHeight(); - DrawGraphic(img, 1.5, -1, DI_ITEM_LEFT_BOTTOM, 1., -1, -1, imgScale, imgScale); - - if (!althud_flashing || u->Health > (u->MaxHealth >> 2) || (PlayClock & 32)) - { - int s = -8; - if (althud_flashing && u->Health > u->MaxHealth) - s += bsin(PlayClock << 5, -10); - int intens = clamp(255 - 4 * s, 0, 255); - auto pe = PalEntry(255, intens, intens, intens); - format.Format("%d", u->Health); - SBar_DrawString(this, numberFont, format, 24.25, -numberFont->mFont->GetHeight() + 2, DI_TEXT_ALIGN_LEFT, CR_UNTRANSLATED, 1, 0, 0, 1, 1); - } - - // - // Armor - // - img = tileGetTexture(ICON_ARMOR); - imgScale = baseScale / img->GetDisplayHeight(); - DrawGraphic(img, 80.75, -1, DI_ITEM_LEFT_BOTTOM, 1., -1, -1, imgScale, imgScale); - - format.Format("%d", pp->Armor); - SBar_DrawString(this, numberFont, format, 108.5, -numberFont->mFont->GetHeight() + 2, DI_TEXT_ALIGN_LEFT, CR_UNTRANSLATED, 1, 0, 0, 1, 1); - - // - // Weapon - // - const short ammo_sprites[] = { -1, ICON_STAR, ICON_LG_SHOTSHELL, ICON_LG_UZI_AMMO, ICON_MICRO_BATTERY, ICON_LG_GRENADE, ICON_LG_MINE, ICON_RAIL_AMMO, - ICON_FIREBALL_LG_AMMO, ICON_HEART_LG_AMMO, ICON_FIREBALL_LG_AMMO, ICON_FIREBALL_LG_AMMO,ICON_MICRO_BATTERY, -1 }; - - int weapon = u->WeaponNum; - int wicon = ammo_sprites[weapon]; - if (wicon > 0) - { - int ammo = pp->WpnAmmo[weapon]; - bool reloadableWeapon = weapon == WPN_SHOTGUN || weapon == WPN_UZI; - if (!reloadableWeapon || (reloadableWeapon && !cl_showmagamt)) - { - format.Format("%d", ammo); - } - else - { - short capacity; - switch (weapon) - { - case WPN_SHOTGUN: - capacity = 4; - break; - case WPN_UZI: - capacity = pp->WpnUziType ? 50 : 100; - break; - } - short clip = CalcMagazineAmount(ammo, capacity, DoReloadStatus(&pp->WpnReloadState, ammo % capacity)); - format.Format("%d/%d", clip, ammo - clip); - } - img = tileGetTexture(wicon); - imgScale = baseScale / img->GetDisplayHeight(); - auto imgX = 21.125; - auto strlen = format.Len(); - - if (strlen > 1) - { - imgX += (imgX * 0.855) * (strlen - 1); - } - - if ((!althud_flashing || PlayClock & 32 || ammo > (DamageData[weapon].max_ammo / 10))) - { - SBar_DrawString(this, numberFont, format, -1.5, -numberFont->mFont->GetHeight() + 2, DI_TEXT_ALIGN_RIGHT, CR_UNTRANSLATED, 1, 0, 0, 1, 1); - } - - DrawGraphic(img, -imgX, -1, DI_ITEM_RIGHT_BOTTOM, 1, -1, -1, imgScale, imgScale); - } - - // - // Selected inventory item - // - img = tileGetTexture(icons[pp->InventoryNum]); - imgScale = baseScale / img->GetDisplayHeight(); - int x = 165; - DrawGraphic(img, x, -1, DI_ITEM_LEFT_BOTTOM, 1, -1, -1, imgScale, imgScale); - - PlayerUpdateInventoryState(pp, x + 3.0, -18.0, 1, 1); - //PlayerUpdateInventoryPercent(pp, x + 3.5, -20.5, 1, 1); // function takes integer coordinates. - PlayerUpdateInventoryPercent(pp, x + 3, -20, 1, 1); - - // - // keys - // - DisplayKeys(pp, -25, -38, 0.8625, 0.8625); - PrintLevelStats(int(baseScale + 4)); - } - - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- - - void DrawInventoryIcon(double xs, double ys, int align, int InventoryNum, int amount, bool selected) - { - double x, y; - const int INVENTORY_ICON_WIDTH = 28; - - // check invalid value - assert(InventoryNum < MAX_INVENTORY); - - x =xs + (InventoryNum * INVENTORY_ICON_WIDTH); - y = ys; - auto tex = icons[InventoryNum]; - auto scale = InventoryData[InventoryNum].Scale / 65536.; - DrawGraphic(tileGetTexture(tex), x, y, align | DI_ITEM_LEFT_TOP, amount? 1. : 0.333, -1, -1, scale, scale); - if (selected) - { - DrawGraphic(tileGetTexture(ID_SelectionBox), x-5, y-5, align | DI_ITEM_LEFT_TOP, 1, -1, -1, 1, 1); - } - } - - ////////////////////////////////////////////////////////////////////// - // - // INVENTORY BAR - // - ////////////////////////////////////////////////////////////////////// - - void DrawInventory(double xs, double ys, int align) - { - auto pp = Player + screenpeek; - short inv = 0; - INVENTORY_DATAp id; - - if (!pp->InventoryBarTics) - { - return; - } - - for (id = InventoryData; id->Name; id++, inv++) - { - DrawInventoryIcon(xs, ys, align, inv, pp->InventoryAmount[inv], inv == pp->InventoryNum); - } - } - - //========================================================================== - // - // Statistics output - // - //========================================================================== - - void PrintLevelStats(int bottomy) - { - FLevelStats stats{}; - stats.fontscale = 1; - stats.spacing = 7; - stats.screenbottomspace = bottomy; - stats.font = SmallFont; - stats.time = Scale(PlayClock, 1000, 120); - - if (automapMode == am_full) - { - stats.letterColor = CR_SAPPHIRE; - stats.standardColor = CR_UNTRANSLATED; - - bool textfont = am_textfont; - if (!am_textfont) - { - // For non-English languages force use of the text font. The tiny one is simply too small to ever add localized characters to it. - auto p = GStrings["REQUIRED_CHARACTERS"]; - if (p && *p) textfont = true; - } - - if (!textfont) - { - stats.font = SmallFont2; - stats.spacing = 6; - } - else stats.spacing = SmallFont->GetHeight() + 1; - DBaseStatusBar::PrintAutomapInfo(stats, textfont); - } - // JBF 20040124: display level stats in screen corner - else if (hud_stats && !(CommEnabled || numplayers > 1)) - { - auto pp = Player + screenpeek; - - stats.kills = Player->Kills; - stats.maxkills = TotalKillable; - stats.frags = -1; - stats.secrets = Player->SecretsFound; - stats.maxsecrets = LevelSecrets; - - stats.letterColor = CR_RED; - stats.standardColor = CR_TAN; - stats.completeColor = CR_FIRE; - - DBaseStatusBar::PrintLevelStats(stats); - } - } - - - //--------------------------------------------------------------------------- - // - // - // - //--------------------------------------------------------------------------- -public: - void UpdateStatusBar() - { - int nPalette = 0; - double inv_x, inv_y; - int align; - - if (hud_size == Hud_Nothing) - { - align = DI_SCREEN_RIGHT_BOTTOM; - inv_x = -210; - inv_y = -28; - PrintLevelStats(2); - } - else if (hud_size == Hud_full) - { - align = DI_SCREEN_CENTER_BOTTOM; - inv_x = -80; - inv_y = -40; - DrawHUD2(); - } - else if (hud_size == Hud_Mini) - { - align = DI_SCREEN_RIGHT_BOTTOM; - inv_x = -210; - inv_y = -28; - DrawHUD1(); - } - else - { - align = 0; - inv_x = 80; - inv_y = 130; - DrawStatusBar(); - } - DrawInventory(inv_x, inv_y, align); - } - -}; - -IMPLEMENT_CLASS(DNativeSWStatusBar, false, true) -IMPLEMENT_POINTERS_START(DNativeSWStatusBar) -IMPLEMENT_POINTER(miniFont) -IMPLEMENT_POINTER(numberFont) -IMPLEMENT_POINTERS_END - //--------------------------------------------------------------------------- // // diff --git a/wadsrc/static/zscript/razebase.zs b/wadsrc/static/zscript/razebase.zs index fdc9dd082..046729153 100644 --- a/wadsrc/static/zscript/razebase.zs +++ b/wadsrc/static/zscript/razebase.zs @@ -243,12 +243,3 @@ class RazeMenuDelegate : MenuDelegateBase native override void MenuDismissed(); } - -// dummy definitions for the status bar. We need them to create the class descriptors - -class BaseStatusBar : StatusBarCore native -{} - - -class NativeSWStatusBar : BaseStatusBar native -{}