From 7dda316391cc32640d039e49ea157849a046c116 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 25 Oct 2020 15:31:20 +0100 Subject: [PATCH] - define console background for Blood. --- source/blood/src/blood.cpp | 1 + source/blood/src/namelist.h | 15 +++++++++++++++ source/common/console/c_console.cpp | 5 +++-- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/source/blood/src/blood.cpp b/source/blood/src/blood.cpp index c486ebbb6..019aba8aa 100644 --- a/source/blood/src/blood.cpp +++ b/source/blood/src/blood.cpp @@ -426,6 +426,7 @@ void GameInterface::app_init() levelLoadDefaults(); LoadDefinitions(); SetTileNames(); + C_InitConback(TexMan.CheckForTexture("BACKTILE", ETextureType::Any), true, 0.25); TileFiles.SetBackup(); powerupInit(); diff --git a/source/blood/src/namelist.h b/source/blood/src/namelist.h index 4f513a378..b81969d7b 100644 --- a/source/blood/src/namelist.h +++ b/source/blood/src/namelist.h @@ -1,2 +1,17 @@ // names for everything that gets accessed by scripts. x(MENUBAR, 2038) +x(BackTile, 253) + +x(CrosshairTile, 2319) +x(LoadScreen, 2049) +x(LoadScreenWideBack, 9216) +x(LoadScreenWideLeft, 9217) +x(LoadScreenWideRight, 9218) +x(LoadScreenWideMiddle, 9219) + +x(SBarNumberHealth, 9220) +x(SBarNumberAmmo, 9230) +x(SBarNumberInv, 9240) +x(SBarNumberArmor1, 9250) +x(SBarNumberArmor2, 9260) +x(SBarNumberArmor3, 9270) diff --git a/source/common/console/c_console.cpp b/source/common/console/c_console.cpp index 52147d162..bcbdfdfdb 100644 --- a/source/common/console/c_console.cpp +++ b/source/common/console/c_console.cpp @@ -219,7 +219,7 @@ void C_InitConback(FTextureID fallback, bool tile, double brightness) if (!conback.isValid()) { conback.SetInvalid(); - conshade = MAKEARGB(uint8_t(255 - 60*brightness),0,0,0); + conshade = MAKEARGB(uint8_t(255 - 255*brightness),0,0,0); conline = true; if (!tile) conback = fallback; } @@ -616,7 +616,8 @@ void C_DrawConsole () { if (conflat.isValid()) { - PalEntry pe((uint8_t(255 * con_alpha)), 64, 64, 64); + int conbright = 255 - APART(conshade); + PalEntry pe((uint8_t(255 * con_alpha)), conbright, conbright, conbright); twod->AddFlatFill(0, visheight - screen->GetHeight(), screen->GetWidth(), visheight, TexMan.GetGameTexture(conflat), 1, CleanXfac, pe, STYLE_Shaded); } else