mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 00:42:08 +00:00
- add episode name display to alt hud.
This commit is contained in:
parent
562c1a18c8
commit
fa3a8ca0d7
1 changed files with 16 additions and 9 deletions
|
@ -628,12 +628,16 @@ class AltHud ui
|
|||
|
||||
virtual void DrawAutomap(SummaryInfo summary)
|
||||
{
|
||||
let font = generic_ui? NewSmallFont : StatFont;
|
||||
double fontscale = generic_ui? 1. : currentStats.info.fontscale;
|
||||
|
||||
int fonth = font.GetHeight() + 1;
|
||||
int bottom = hudheight - 1;
|
||||
let lev = currentlevel;
|
||||
let amstr = String.Format("%s: \034%c%s", lev.GetLabelName(), hudcolor_titl + 65, lev.DisplayName());
|
||||
|
||||
let cluster = lev.GetCluster();
|
||||
String volname;
|
||||
if (cluster) volname = cluster.name;
|
||||
|
||||
let allname = levname .. volname;
|
||||
font = generic_ui? NewSmallFont : StatFont.CanPrint(allname)? StatFont : OriginalSmallFont;
|
||||
|
||||
/*
|
||||
if (am_showtotaltime)
|
||||
{
|
||||
|
@ -647,14 +651,17 @@ class AltHud ui
|
|||
let seconds = summary.time / 1000;
|
||||
DrawTimeString(font, hudcolor_ltim, seconds, hudwidth-2, bottom, 1, fontscale);
|
||||
}
|
||||
let lev = currentlevel;
|
||||
let amstr = String.Format("%s: \034%c%s", lev.GetLabelName(), hudcolor_titl + 65, lev.DisplayName());
|
||||
|
||||
font = generic_ui? NewSmallFont : StatFont.CanPrint(amstr)? StatFont : OriginalSmallFont;
|
||||
|
||||
screen.DrawText(font, Font.CR_BRICK, 2, hudheight - fonth - 1, amstr,
|
||||
DTA_KeepRatio, true, DTA_ScaleX, fontscale, DTA_ScaleY, fontscale,
|
||||
DTA_VirtualWidth, hudwidth, DTA_VirtualHeight, hudheight);
|
||||
|
||||
if (volname.length() > 0)
|
||||
{
|
||||
Screen.DrawText(myfont, Font.CR_ORANGE, 2, hudheight - fonth * 2 - 1, volname,
|
||||
DTA_KeepRatio, true, DTA_ScaleX, fontscale, DTA_ScaleY, fontscale,
|
||||
DTA_VirtualWidth, hudwidth, DTA_VirtualHeight, hudheight);
|
||||
}
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue