2010-11-20 10:37:14 +00:00
|
|
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
2010-05-29 07:25:38 +00:00
|
|
|
#include <engine/graphics.h>
|
2014-01-10 15:19:46 +00:00
|
|
|
#include <engine/serverbrowser.h>
|
2010-05-29 07:25:38 +00:00
|
|
|
#include <engine/shared/config.h>
|
2020-09-26 19:41:58 +00:00
|
|
|
#include <engine/textrender.h>
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
#include <game/client/animstate.h>
|
2013-10-07 10:13:33 +00:00
|
|
|
#include <game/client/components/scoreboard.h>
|
2020-09-26 19:41:58 +00:00
|
|
|
#include <game/client/gameclient.h>
|
|
|
|
#include <game/client/render.h>
|
|
|
|
#include <game/generated/client_data.h>
|
|
|
|
#include <game/generated/protocol.h>
|
|
|
|
#include <game/layers.h>
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2018-03-13 20:56:37 +00:00
|
|
|
#include <cmath>
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
#include "binds.h"
|
2010-05-29 07:25:38 +00:00
|
|
|
#include "camera.h"
|
2020-09-26 19:41:58 +00:00
|
|
|
#include "controls.h"
|
2010-05-29 07:25:38 +00:00
|
|
|
#include "hud.h"
|
|
|
|
#include "voting.h"
|
|
|
|
|
|
|
|
CHud::CHud()
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
// won't work if zero
|
2018-01-14 16:21:50 +00:00
|
|
|
m_FrameTimeAvg = 0.0f;
|
2018-03-21 14:53:29 +00:00
|
|
|
m_FPSTextContainerIndex = -1;
|
2010-10-30 14:22:35 +00:00
|
|
|
OnReset();
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-21 14:53:29 +00:00
|
|
|
void CHud::ResetHudContainers()
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2018-03-21 15:02:11 +00:00
|
|
|
if(m_aScoreInfo[0].m_OptionalNameTextContainerIndex != -1)
|
2018-03-13 20:56:37 +00:00
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[0].m_OptionalNameTextContainerIndex);
|
2018-03-21 15:02:11 +00:00
|
|
|
if(m_aScoreInfo[1].m_OptionalNameTextContainerIndex != -1)
|
2018-03-13 20:56:37 +00:00
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[1].m_OptionalNameTextContainerIndex);
|
|
|
|
|
2018-03-21 15:02:11 +00:00
|
|
|
if(m_aScoreInfo[0].m_TextRankContainerIndex != -1)
|
2018-03-13 20:56:37 +00:00
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[0].m_TextRankContainerIndex);
|
2018-03-21 15:02:11 +00:00
|
|
|
if(m_aScoreInfo[1].m_TextRankContainerIndex != -1)
|
2018-03-13 20:56:37 +00:00
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[1].m_TextRankContainerIndex);
|
|
|
|
|
2018-03-21 15:02:11 +00:00
|
|
|
if(m_aScoreInfo[0].m_TextScoreContainerIndex != -1)
|
2018-03-13 20:56:37 +00:00
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[0].m_TextScoreContainerIndex);
|
2018-03-21 15:02:11 +00:00
|
|
|
if(m_aScoreInfo[1].m_TextScoreContainerIndex != -1)
|
2018-03-13 20:56:37 +00:00
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[1].m_TextScoreContainerIndex);
|
|
|
|
|
2018-03-21 15:02:11 +00:00
|
|
|
if(m_aScoreInfo[0].m_RoundRectQuadContainerIndex != -1)
|
2018-03-13 20:56:37 +00:00
|
|
|
Graphics()->DeleteQuadContainer(m_aScoreInfo[0].m_RoundRectQuadContainerIndex);
|
2018-03-21 15:02:11 +00:00
|
|
|
if(m_aScoreInfo[1].m_RoundRectQuadContainerIndex != -1)
|
2018-03-13 20:56:37 +00:00
|
|
|
Graphics()->DeleteQuadContainer(m_aScoreInfo[1].m_RoundRectQuadContainerIndex);
|
|
|
|
|
|
|
|
m_aScoreInfo[0].Reset();
|
|
|
|
m_aScoreInfo[1].Reset();
|
2018-03-21 14:53:29 +00:00
|
|
|
|
2018-03-21 15:02:11 +00:00
|
|
|
if(m_FPSTextContainerIndex != -1)
|
2018-03-21 14:53:29 +00:00
|
|
|
TextRender()->DeleteTextContainer(m_FPSTextContainerIndex);
|
|
|
|
m_FPSTextContainerIndex = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHud::OnWindowResize()
|
|
|
|
{
|
|
|
|
ResetHudContainers();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHud::OnReset()
|
|
|
|
{
|
|
|
|
m_CheckpointDiff = 0.0f;
|
|
|
|
m_DDRaceTime = 0;
|
|
|
|
m_LastReceivedTimeTick = 0;
|
|
|
|
m_CheckpointTick = 0;
|
|
|
|
m_FinishTime = false;
|
|
|
|
m_DDRaceTimeReceived = false;
|
|
|
|
m_ServerRecord = -1.0f;
|
2020-03-01 11:54:59 +00:00
|
|
|
m_PlayerRecord[0] = -1.0f;
|
|
|
|
m_PlayerRecord[1] = -1.0f;
|
2018-03-21 14:53:29 +00:00
|
|
|
|
|
|
|
ResetHudContainers();
|
2018-03-13 20:56:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CHud::OnInit()
|
|
|
|
{
|
|
|
|
Graphics()->SetColor(1.f, 1.f, 1.f, 1.f);
|
|
|
|
PrepareHealthAmoQuads();
|
|
|
|
|
|
|
|
// all cursors
|
|
|
|
for(int i = 0; i < NUM_WEAPONS; ++i)
|
|
|
|
{
|
|
|
|
RenderTools()->SelectSprite(g_pData->m_Weapons.m_aId[i].m_pSpriteCursor);
|
|
|
|
RenderTools()->QuadContainerAddSprite(m_HudQuadContainerIndex, 64.f);
|
|
|
|
}
|
2019-04-02 23:05:38 +00:00
|
|
|
|
2018-03-13 20:56:37 +00:00
|
|
|
// the flags
|
|
|
|
RenderTools()->SelectSprite(SPRITE_FLAG_RED);
|
|
|
|
RenderTools()->QuadContainerAddSprite(m_HudQuadContainerIndex, 0.f, 0.f, 8.f, 16.f);
|
|
|
|
RenderTools()->SelectSprite(SPRITE_FLAG_BLUE);
|
2018-03-21 14:53:29 +00:00
|
|
|
RenderTools()->QuadContainerAddSprite(m_HudQuadContainerIndex, 0.f, 0.f, 8.f, 16.f);
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
|
|
|
|
2010-05-30 12:01:11 +00:00
|
|
|
void CHud::RenderGameTimer()
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
float Half = 300.0f * Graphics()->ScreenAspect() / 2.0f;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(!(m_pClient->m_Snap.m_pGameInfoObj->m_GameStateFlags & GAMESTATEFLAG_SUDDENDEATH))
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2019-06-03 19:52:14 +00:00
|
|
|
char aBuf[32];
|
2010-05-29 07:25:38 +00:00
|
|
|
int Time = 0;
|
2017-01-04 13:14:10 +00:00
|
|
|
if(m_pClient->m_Snap.m_pGameInfoObj->m_TimeLimit && (m_pClient->m_Snap.m_pGameInfoObj->m_WarmupTimer <= 0))
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
Time = m_pClient->m_Snap.m_pGameInfoObj->m_TimeLimit * 60 - ((Client()->GameTick(g_Config.m_ClDummy) - m_pClient->m_Snap.m_pGameInfoObj->m_RoundStartTick) / Client()->GameTickSpeed());
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(m_pClient->m_Snap.m_pGameInfoObj->m_GameStateFlags & GAMESTATEFLAG_GAMEOVER)
|
2011-04-13 18:37:12 +00:00
|
|
|
Time = 0;
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
else if(m_pClient->m_Snap.m_pGameInfoObj->m_GameStateFlags & GAMESTATEFLAG_RACETIME)
|
2017-01-04 13:14:10 +00:00
|
|
|
{
|
|
|
|
//The Warmup timer is negative in this case to make sure that incompatible clients will not see a warmup timer
|
2020-09-26 19:41:58 +00:00
|
|
|
Time = (Client()->GameTick(g_Config.m_ClDummy) + m_pClient->m_Snap.m_pGameInfoObj->m_WarmupTimer) / Client()->GameTickSpeed();
|
2017-01-04 13:14:10 +00:00
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
else
|
2020-09-26 19:41:58 +00:00
|
|
|
Time = (Client()->GameTick(g_Config.m_ClDummy) - m_pClient->m_Snap.m_pGameInfoObj->m_RoundStartTick) / Client()->GameTickSpeed();
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2020-09-25 13:18:28 +00:00
|
|
|
if(Time <= 0)
|
2019-06-03 19:52:14 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "00:00");
|
2014-12-02 12:19:06 +00:00
|
|
|
else
|
2020-09-26 19:41:58 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "%02d:%02d", Time / 60, Time % 60);
|
2010-05-30 12:01:11 +00:00
|
|
|
float FontSize = 10.0f;
|
2014-12-02 12:19:06 +00:00
|
|
|
float w;
|
2020-09-25 13:18:28 +00:00
|
|
|
w = TextRender()->TextWidth(0, 12, "00:00", -1, -1.0f);
|
2011-01-09 23:58:03 +00:00
|
|
|
// last 60 sec red, last 10 sec blink
|
2017-01-04 13:14:10 +00:00
|
|
|
if(m_pClient->m_Snap.m_pGameInfoObj->m_TimeLimit && Time <= 60 && (m_pClient->m_Snap.m_pGameInfoObj->m_WarmupTimer <= 0))
|
2011-01-09 23:58:03 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
float Alpha = Time <= 10 && (2 * time() / time_freq()) % 2 ? 0.5f : 1.0f;
|
2011-01-09 23:58:03 +00:00
|
|
|
TextRender()->TextColor(1.0f, 0.25f, 0.25f, Alpha);
|
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->Text(0, Half - w / 2, 2, FontSize, aBuf, -1.0f);
|
2011-01-09 23:58:03 +00:00
|
|
|
TextRender()->TextColor(1.0f, 1.0f, 1.0f, 1.0f);
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
2010-05-30 12:01:11 +00:00
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2012-01-10 21:40:48 +00:00
|
|
|
void CHud::RenderPauseNotification()
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(m_pClient->m_Snap.m_pGameInfoObj->m_GameStateFlags & GAMESTATEFLAG_PAUSED &&
|
|
|
|
!(m_pClient->m_Snap.m_pGameInfoObj->m_GameStateFlags & GAMESTATEFLAG_GAMEOVER))
|
2012-01-10 21:40:48 +00:00
|
|
|
{
|
|
|
|
const char *pText = Localize("Game paused");
|
|
|
|
float FontSize = 20.0f;
|
2020-09-26 19:41:58 +00:00
|
|
|
float w = TextRender()->TextWidth(0, FontSize, pText, -1, -1.0f);
|
|
|
|
TextRender()->Text(0, 150.0f * Graphics()->ScreenAspect() + -w / 2.0f, 50.0f, FontSize, pText, -1.0f);
|
2012-01-10 21:40:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-30 12:01:11 +00:00
|
|
|
void CHud::RenderSuddenDeath()
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(m_pClient->m_Snap.m_pGameInfoObj->m_GameStateFlags & GAMESTATEFLAG_SUDDENDEATH)
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
float Half = 300.0f * Graphics()->ScreenAspect() / 2.0f;
|
2010-06-03 09:30:05 +00:00
|
|
|
const char *pText = Localize("Sudden Death");
|
2010-05-30 12:01:11 +00:00
|
|
|
float FontSize = 12.0f;
|
2020-07-15 19:10:13 +00:00
|
|
|
float w = TextRender()->TextWidth(0, FontSize, pText, -1, -1.0f);
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->Text(0, Half - w / 2, 2, FontSize, pText, -1.0f);
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
2010-05-30 12:01:11 +00:00
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2010-05-30 12:01:11 +00:00
|
|
|
void CHud::RenderScoreHud()
|
2011-04-13 18:37:12 +00:00
|
|
|
{
|
2008-08-27 15:48:50 +00:00
|
|
|
// render small score hud
|
2020-09-26 19:41:58 +00:00
|
|
|
if(!(m_pClient->m_Snap.m_pGameInfoObj->m_GameStateFlags & GAMESTATEFLAG_GAMEOVER))
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2011-03-04 16:08:10 +00:00
|
|
|
int GameFlags = m_pClient->m_Snap.m_pGameInfoObj->m_GameFlags;
|
2020-09-26 19:41:58 +00:00
|
|
|
float Whole = 300 * Graphics()->ScreenAspect();
|
2012-01-08 23:28:42 +00:00
|
|
|
float StartY = 229.0f;
|
2011-01-12 00:01:05 +00:00
|
|
|
|
2018-03-13 20:56:37 +00:00
|
|
|
bool ForceScoreInfoInit = !m_aScoreInfo[0].m_Initialized || !m_aScoreInfo[1].m_Initialized;
|
|
|
|
m_aScoreInfo[0].m_Initialized = m_aScoreInfo[1].m_Initialized = true;
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(GameFlags & GAMEFLAG_TEAMS && m_pClient->m_Snap.m_pGameDataObj)
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2018-03-13 20:56:37 +00:00
|
|
|
char aScoreTeam[2][16];
|
|
|
|
str_format(aScoreTeam[TEAM_RED], sizeof(aScoreTeam), "%d", m_pClient->m_Snap.m_pGameDataObj->m_TeamscoreRed);
|
|
|
|
str_format(aScoreTeam[TEAM_BLUE], sizeof(aScoreTeam), "%d", m_pClient->m_Snap.m_pGameDataObj->m_TeamscoreBlue);
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
bool RecreateTeamScore[2] = {str_comp(aScoreTeam[0], m_aScoreInfo[0].m_aScoreText) != 0, str_comp(aScoreTeam[1], m_aScoreInfo[1].m_aScoreText) != 0};
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2019-04-02 23:05:38 +00:00
|
|
|
int FlagCarrier[2] = {
|
|
|
|
m_pClient->m_Snap.m_pGameDataObj->m_FlagCarrierRed,
|
2020-09-26 19:41:58 +00:00
|
|
|
m_pClient->m_Snap.m_pGameDataObj->m_FlagCarrierBlue};
|
2018-03-13 20:56:37 +00:00
|
|
|
|
|
|
|
bool RecreateRect = ForceScoreInfoInit;
|
|
|
|
for(int t = 0; t < 2; t++)
|
|
|
|
{
|
|
|
|
if(RecreateTeamScore[t])
|
|
|
|
{
|
2020-07-15 19:10:13 +00:00
|
|
|
m_aScoreInfo[t].m_ScoreTextWidth = TextRender()->TextWidth(0, 14.0f, aScoreTeam[t == 0 ? TEAM_RED : TEAM_BLUE], -1, -1.0f);
|
2018-03-13 20:56:37 +00:00
|
|
|
mem_copy(m_aScoreInfo[t].m_aScoreText, aScoreTeam[t == 0 ? TEAM_RED : TEAM_BLUE], sizeof(m_aScoreInfo[t].m_aScoreText));
|
|
|
|
RecreateRect = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 19:10:13 +00:00
|
|
|
static float s_TextWidth100 = TextRender()->TextWidth(0, 14.0f, "100", -1, -1.0f);
|
2019-04-26 19:36:49 +00:00
|
|
|
float ScoreWidthMax = maximum(maximum(m_aScoreInfo[0].m_ScoreTextWidth, m_aScoreInfo[1].m_ScoreTextWidth), s_TextWidth100);
|
2018-03-13 20:56:37 +00:00
|
|
|
float Split = 3.0f;
|
|
|
|
float ImageSize = GameFlags & GAMEFLAG_FLAGS ? 16.0f : Split;
|
2011-01-12 00:01:05 +00:00
|
|
|
for(int t = 0; t < 2; t++)
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2011-01-12 00:01:05 +00:00
|
|
|
// draw box
|
2018-03-13 20:56:37 +00:00
|
|
|
if(RecreateRect)
|
2019-04-02 23:05:38 +00:00
|
|
|
{
|
2018-03-13 20:56:37 +00:00
|
|
|
if(m_aScoreInfo[t].m_RoundRectQuadContainerIndex != -1)
|
|
|
|
Graphics()->DeleteQuadContainer(m_aScoreInfo[t].m_RoundRectQuadContainerIndex);
|
|
|
|
|
|
|
|
if(t == 0)
|
|
|
|
Graphics()->SetColor(1.0f, 0.0f, 0.0f, 0.25f);
|
|
|
|
else
|
|
|
|
Graphics()->SetColor(0.0f, 0.0f, 1.0f, 0.25f);
|
|
|
|
m_aScoreInfo[t].m_RoundRectQuadContainerIndex = RenderTools()->CreateRoundRectQuadContainer(Whole - ScoreWidthMax - ImageSize - 2 * Split, StartY + t * 20, ScoreWidthMax + ImageSize + 2 * Split, 18.0f, 5.0f, CUI::CORNER_L);
|
|
|
|
}
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2018-03-13 20:56:37 +00:00
|
|
|
Graphics()->SetColor(1.0f, 1.0f, 1.0f, 1.0f);
|
|
|
|
if(m_aScoreInfo[t].m_RoundRectQuadContainerIndex != -1)
|
|
|
|
Graphics()->RenderQuadContainer(m_aScoreInfo[t].m_RoundRectQuadContainerIndex, -1);
|
2011-01-12 00:01:05 +00:00
|
|
|
|
|
|
|
// draw score
|
2018-03-13 20:56:37 +00:00
|
|
|
if(RecreateTeamScore[t])
|
|
|
|
{
|
|
|
|
if(m_aScoreInfo[t].m_TextScoreContainerIndex != -1)
|
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[t].m_TextScoreContainerIndex);
|
|
|
|
|
|
|
|
CTextCursor Cursor;
|
2018-04-03 15:41:11 +00:00
|
|
|
TextRender()->SetCursor(&Cursor, Whole - ScoreWidthMax + (ScoreWidthMax - m_aScoreInfo[t].m_ScoreTextWidth) / 2 - Split, StartY + t * 20 + (18.f - 14.f) / 2.f, 14.0f, TEXTFLAG_RENDER);
|
2018-03-13 20:56:37 +00:00
|
|
|
Cursor.m_LineWidth = -1;
|
|
|
|
m_aScoreInfo[t].m_TextScoreContainerIndex = TextRender()->CreateTextContainer(&Cursor, aScoreTeam[t]);
|
|
|
|
}
|
|
|
|
if(m_aScoreInfo[t].m_TextScoreContainerIndex != -1)
|
|
|
|
{
|
|
|
|
STextRenderColor TColor(1.f, 1.f, 1.f, 1.f);
|
|
|
|
STextRenderColor TOutlineColor(0.f, 0.f, 0.f, 0.3f);
|
|
|
|
TextRender()->RenderTextContainer(m_aScoreInfo[t].m_TextScoreContainerIndex, &TColor, &TOutlineColor);
|
|
|
|
}
|
2011-01-12 00:01:05 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(GameFlags & GAMEFLAG_FLAGS)
|
2010-06-22 19:27:58 +00:00
|
|
|
{
|
2011-08-11 08:59:14 +00:00
|
|
|
int BlinkTimer = (m_pClient->m_FlagDropTick[t] != 0 &&
|
2020-09-26 19:41:58 +00:00
|
|
|
(Client()->GameTick(g_Config.m_ClDummy) - m_pClient->m_FlagDropTick[t]) / Client()->GameTickSpeed() >= 25) ?
|
|
|
|
10 :
|
|
|
|
20;
|
|
|
|
if(FlagCarrier[t] == FLAG_ATSTAND || (FlagCarrier[t] == FLAG_TAKEN && ((Client()->GameTick(g_Config.m_ClDummy) / BlinkTimer) & 1)))
|
2011-01-12 00:01:05 +00:00
|
|
|
{
|
|
|
|
// draw flag
|
|
|
|
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_GAME].m_Id);
|
2018-03-13 20:56:37 +00:00
|
|
|
int QuadOffset = NUM_WEAPONS * 10 + 40 + NUM_WEAPONS + t;
|
2018-04-05 18:46:22 +00:00
|
|
|
Graphics()->SetColor(1.f, 1.f, 1.f, 1.f);
|
2018-03-13 20:56:37 +00:00
|
|
|
Graphics()->RenderQuadContainerAsSprite(m_HudQuadContainerIndex, QuadOffset, Whole - ScoreWidthMax - ImageSize, StartY + 1.0f + t * 20);
|
2011-01-12 00:01:05 +00:00
|
|
|
}
|
2011-03-04 16:08:10 +00:00
|
|
|
else if(FlagCarrier[t] >= 0)
|
2011-01-12 00:01:05 +00:00
|
|
|
{
|
|
|
|
// draw name of the flag holder
|
2020-09-26 19:41:58 +00:00
|
|
|
int ID = FlagCarrier[t] % MAX_CLIENTS;
|
2011-02-12 10:40:36 +00:00
|
|
|
const char *pName = m_pClient->m_aClients[ID].m_aName;
|
2018-03-13 20:56:37 +00:00
|
|
|
if(str_comp(pName, m_aScoreInfo[t].m_aPlayerNameText) != 0 || RecreateRect)
|
|
|
|
{
|
|
|
|
mem_copy(m_aScoreInfo[t].m_aPlayerNameText, pName, sizeof(m_aScoreInfo[t].m_aPlayerNameText));
|
|
|
|
|
|
|
|
if(m_aScoreInfo[t].m_OptionalNameTextContainerIndex != -1)
|
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[t].m_OptionalNameTextContainerIndex);
|
|
|
|
|
2020-07-15 19:10:13 +00:00
|
|
|
float w = TextRender()->TextWidth(0, 8.0f, pName, -1, -1.0f);
|
2019-04-02 23:05:38 +00:00
|
|
|
|
2018-03-13 20:56:37 +00:00
|
|
|
CTextCursor Cursor;
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->SetCursor(&Cursor, minimum(Whole - w - 1.0f, Whole - ScoreWidthMax - ImageSize - 2 * Split), StartY + (t + 1) * 20.0f - 2.0f, 8.0f, TEXTFLAG_RENDER);
|
2018-03-13 20:56:37 +00:00
|
|
|
Cursor.m_LineWidth = -1;
|
|
|
|
m_aScoreInfo[t].m_OptionalNameTextContainerIndex = TextRender()->CreateTextContainer(&Cursor, pName);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(m_aScoreInfo[t].m_OptionalNameTextContainerIndex != -1)
|
|
|
|
{
|
|
|
|
STextRenderColor TColor(1.f, 1.f, 1.f, 1.f);
|
|
|
|
STextRenderColor TOutlineColor(0.f, 0.f, 0.f, 0.3f);
|
|
|
|
TextRender()->RenderTextContainer(m_aScoreInfo[t].m_OptionalNameTextContainerIndex, &TColor, &TOutlineColor);
|
|
|
|
}
|
2011-01-12 00:01:05 +00:00
|
|
|
|
|
|
|
// draw tee of the flag holder
|
2011-02-12 10:40:36 +00:00
|
|
|
CTeeRenderInfo Info = m_pClient->m_aClients[ID].m_RenderInfo;
|
2011-01-12 00:01:05 +00:00
|
|
|
Info.m_Size = 18.0f;
|
2020-09-26 19:41:58 +00:00
|
|
|
RenderTools()->RenderTee(CAnimState::GetIdle(), &Info, EMOTE_NORMAL, vec2(1, 0),
|
|
|
|
vec2(Whole - ScoreWidthMax - Info.m_Size / 2 - Split, StartY + 1.0f + Info.m_Size / 2 + t * 20));
|
2011-01-12 00:01:05 +00:00
|
|
|
}
|
2010-06-22 19:27:58 +00:00
|
|
|
}
|
2012-01-08 23:28:42 +00:00
|
|
|
StartY += 8.0f;
|
2011-01-12 00:01:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-18 16:56:09 +00:00
|
|
|
int Local = -1;
|
2020-09-26 19:41:58 +00:00
|
|
|
int aPos[2] = {1, 2};
|
|
|
|
const CNetObj_PlayerInfo *apPlayerInfo[2] = {0, 0};
|
2011-01-18 16:56:09 +00:00
|
|
|
int i = 0;
|
|
|
|
for(int t = 0; t < 2 && i < MAX_CLIENTS && m_pClient->m_Snap.m_paInfoByScore[i]; ++i)
|
2011-01-12 00:01:05 +00:00
|
|
|
{
|
2011-01-18 16:56:09 +00:00
|
|
|
if(m_pClient->m_Snap.m_paInfoByScore[i]->m_Team != TEAM_SPECTATORS)
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2011-01-18 16:56:09 +00:00
|
|
|
apPlayerInfo[t] = m_pClient->m_Snap.m_paInfoByScore[i];
|
2011-02-12 10:40:36 +00:00
|
|
|
if(apPlayerInfo[t]->m_ClientID == m_pClient->m_Snap.m_LocalClientID)
|
2011-01-18 16:56:09 +00:00
|
|
|
Local = t;
|
|
|
|
++t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// search local player info if not a spectator, nor within top2 scores
|
|
|
|
if(Local == -1 && m_pClient->m_Snap.m_pLocalInfo && m_pClient->m_Snap.m_pLocalInfo->m_Team != TEAM_SPECTATORS)
|
|
|
|
{
|
|
|
|
for(; i < MAX_CLIENTS && m_pClient->m_Snap.m_paInfoByScore[i]; ++i)
|
|
|
|
{
|
|
|
|
if(m_pClient->m_Snap.m_paInfoByScore[i]->m_Team != TEAM_SPECTATORS)
|
|
|
|
++aPos[1];
|
2011-02-12 10:40:36 +00:00
|
|
|
if(m_pClient->m_Snap.m_paInfoByScore[i]->m_ClientID == m_pClient->m_Snap.m_LocalClientID)
|
2011-01-18 16:56:09 +00:00
|
|
|
{
|
|
|
|
apPlayerInfo[1] = m_pClient->m_Snap.m_paInfoByScore[i];
|
|
|
|
Local = 1;
|
|
|
|
break;
|
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
2011-01-12 00:01:05 +00:00
|
|
|
}
|
2018-03-13 20:56:37 +00:00
|
|
|
char aScore[2][16];
|
2011-01-12 00:01:05 +00:00
|
|
|
for(int t = 0; t < 2; ++t)
|
|
|
|
{
|
|
|
|
if(apPlayerInfo[t])
|
2014-01-10 15:19:46 +00:00
|
|
|
{
|
2019-06-04 22:44:59 +00:00
|
|
|
if(m_pClient->m_GameInfo.m_TimeScore && g_Config.m_ClDDRaceScoreBoard)
|
2014-01-10 15:19:46 +00:00
|
|
|
{
|
2018-03-13 20:56:37 +00:00
|
|
|
if(apPlayerInfo[t]->m_Score != -9999)
|
2020-09-26 19:41:58 +00:00
|
|
|
str_format(aScore[t], sizeof(aScore[t]), "%02d:%02d", abs(apPlayerInfo[t]->m_Score) / 60, abs(apPlayerInfo[t]->m_Score) % 60);
|
2014-01-10 15:19:46 +00:00
|
|
|
else
|
|
|
|
aScore[t][0] = 0;
|
|
|
|
}
|
|
|
|
else
|
2020-09-26 19:41:58 +00:00
|
|
|
str_format(aScore[t], sizeof(aScore) / 2, "%d", apPlayerInfo[t]->m_Score);
|
2014-01-10 15:19:46 +00:00
|
|
|
}
|
2011-01-12 00:01:05 +00:00
|
|
|
else
|
|
|
|
aScore[t][0] = 0;
|
|
|
|
}
|
2018-03-13 20:56:37 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
bool RecreateScore[2] = {str_comp(aScore[0], m_aScoreInfo[0].m_aScoreText) != 0, str_comp(aScore[1], m_aScoreInfo[1].m_aScoreText) != 0};
|
2018-03-13 20:56:37 +00:00
|
|
|
|
|
|
|
bool RecreateRect = ForceScoreInfoInit;
|
|
|
|
for(int t = 0; t < 2; t++)
|
|
|
|
{
|
|
|
|
if(RecreateScore[t])
|
|
|
|
{
|
2020-07-15 19:10:13 +00:00
|
|
|
m_aScoreInfo[t].m_ScoreTextWidth = TextRender()->TextWidth(0, 14.0f, aScore[t], -1, -1.0f);
|
2018-03-13 20:56:37 +00:00
|
|
|
mem_copy(m_aScoreInfo[t].m_aScoreText, aScore[t], sizeof(m_aScoreInfo[t].m_aScoreText));
|
|
|
|
RecreateRect = true;
|
|
|
|
}
|
2018-03-21 14:53:29 +00:00
|
|
|
|
2018-03-21 15:02:11 +00:00
|
|
|
if(apPlayerInfo[t])
|
2018-03-21 14:53:29 +00:00
|
|
|
{
|
|
|
|
int ID = apPlayerInfo[t]->m_ClientID;
|
2018-03-21 15:02:11 +00:00
|
|
|
if(ID >= 0 && ID < MAX_CLIENTS)
|
2018-03-21 14:53:29 +00:00
|
|
|
{
|
|
|
|
const char *pName = m_pClient->m_aClients[ID].m_aName;
|
2018-03-21 15:02:11 +00:00
|
|
|
if(str_comp(pName, m_aScoreInfo[t].m_aPlayerNameText) != 0)
|
2018-03-21 14:53:29 +00:00
|
|
|
RecreateRect = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-21 15:02:11 +00:00
|
|
|
if(m_aScoreInfo[t].m_aPlayerNameText[0] != 0)
|
2018-03-21 14:53:29 +00:00
|
|
|
RecreateRect = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
char aBuf[16];
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%d.", aPos[t]);
|
2018-03-21 15:02:11 +00:00
|
|
|
if(str_comp(aBuf, m_aScoreInfo[t].m_aRankText) != 0)
|
2018-03-21 14:53:29 +00:00
|
|
|
RecreateRect = true;
|
2018-03-13 20:56:37 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 19:10:13 +00:00
|
|
|
static float s_TextWidth10 = TextRender()->TextWidth(0, 14.0f, "10", -1, -1.0f);
|
2019-04-26 19:36:49 +00:00
|
|
|
float ScoreWidthMax = maximum(maximum(m_aScoreInfo[0].m_ScoreTextWidth, m_aScoreInfo[1].m_ScoreTextWidth), s_TextWidth10);
|
2011-01-12 00:01:05 +00:00
|
|
|
float Split = 3.0f, ImageSize = 16.0f, PosSize = 16.0f;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-01-12 00:01:05 +00:00
|
|
|
for(int t = 0; t < 2; t++)
|
|
|
|
{
|
|
|
|
// draw box
|
2018-03-13 20:56:37 +00:00
|
|
|
if(RecreateRect)
|
|
|
|
{
|
|
|
|
if(m_aScoreInfo[t].m_RoundRectQuadContainerIndex != -1)
|
|
|
|
Graphics()->DeleteQuadContainer(m_aScoreInfo[t].m_RoundRectQuadContainerIndex);
|
|
|
|
|
|
|
|
if(t == Local)
|
|
|
|
Graphics()->SetColor(1.0f, 1.0f, 1.0f, 0.25f);
|
|
|
|
else
|
|
|
|
Graphics()->SetColor(0.0f, 0.0f, 0.0f, 0.25f);
|
|
|
|
m_aScoreInfo[t].m_RoundRectQuadContainerIndex = RenderTools()->CreateRoundRectQuadContainer(Whole - ScoreWidthMax - ImageSize - 2 * Split - PosSize, StartY + t * 20, ScoreWidthMax + ImageSize + 2 * Split + PosSize, 18.0f, 5.0f, CUI::CORNER_L);
|
|
|
|
}
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2018-03-13 20:56:37 +00:00
|
|
|
Graphics()->SetColor(1.0f, 1.0f, 1.0f, 1.0f);
|
|
|
|
if(m_aScoreInfo[t].m_RoundRectQuadContainerIndex != -1)
|
|
|
|
Graphics()->RenderQuadContainer(m_aScoreInfo[t].m_RoundRectQuadContainerIndex, -1);
|
2011-01-12 00:01:05 +00:00
|
|
|
|
2018-03-13 20:56:37 +00:00
|
|
|
if(RecreateScore[t])
|
|
|
|
{
|
|
|
|
if(m_aScoreInfo[t].m_TextScoreContainerIndex != -1)
|
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[t].m_TextScoreContainerIndex);
|
|
|
|
|
|
|
|
CTextCursor Cursor;
|
2018-04-03 15:41:11 +00:00
|
|
|
TextRender()->SetCursor(&Cursor, Whole - ScoreWidthMax + (ScoreWidthMax - m_aScoreInfo[t].m_ScoreTextWidth) / 2 - Split, StartY + t * 20 + (18.f - 14.f) / 2.f, 14.0f, TEXTFLAG_RENDER);
|
2018-03-13 20:56:37 +00:00
|
|
|
Cursor.m_LineWidth = -1;
|
|
|
|
m_aScoreInfo[t].m_TextScoreContainerIndex = TextRender()->CreateTextContainer(&Cursor, aScore[t]);
|
|
|
|
}
|
2011-01-12 00:01:05 +00:00
|
|
|
// draw score
|
2018-03-13 20:56:37 +00:00
|
|
|
if(m_aScoreInfo[t].m_TextScoreContainerIndex != -1)
|
|
|
|
{
|
|
|
|
STextRenderColor TColor(1.f, 1.f, 1.f, 1.f);
|
|
|
|
STextRenderColor TOutlineColor(0.f, 0.f, 0.f, 0.3f);
|
|
|
|
TextRender()->RenderTextContainer(m_aScoreInfo[t].m_TextScoreContainerIndex, &TColor, &TOutlineColor);
|
|
|
|
}
|
2011-01-12 00:01:05 +00:00
|
|
|
|
|
|
|
if(apPlayerInfo[t])
|
2015-07-09 00:08:14 +00:00
|
|
|
{
|
2012-01-08 23:28:42 +00:00
|
|
|
// draw name
|
|
|
|
int ID = apPlayerInfo[t]->m_ClientID;
|
2014-07-08 00:17:08 +00:00
|
|
|
if(ID >= 0 && ID < MAX_CLIENTS)
|
|
|
|
{
|
2019-04-02 23:05:38 +00:00
|
|
|
const char *pName = m_pClient->m_aClients[ID].m_aName;
|
2018-03-21 14:53:29 +00:00
|
|
|
if(RecreateRect)
|
2018-03-13 20:56:37 +00:00
|
|
|
{
|
|
|
|
mem_copy(m_aScoreInfo[t].m_aPlayerNameText, pName, sizeof(m_aScoreInfo[t].m_aPlayerNameText));
|
|
|
|
|
|
|
|
if(m_aScoreInfo[t].m_OptionalNameTextContainerIndex != -1)
|
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[t].m_OptionalNameTextContainerIndex);
|
|
|
|
|
2020-07-15 19:10:13 +00:00
|
|
|
float w = TextRender()->TextWidth(0, 8.0f, pName, -1, -1.0f);
|
2018-03-13 20:56:37 +00:00
|
|
|
|
|
|
|
CTextCursor Cursor;
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->SetCursor(&Cursor, minimum(Whole - w - 1.0f, Whole - ScoreWidthMax - ImageSize - 2 * Split - PosSize), StartY + (t + 1) * 20.0f - 2.0f, 8.0f, TEXTFLAG_RENDER);
|
2018-03-13 20:56:37 +00:00
|
|
|
Cursor.m_LineWidth = -1;
|
|
|
|
m_aScoreInfo[t].m_OptionalNameTextContainerIndex = TextRender()->CreateTextContainer(&Cursor, pName);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(m_aScoreInfo[t].m_OptionalNameTextContainerIndex != -1)
|
|
|
|
{
|
|
|
|
STextRenderColor TColor(1.f, 1.f, 1.f, 1.f);
|
|
|
|
STextRenderColor TOutlineColor(0.f, 0.f, 0.f, 0.3f);
|
|
|
|
TextRender()->RenderTextContainer(m_aScoreInfo[t].m_OptionalNameTextContainerIndex, &TColor, &TOutlineColor);
|
|
|
|
}
|
2012-01-08 23:28:42 +00:00
|
|
|
|
2014-07-08 00:17:08 +00:00
|
|
|
// draw tee
|
|
|
|
CTeeRenderInfo Info = m_pClient->m_aClients[ID].m_RenderInfo;
|
|
|
|
Info.m_Size = 18.0f;
|
2020-09-26 19:41:58 +00:00
|
|
|
RenderTools()->RenderTee(CAnimState::GetIdle(), &Info, EMOTE_NORMAL, vec2(1, 0),
|
|
|
|
vec2(Whole - ScoreWidthMax - Info.m_Size / 2 - Split, StartY + 1.0f + Info.m_Size / 2 + t * 20));
|
2014-07-08 00:17:08 +00:00
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
2018-03-21 14:53:29 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
m_aScoreInfo[t].m_aPlayerNameText[0] = 0;
|
|
|
|
}
|
2011-01-12 00:01:05 +00:00
|
|
|
|
|
|
|
// draw position
|
2018-03-13 20:56:37 +00:00
|
|
|
char aBuf[16];
|
2011-01-12 00:01:05 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "%d.", aPos[t]);
|
2018-03-21 14:53:29 +00:00
|
|
|
if(RecreateRect)
|
2018-03-13 20:56:37 +00:00
|
|
|
{
|
|
|
|
mem_copy(m_aScoreInfo[t].m_aRankText, aBuf, sizeof(m_aScoreInfo[t].m_aRankText));
|
|
|
|
|
|
|
|
if(m_aScoreInfo[t].m_TextRankContainerIndex != -1)
|
|
|
|
TextRender()->DeleteTextContainer(m_aScoreInfo[t].m_TextRankContainerIndex);
|
2019-04-02 23:05:38 +00:00
|
|
|
|
2018-03-13 20:56:37 +00:00
|
|
|
CTextCursor Cursor;
|
2018-04-03 15:41:11 +00:00
|
|
|
TextRender()->SetCursor(&Cursor, Whole - ScoreWidthMax - ImageSize - Split - PosSize, StartY + t * 20 + (18.f - 10.f) / 2.f, 10.0f, TEXTFLAG_RENDER);
|
2018-03-13 20:56:37 +00:00
|
|
|
Cursor.m_LineWidth = -1;
|
|
|
|
m_aScoreInfo[t].m_TextRankContainerIndex = TextRender()->CreateTextContainer(&Cursor, aBuf);
|
|
|
|
}
|
|
|
|
if(m_aScoreInfo[t].m_TextRankContainerIndex != -1)
|
|
|
|
{
|
|
|
|
STextRenderColor TColor(1.f, 1.f, 1.f, 1.f);
|
|
|
|
STextRenderColor TOutlineColor(0.f, 0.f, 0.f, 0.3f);
|
|
|
|
TextRender()->RenderTextContainer(m_aScoreInfo[t].m_TextRankContainerIndex, &TColor, &TOutlineColor);
|
|
|
|
}
|
2012-01-08 23:28:42 +00:00
|
|
|
|
|
|
|
StartY += 8.0f;
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-05-30 12:01:11 +00:00
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2010-05-30 12:01:11 +00:00
|
|
|
void CHud::RenderWarmupTimer()
|
|
|
|
{
|
2008-08-27 15:48:50 +00:00
|
|
|
// render warmup timer
|
2020-09-26 19:41:58 +00:00
|
|
|
if(m_pClient->m_Snap.m_pGameInfoObj->m_WarmupTimer > 0 && !(m_pClient->m_Snap.m_pGameInfoObj->m_GameStateFlags & GAMESTATEFLAG_RACETIME))
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
char Buf[256];
|
2010-05-30 12:01:11 +00:00
|
|
|
float FontSize = 20.0f;
|
2020-07-15 19:10:13 +00:00
|
|
|
float w = TextRender()->TextWidth(0, FontSize, Localize("Warmup"), -1, -1.0f);
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->Text(0, 150 * Graphics()->ScreenAspect() + -w / 2, 50, FontSize, Localize("Warmup"), -1.0f);
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
int Seconds = m_pClient->m_Snap.m_pGameInfoObj->m_WarmupTimer / SERVER_TICK_SPEED;
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Seconds < 5)
|
2020-09-26 19:41:58 +00:00
|
|
|
str_format(Buf, sizeof(Buf), "%d.%d", Seconds, (m_pClient->m_Snap.m_pGameInfoObj->m_WarmupTimer * 10 / SERVER_TICK_SPEED) % 10);
|
2008-08-27 15:48:50 +00:00
|
|
|
else
|
2010-05-29 07:25:38 +00:00
|
|
|
str_format(Buf, sizeof(Buf), "%d", Seconds);
|
2020-07-15 19:10:13 +00:00
|
|
|
w = TextRender()->TextWidth(0, FontSize, Buf, -1, -1.0f);
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->Text(0, 150 * Graphics()->ScreenAspect() + -w / 2, 75, FontSize, Buf, -1.0f);
|
2011-04-13 18:37:12 +00:00
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CHud::MapscreenToGroup(float CenterX, float CenterY, CMapItemGroup *pGroup)
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
float Points[4];
|
2019-04-02 23:05:38 +00:00
|
|
|
RenderTools()->MapscreenToWorld(CenterX, CenterY, pGroup->m_ParallaxX, pGroup->m_ParallaxY,
|
2010-05-29 07:25:38 +00:00
|
|
|
pGroup->m_OffsetX, pGroup->m_OffsetY, Graphics()->ScreenAspect(), 1.0f, Points);
|
|
|
|
Graphics()->MapScreen(Points[0], Points[1], Points[2], Points[3]);
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
|
|
|
|
2016-05-03 14:06:10 +00:00
|
|
|
void CHud::RenderTextInfo()
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2018-01-14 16:21:50 +00:00
|
|
|
if(g_Config.m_ClShowfps)
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
// calculate avg. fps
|
2020-09-26 19:41:58 +00:00
|
|
|
m_FrameTimeAvg = m_FrameTimeAvg * 0.9f + Client()->RenderFrameTime() * 0.1f;
|
2018-01-14 16:21:50 +00:00
|
|
|
char Buf[64];
|
2018-03-13 20:56:37 +00:00
|
|
|
int FrameTime = (int)(1.0f / m_FrameTimeAvg + 0.5f);
|
|
|
|
str_format(Buf, sizeof(Buf), "%d", FrameTime);
|
|
|
|
|
2020-07-15 19:10:13 +00:00
|
|
|
static float s_TextWidth0 = TextRender()->TextWidth(0, 12.f, "0", -1, -1.0f);
|
|
|
|
static float s_TextWidth00 = TextRender()->TextWidth(0, 12.f, "00", -1, -1.0f);
|
|
|
|
static float s_TextWidth000 = TextRender()->TextWidth(0, 12.f, "000", -1, -1.0f);
|
|
|
|
static float s_TextWidth0000 = TextRender()->TextWidth(0, 12.f, "0000", -1, -1.0f);
|
|
|
|
static float s_TextWidth00000 = TextRender()->TextWidth(0, 12.f, "00000", -1, -1.0f);
|
2020-09-26 19:41:58 +00:00
|
|
|
static float s_TextWidth[5] = {s_TextWidth0, s_TextWidth00, s_TextWidth000, s_TextWidth0000, s_TextWidth00000};
|
2018-03-13 20:56:37 +00:00
|
|
|
|
2018-03-21 14:53:29 +00:00
|
|
|
int DigitIndex = (int)log10((FrameTime ? FrameTime : 1));
|
2018-03-13 20:56:37 +00:00
|
|
|
if(DigitIndex > 4)
|
|
|
|
DigitIndex = 4;
|
2020-07-15 19:42:48 +00:00
|
|
|
//TextRender()->Text(0, m_Width-10-TextRender()->TextWidth(0,12,Buf,-1,-1.0f), 5, 12, Buf, -1.0f);
|
2018-03-13 20:56:37 +00:00
|
|
|
|
|
|
|
CTextCursor Cursor;
|
|
|
|
TextRender()->SetCursor(&Cursor, m_Width - 10 - s_TextWidth[DigitIndex], 5, 12, TEXTFLAG_RENDER);
|
|
|
|
Cursor.m_LineWidth = -1;
|
2018-03-21 14:53:29 +00:00
|
|
|
if(m_FPSTextContainerIndex == -1)
|
|
|
|
m_FPSTextContainerIndex = TextRender()->CreateTextContainer(&Cursor, "0");
|
|
|
|
TextRender()->RecreateTextContainerSoft(&Cursor, m_FPSTextContainerIndex, Buf);
|
2018-03-13 20:56:37 +00:00
|
|
|
STextRenderColor TColor;
|
|
|
|
TColor.m_R = 1.f;
|
|
|
|
TColor.m_G = 1.f;
|
|
|
|
TColor.m_B = 1.f;
|
|
|
|
TColor.m_A = 1.f;
|
|
|
|
STextRenderColor TOutColor;
|
|
|
|
TOutColor.m_R = 0.f;
|
|
|
|
TOutColor.m_G = 0.f;
|
|
|
|
TOutColor.m_B = 0.f;
|
|
|
|
TOutColor.m_A = 0.3f;
|
2018-03-21 14:53:29 +00:00
|
|
|
TextRender()->RenderTextContainer(m_FPSTextContainerIndex, &TColor, &TOutColor);
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
2016-05-05 16:07:00 +00:00
|
|
|
if(g_Config.m_ClShowpred)
|
2016-05-03 14:06:10 +00:00
|
|
|
{
|
|
|
|
char aBuf[64];
|
2016-05-05 16:07:00 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "%d", Client()->GetPredictionTime());
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->Text(0, m_Width - 10 - TextRender()->TextWidth(0, 12, aBuf, -1, -1.0f), g_Config.m_ClShowfps ? 20 : 5, 12, aBuf, -1.0f);
|
2016-05-03 14:06:10 +00:00
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CHud::RenderConnectionWarning()
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Client()->ConnectionProblems())
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2010-06-03 09:30:05 +00:00
|
|
|
const char *pText = Localize("Connection Problems...");
|
2020-07-15 19:10:13 +00:00
|
|
|
float w = TextRender()->TextWidth(0, 24, pText, -1, -1.0f);
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->Text(0, 150 * Graphics()->ScreenAspect() - w / 2, 50, 24, pText, -1.0f);
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CHud::RenderTeambalanceWarning()
|
2008-09-01 18:17:01 +00:00
|
|
|
{
|
|
|
|
// render prompt about team-balance
|
2020-09-26 19:41:58 +00:00
|
|
|
bool Flash = time() / (time_freq() / 2) % 2 == 0;
|
|
|
|
if(m_pClient->m_Snap.m_pGameInfoObj->m_GameFlags & GAMEFLAG_TEAMS)
|
2011-04-13 18:37:12 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
int TeamDiff = m_pClient->m_Snap.m_aTeamSize[TEAM_RED] - m_pClient->m_Snap.m_aTeamSize[TEAM_BLUE];
|
2018-03-13 20:56:37 +00:00
|
|
|
if(g_Config.m_ClWarningTeambalance && (TeamDiff >= 2 || TeamDiff <= -2))
|
2008-09-01 18:17:01 +00:00
|
|
|
{
|
2010-06-03 09:30:05 +00:00
|
|
|
const char *pText = Localize("Please balance teams!");
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Flash)
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->TextColor(1, 1, 0.5f, 1);
|
2008-09-01 18:17:01 +00:00
|
|
|
else
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->TextColor(0.7f, 0.7f, 0.2f, 1.0f);
|
2020-07-15 19:42:48 +00:00
|
|
|
TextRender()->Text(0x0, 5, 50, 6, pText, -1.0f);
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->TextColor(1, 1, 1, 1);
|
2008-09-01 18:17:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CHud::RenderVoting()
|
2008-09-25 14:04:02 +00:00
|
|
|
{
|
2014-01-13 23:25:25 +00:00
|
|
|
if((!g_Config.m_ClShowVotesAfterVoting && !m_pClient->m_pScoreboard->Active() && m_pClient->m_pVoting->TakenChoice()) || !m_pClient->m_pVoting->IsVoting() || Client()->State() == IClient::STATE_DEMOPLAYBACK)
|
2008-09-25 14:04:02 +00:00
|
|
|
return;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2009-10-27 14:38:53 +00:00
|
|
|
Graphics()->QuadsBegin();
|
2020-09-26 19:41:58 +00:00
|
|
|
Graphics()->SetColor(0, 0, 0, 0.40f);
|
2014-06-16 11:29:18 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
RenderTools()->DrawRoundRect(-10, 60 - 2, 100 + 10 + 4 + 5, 46, 5.0f);
|
2009-10-27 14:38:53 +00:00
|
|
|
Graphics()->QuadsEnd();
|
2009-01-21 21:17:25 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->TextColor(1, 1, 1, 1);
|
2009-01-21 21:17:25 +00:00
|
|
|
|
2010-09-12 11:18:11 +00:00
|
|
|
CTextCursor Cursor;
|
2011-03-25 09:26:59 +00:00
|
|
|
char aBuf[512];
|
|
|
|
str_format(aBuf, sizeof(aBuf), Localize("%ds left"), m_pClient->m_pVoting->SecondsLeft());
|
2020-07-15 19:10:13 +00:00
|
|
|
float tw = TextRender()->TextWidth(0x0, 6, aBuf, -1, -1.0f);
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->SetCursor(&Cursor, 5.0f + 100.0f - tw, 60.0f, 6.0f, TEXTFLAG_RENDER);
|
2011-03-25 09:26:59 +00:00
|
|
|
TextRender()->TextEx(&Cursor, aBuf, -1);
|
2010-09-12 11:18:11 +00:00
|
|
|
|
2011-03-25 09:26:59 +00:00
|
|
|
TextRender()->SetCursor(&Cursor, 5.0f, 60.0f, 6.0f, TEXTFLAG_RENDER);
|
2020-09-26 19:41:58 +00:00
|
|
|
Cursor.m_LineWidth = 100.0f - tw;
|
2011-03-25 09:26:59 +00:00
|
|
|
Cursor.m_MaxLines = 3;
|
2010-09-12 11:18:11 +00:00
|
|
|
TextRender()->TextEx(&Cursor, m_pClient->m_pVoting->VoteDescription(), -1);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-03-25 09:26:59 +00:00
|
|
|
// reason
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%s %s", Localize("Reason:"), m_pClient->m_pVoting->VoteReason());
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->SetCursor(&Cursor, 5.0f, 79.0f, 6.0f, TEXTFLAG_RENDER | TEXTFLAG_STOP_AT_END);
|
2011-03-25 09:26:59 +00:00
|
|
|
Cursor.m_LineWidth = 100.0f;
|
|
|
|
TextRender()->TextEx(&Cursor, aBuf, -1);
|
2009-01-21 21:17:25 +00:00
|
|
|
|
2011-03-25 09:26:59 +00:00
|
|
|
CUIRect Base = {5, 88, 100, 4};
|
2010-05-29 07:25:38 +00:00
|
|
|
m_pClient->m_pVoting->RenderBars(Base, false);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2019-04-28 13:32:14 +00:00
|
|
|
char aKey[64];
|
|
|
|
m_pClient->m_pBinds->GetKey("vote yes", aKey, sizeof(aKey));
|
|
|
|
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%s - %s", aKey, Localize("Vote yes"));
|
2018-04-04 00:40:30 +00:00
|
|
|
Base.y += Base.h;
|
|
|
|
Base.h = 11.f;
|
2011-03-25 09:26:59 +00:00
|
|
|
UI()->DoLabel(&Base, aBuf, 6.0f, -1);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2019-04-28 13:32:14 +00:00
|
|
|
m_pClient->m_pBinds->GetKey("vote no", aKey, sizeof(aKey));
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%s - %s", Localize("Vote no"), aKey);
|
2011-03-25 09:26:59 +00:00
|
|
|
UI()->DoLabel(&Base, aBuf, 6.0f, 1);
|
2008-09-25 14:04:02 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CHud::RenderCursor()
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2010-09-08 00:07:36 +00:00
|
|
|
if(!m_pClient->m_Snap.m_pLocalCharacter || Client()->State() == IClient::STATE_DEMOPLAYBACK)
|
2008-08-31 13:36:30 +00:00
|
|
|
return;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
MapscreenToGroup(m_pClient->m_pCamera->m_Center.x, m_pClient->m_pCamera->m_Center.y, Layers()->GameGroup());
|
|
|
|
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_GAME].m_Id);
|
2019-04-02 23:05:38 +00:00
|
|
|
|
2008-08-27 15:48:50 +00:00
|
|
|
// render cursor
|
2020-09-26 19:41:58 +00:00
|
|
|
int QuadOffset = NUM_WEAPONS * 10 + 40 + (m_pClient->m_Snap.m_pLocalCharacter->m_Weapon % NUM_WEAPONS);
|
2018-03-13 20:56:37 +00:00
|
|
|
Graphics()->SetColor(1.f, 1.f, 1.f, 1.f);
|
|
|
|
Graphics()->RenderQuadContainerAsSprite(m_HudQuadContainerIndex, QuadOffset, m_pClient->m_pControls->m_TargetPos[g_Config.m_ClDummy].x, m_pClient->m_pControls->m_TargetPos[g_Config.m_ClDummy].y);
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
|
|
|
|
2018-03-13 20:56:37 +00:00
|
|
|
void CHud::PrepareHealthAmoQuads()
|
2008-08-27 15:48:50 +00:00
|
|
|
{
|
2018-03-13 20:56:37 +00:00
|
|
|
m_HudQuadContainerIndex = Graphics()->CreateQuadContainer();
|
2008-08-27 15:48:50 +00:00
|
|
|
|
|
|
|
float x = 5;
|
|
|
|
float y = 5;
|
2010-05-29 07:25:38 +00:00
|
|
|
IGraphics::CQuadItem Array[10];
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2018-03-13 20:56:37 +00:00
|
|
|
for(int i = 0; i < NUM_WEAPONS; ++i)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
RenderTools()->SelectSprite(g_pData->m_Weapons.m_aId[i % NUM_WEAPONS].m_pSpriteProj);
|
2018-03-13 20:56:37 +00:00
|
|
|
for(int n = 0; n < 10; n++)
|
|
|
|
Array[n] = IGraphics::CQuadItem(x + n * 12, y + 24, 10, 10);
|
|
|
|
Graphics()->QuadContainerAddQuads(m_HudQuadContainerIndex, Array, 10);
|
|
|
|
}
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2018-03-13 20:56:37 +00:00
|
|
|
// health
|
2010-05-29 07:25:38 +00:00
|
|
|
RenderTools()->SelectSprite(SPRITE_HEALTH_FULL);
|
2018-03-13 20:56:37 +00:00
|
|
|
for(int i = 0; i < 10; ++i)
|
|
|
|
Array[i] = IGraphics::CQuadItem(x + i * 12, y, 10, 10);
|
|
|
|
Graphics()->QuadContainerAddQuads(m_HudQuadContainerIndex, Array, 10);
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
RenderTools()->SelectSprite(SPRITE_HEALTH_EMPTY);
|
2018-03-13 20:56:37 +00:00
|
|
|
for(int i = 0; i < 10; ++i)
|
|
|
|
Array[i] = IGraphics::CQuadItem(x + i * 12, y, 10, 10);
|
|
|
|
Graphics()->QuadContainerAddQuads(m_HudQuadContainerIndex, Array, 10);
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2018-03-13 20:56:37 +00:00
|
|
|
// armor meter
|
2010-05-29 07:25:38 +00:00
|
|
|
RenderTools()->SelectSprite(SPRITE_ARMOR_FULL);
|
2018-03-13 20:56:37 +00:00
|
|
|
for(int i = 0; i < 10; ++i)
|
|
|
|
Array[i] = IGraphics::CQuadItem(x + i * 12, y + 12, 10, 10);
|
|
|
|
Graphics()->QuadContainerAddQuads(m_HudQuadContainerIndex, Array, 10);
|
2008-08-27 15:48:50 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
RenderTools()->SelectSprite(SPRITE_ARMOR_EMPTY);
|
2018-03-13 20:56:37 +00:00
|
|
|
for(int i = 0; i < 10; ++i)
|
|
|
|
Array[i] = IGraphics::CQuadItem(x + i * 12, y + 12, 10, 10);
|
|
|
|
Graphics()->QuadContainerAddQuads(m_HudQuadContainerIndex, Array, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHud::RenderHealthAndAmmo(const CNetObj_Character *pCharacter)
|
|
|
|
{
|
|
|
|
if(!pCharacter)
|
|
|
|
return;
|
|
|
|
// render ammo count
|
|
|
|
// render gui stuff
|
|
|
|
|
|
|
|
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_GAME].m_Id);
|
2019-04-02 23:05:38 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
int QuadOffset = pCharacter->m_Weapon % NUM_WEAPONS * 10;
|
2019-04-26 19:36:49 +00:00
|
|
|
Graphics()->RenderQuadContainer(m_HudQuadContainerIndex, QuadOffset, minimum(pCharacter->m_AmmoCount, 10));
|
2018-03-13 20:56:37 +00:00
|
|
|
|
|
|
|
QuadOffset = NUM_WEAPONS * 10;
|
2019-04-26 19:36:49 +00:00
|
|
|
Graphics()->RenderQuadContainer(m_HudQuadContainerIndex, QuadOffset, minimum(pCharacter->m_Health, 10));
|
2019-04-02 23:05:38 +00:00
|
|
|
|
2019-04-26 19:36:49 +00:00
|
|
|
QuadOffset += 10 + minimum(pCharacter->m_Health, 10);
|
|
|
|
if(minimum(pCharacter->m_Health, 10) < 10)
|
|
|
|
Graphics()->RenderQuadContainer(m_HudQuadContainerIndex, QuadOffset, 10 - minimum(pCharacter->m_Health, 10));
|
2018-03-13 20:56:37 +00:00
|
|
|
|
|
|
|
QuadOffset = NUM_WEAPONS * 10 + 20;
|
2019-04-26 19:36:49 +00:00
|
|
|
Graphics()->RenderQuadContainer(m_HudQuadContainerIndex, QuadOffset, minimum(pCharacter->m_Armor, 10));
|
2018-03-13 20:56:37 +00:00
|
|
|
|
2019-04-26 19:36:49 +00:00
|
|
|
QuadOffset += 10 + minimum(pCharacter->m_Armor, 10);
|
|
|
|
if(minimum(pCharacter->m_Armor, 10) < 10)
|
|
|
|
Graphics()->RenderQuadContainer(m_HudQuadContainerIndex, QuadOffset, 10 - minimum(pCharacter->m_Armor, 10));
|
2008-08-27 15:48:50 +00:00
|
|
|
}
|
|
|
|
|
2011-03-10 09:08:14 +00:00
|
|
|
void CHud::RenderSpectatorHud()
|
|
|
|
{
|
|
|
|
// draw the box
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2011-03-10 09:08:14 +00:00
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
Graphics()->SetColor(0.0f, 0.0f, 0.0f, 0.4f);
|
2020-09-26 19:41:58 +00:00
|
|
|
RenderTools()->DrawRoundRectExt(m_Width - 180.0f, m_Height - 15.0f, 180.0f, 15.0f, 5.0f, CUI::CORNER_TL);
|
2011-03-10 09:08:14 +00:00
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
|
|
|
|
// draw the text
|
|
|
|
char aBuf[128];
|
2020-09-26 19:41:58 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "%s: %s", Localize("Spectate"), m_pClient->m_Snap.m_SpecInfo.m_SpectatorID != SPEC_FREEVIEW ? m_pClient->m_aClients[m_pClient->m_Snap.m_SpecInfo.m_SpectatorID].m_aName : Localize("Free-View"));
|
|
|
|
TextRender()->Text(0, m_Width - 174.0f, m_Height - 15.0f + (15.f - 8.f) / 2.f, 8.0f, aBuf, -1.0f);
|
2011-03-10 09:08:14 +00:00
|
|
|
}
|
|
|
|
|
2016-04-27 17:22:55 +00:00
|
|
|
void CHud::RenderLocalTime(float x)
|
|
|
|
{
|
|
|
|
if(!g_Config.m_ClShowLocalTimeAlways && !m_pClient->m_pScoreboard->Active())
|
|
|
|
return;
|
|
|
|
|
|
|
|
//draw the box
|
|
|
|
Graphics()->BlendNormal();
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2016-04-27 17:22:55 +00:00
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
Graphics()->SetColor(0.0f, 0.0f, 0.0f, 0.4f);
|
2020-09-26 19:41:58 +00:00
|
|
|
RenderTools()->DrawRoundRectExt(x - 30.0f, 0.0f, 25.0f, 12.5f, 3.75f, CUI::CORNER_B);
|
2016-04-27 17:22:55 +00:00
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
|
|
|
|
//draw the text
|
2017-09-03 06:53:54 +00:00
|
|
|
char aTimeStr[6];
|
|
|
|
str_timestamp_format(aTimeStr, sizeof(aTimeStr), "%H:%M");
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->Text(0, x - 25.0f, (12.5f - 5.f) / 2.f, 5.0f, aTimeStr, -1.0f);
|
2016-04-27 17:22:55 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 03:46:10 +00:00
|
|
|
void CHud::OnRender()
|
|
|
|
{
|
2011-03-04 16:08:10 +00:00
|
|
|
if(!m_pClient->m_Snap.m_pGameInfoObj)
|
2011-01-06 03:46:10 +00:00
|
|
|
return;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
m_Width = 300.0f * Graphics()->ScreenAspect();
|
2011-03-10 09:08:14 +00:00
|
|
|
m_Height = 300.0f;
|
|
|
|
Graphics()->MapScreen(0.0f, 0.0f, m_Width, m_Height);
|
2011-01-06 03:46:10 +00:00
|
|
|
|
2019-10-02 05:11:58 +00:00
|
|
|
#if defined(CONF_VIDEORECORDER)
|
2020-09-26 19:41:58 +00:00
|
|
|
if((IVideo::Current() && g_Config.m_ClVideoShowhud) || (!IVideo::Current() && g_Config.m_ClShowhud))
|
2019-10-02 05:11:58 +00:00
|
|
|
#else
|
2011-03-27 12:40:15 +00:00
|
|
|
if(g_Config.m_ClShowhud)
|
2019-10-02 05:11:58 +00:00
|
|
|
#endif
|
2011-03-10 09:08:14 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(m_pClient->m_Snap.m_pLocalCharacter && !(m_pClient->m_Snap.m_pGameInfoObj->m_GameStateFlags & GAMESTATEFLAG_GAMEOVER))
|
2011-12-26 11:56:24 +00:00
|
|
|
{
|
2018-03-13 20:56:37 +00:00
|
|
|
if(g_Config.m_ClShowhudHealthAmmo)
|
2013-11-02 02:09:56 +00:00
|
|
|
RenderHealthAndAmmo(m_pClient->m_Snap.m_pLocalCharacter);
|
2011-12-26 11:56:24 +00:00
|
|
|
RenderDDRaceEffects();
|
|
|
|
}
|
2011-03-27 12:40:15 +00:00
|
|
|
else if(m_pClient->m_Snap.m_SpecInfo.m_Active)
|
|
|
|
{
|
2013-11-02 02:09:56 +00:00
|
|
|
if(m_pClient->m_Snap.m_SpecInfo.m_SpectatorID != SPEC_FREEVIEW && g_Config.m_ClShowhudHealthAmmo)
|
2011-03-27 12:40:15 +00:00
|
|
|
RenderHealthAndAmmo(&m_pClient->m_Snap.m_aCharacters[m_pClient->m_Snap.m_SpecInfo.m_SpectatorID].m_Cur);
|
|
|
|
RenderSpectatorHud();
|
|
|
|
}
|
2011-01-06 03:46:10 +00:00
|
|
|
|
2011-03-27 12:40:15 +00:00
|
|
|
RenderGameTimer();
|
2012-01-10 21:40:48 +00:00
|
|
|
RenderPauseNotification();
|
2011-03-27 12:40:15 +00:00
|
|
|
RenderSuddenDeath();
|
2018-03-13 20:56:37 +00:00
|
|
|
if(g_Config.m_ClShowhudScore)
|
2013-11-02 02:09:56 +00:00
|
|
|
RenderScoreHud();
|
2011-03-27 12:40:15 +00:00
|
|
|
RenderWarmupTimer();
|
2016-05-03 14:06:10 +00:00
|
|
|
RenderTextInfo();
|
2020-09-26 19:41:58 +00:00
|
|
|
RenderLocalTime((m_Width / 7) * 3);
|
2011-03-27 12:40:15 +00:00
|
|
|
if(Client()->State() != IClient::STATE_DEMOPLAYBACK)
|
|
|
|
RenderConnectionWarning();
|
|
|
|
RenderTeambalanceWarning();
|
|
|
|
RenderVoting();
|
2018-03-13 20:56:37 +00:00
|
|
|
if(g_Config.m_ClShowRecord)
|
2014-02-06 22:49:25 +00:00
|
|
|
RenderRecord();
|
2011-03-27 12:40:15 +00:00
|
|
|
}
|
2011-01-06 03:46:10 +00:00
|
|
|
RenderCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHud::OnMessage(int MsgType, void *pRawMsg)
|
|
|
|
{
|
|
|
|
if(MsgType == NETMSGTYPE_SV_DDRACETIME)
|
|
|
|
{
|
|
|
|
m_DDRaceTimeReceived = true;
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2011-01-06 03:46:10 +00:00
|
|
|
CNetMsg_Sv_DDRaceTime *pMsg = (CNetMsg_Sv_DDRaceTime *)pRawMsg;
|
|
|
|
|
|
|
|
m_DDRaceTime = pMsg->m_Time;
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2020-02-19 10:24:58 +00:00
|
|
|
m_LastReceivedTimeTick = Client()->GameTick(g_Config.m_ClDummy);
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2011-01-06 03:46:10 +00:00
|
|
|
m_FinishTime = pMsg->m_Finish ? true : false;
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2011-01-06 03:46:10 +00:00
|
|
|
if(pMsg->m_Check)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
m_CheckpointDiff = (float)pMsg->m_Check / 100;
|
2020-02-19 10:24:58 +00:00
|
|
|
m_CheckpointTick = Client()->GameTick(g_Config.m_ClDummy);
|
2011-01-06 03:46:10 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-22 10:12:02 +00:00
|
|
|
else if(MsgType == NETMSGTYPE_SV_KILLMSG)
|
|
|
|
{
|
|
|
|
CNetMsg_Sv_KillMsg *pMsg = (CNetMsg_Sv_KillMsg *)pRawMsg;
|
|
|
|
if(pMsg->m_Victim == m_pClient->m_Snap.m_LocalClientID)
|
|
|
|
{
|
|
|
|
m_CheckpointTick = 0;
|
|
|
|
m_DDRaceTime = 0;
|
|
|
|
}
|
|
|
|
}
|
2016-05-21 23:26:15 +00:00
|
|
|
else if(MsgType == NETMSGTYPE_SV_RECORD)
|
|
|
|
{
|
2016-05-22 10:12:02 +00:00
|
|
|
CNetMsg_Sv_Record *pMsg = (CNetMsg_Sv_Record *)pRawMsg;
|
|
|
|
|
|
|
|
// NETMSGTYPE_SV_RACETIME on old race servers
|
2019-06-03 19:52:14 +00:00
|
|
|
if(GameClient()->m_GameInfo.m_DDRaceRecordMessage)
|
2016-05-21 23:26:15 +00:00
|
|
|
{
|
|
|
|
m_DDRaceTimeReceived = true;
|
|
|
|
|
|
|
|
m_DDRaceTime = pMsg->m_ServerTimeBest; // First value: m_Time
|
|
|
|
|
2020-02-19 10:24:58 +00:00
|
|
|
m_LastReceivedTimeTick = Client()->GameTick(g_Config.m_ClDummy);
|
2016-05-21 23:26:15 +00:00
|
|
|
|
|
|
|
if(pMsg->m_PlayerTimeBest) // Second value: m_Check
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
m_CheckpointDiff = (float)pMsg->m_PlayerTimeBest / 100;
|
2020-02-19 10:24:58 +00:00
|
|
|
m_CheckpointTick = Client()->GameTick(g_Config.m_ClDummy);
|
2016-05-21 23:26:15 +00:00
|
|
|
}
|
|
|
|
}
|
2019-06-03 19:52:14 +00:00
|
|
|
else if(GameClient()->m_GameInfo.m_RaceRecordMessage)
|
2011-01-06 03:46:10 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
m_ServerRecord = (float)pMsg->m_ServerTimeBest / 100;
|
|
|
|
m_PlayerRecord[g_Config.m_ClDummy] = (float)pMsg->m_PlayerTimeBest / 100;
|
2011-01-06 03:46:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-30 02:24:15 +00:00
|
|
|
void CHud::RenderDDRaceEffects()
|
2010-10-30 14:22:35 +00:00
|
|
|
{
|
|
|
|
// check racestate
|
2020-09-26 19:41:58 +00:00
|
|
|
if(m_FinishTime && m_LastReceivedTimeTick + Client()->GameTickSpeed() * 2 < Client()->GameTick(g_Config.m_ClDummy))
|
2010-10-30 14:22:35 +00:00
|
|
|
{
|
|
|
|
m_FinishTime = false;
|
|
|
|
m_DDRaceTimeReceived = false;
|
|
|
|
return;
|
|
|
|
}
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2010-10-30 14:22:35 +00:00
|
|
|
if(m_DDRaceTime)
|
|
|
|
{
|
|
|
|
char aBuf[64];
|
|
|
|
if(m_FinishTime)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "Finish time: %02d:%02d.%02d", m_DDRaceTime / 6000, m_DDRaceTime / 100 - m_DDRaceTime / 6000 * 60, m_DDRaceTime % 100);
|
|
|
|
TextRender()->Text(0, 150 * Graphics()->ScreenAspect() - TextRender()->TextWidth(0, 12, aBuf, -1, -1.0f) / 2, 20, 12, aBuf, -1.0f);
|
2010-10-30 14:22:35 +00:00
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
else if(m_CheckpointTick + Client()->GameTickSpeed() * 6 > Client()->GameTick(g_Config.m_ClDummy))
|
2010-10-30 14:22:35 +00:00
|
|
|
{
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%+5.2f", m_CheckpointDiff);
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2010-10-30 14:22:35 +00:00
|
|
|
// calculate alpha (4 sec 1 than get lower the next 2 sec)
|
|
|
|
float a = 1.0f;
|
2020-09-26 19:41:58 +00:00
|
|
|
if(m_CheckpointTick + Client()->GameTickSpeed() * 4 < Client()->GameTick(g_Config.m_ClDummy) && m_CheckpointTick + Client()->GameTickSpeed() * 6 > Client()->GameTick(g_Config.m_ClDummy))
|
2010-10-30 14:22:35 +00:00
|
|
|
{
|
|
|
|
// lower the alpha slowly to blend text out
|
2020-09-26 19:41:58 +00:00
|
|
|
a = ((float)(m_CheckpointTick + Client()->GameTickSpeed() * 6) - (float)Client()->GameTick(g_Config.m_ClDummy)) / (float)(Client()->GameTickSpeed() * 2);
|
2010-10-30 14:22:35 +00:00
|
|
|
}
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2010-10-30 14:22:35 +00:00
|
|
|
if(m_CheckpointDiff > 0)
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->TextColor(1.0f, 0.5f, 0.5f, a); // red
|
2010-10-30 14:22:35 +00:00
|
|
|
else if(m_CheckpointDiff < 0)
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->TextColor(0.5f, 1.0f, 0.5f, a); // green
|
2010-10-30 14:22:35 +00:00
|
|
|
else if(!m_CheckpointDiff)
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->TextColor(1, 1, 1, a); // white
|
|
|
|
TextRender()->Text(0, 150 * Graphics()->ScreenAspect() - TextRender()->TextWidth(0, 10, aBuf, -1, -1.0f) / 2, 20, 10, aBuf, -1.0f);
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
TextRender()->TextColor(1, 1, 1, 1);
|
2010-10-30 14:22:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-06 22:49:25 +00:00
|
|
|
|
|
|
|
void CHud::RenderRecord()
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(m_ServerRecord > 0)
|
2014-02-06 22:49:25 +00:00
|
|
|
{
|
|
|
|
char aBuf[64];
|
2020-03-01 11:54:59 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), Localize("Server best:"));
|
2020-07-15 19:42:48 +00:00
|
|
|
TextRender()->Text(0, 5, 40, 6, aBuf, -1.0f);
|
2020-09-26 19:41:58 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "%02d:%05.2f", (int)m_ServerRecord / 60, m_ServerRecord - ((int)m_ServerRecord / 60 * 60));
|
2020-07-15 19:42:48 +00:00
|
|
|
TextRender()->Text(0, 53, 40, 6, aBuf, -1.0f);
|
2014-02-06 22:49:25 +00:00
|
|
|
}
|
|
|
|
|
2020-03-01 11:54:59 +00:00
|
|
|
const float PlayerRecord = m_PlayerRecord[g_Config.m_ClDummy];
|
2020-09-26 19:41:58 +00:00
|
|
|
if(PlayerRecord > 0)
|
2014-02-06 22:49:25 +00:00
|
|
|
{
|
|
|
|
char aBuf[64];
|
2020-03-01 11:54:59 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), Localize("Personal best:"));
|
2020-07-15 19:42:48 +00:00
|
|
|
TextRender()->Text(0, 5, 47, 6, aBuf, -1.0f);
|
2020-09-26 19:41:58 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "%02d:%05.2f", (int)PlayerRecord / 60, PlayerRecord - ((int)PlayerRecord / 60 * 60));
|
2020-07-15 19:42:48 +00:00
|
|
|
TextRender()->Text(0, 53, 47, 6, aBuf, -1.0f);
|
2014-02-06 22:49:25 +00:00
|
|
|
}
|
|
|
|
}
|