2015-05-19 22:51:02 +00:00
|
|
|
#include <engine/shared/config.h>
|
|
|
|
#include <engine/textrender.h>
|
|
|
|
#include <engine/graphics.h>
|
|
|
|
#include <engine/serverbrowser.h>
|
|
|
|
#include <game/generated/client_data.h>
|
|
|
|
#include <game/client/gameclient.h>
|
|
|
|
#include <game/client/animstate.h>
|
2015-05-20 16:22:04 +00:00
|
|
|
#include <game/client/components/motd.h>
|
2015-05-21 09:41:59 +00:00
|
|
|
#include <game/client/components/statboard.h>
|
2015-05-19 22:51:02 +00:00
|
|
|
|
2015-05-21 09:41:59 +00:00
|
|
|
CStatboard::CStatboard()
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
2015-05-20 16:22:04 +00:00
|
|
|
m_Active = false;
|
2015-05-19 22:51:02 +00:00
|
|
|
m_ScreenshotTaken = false;
|
|
|
|
m_ScreenshotTime = -1;
|
|
|
|
}
|
|
|
|
|
2015-05-21 09:41:59 +00:00
|
|
|
void CStatboard::OnReset()
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
for(int i=0; i<MAX_CLIENTS; i++)
|
|
|
|
m_pClient->m_aStats[i].Reset();
|
2015-05-20 16:22:04 +00:00
|
|
|
m_Active = false;
|
2015-05-19 22:51:02 +00:00
|
|
|
m_ScreenshotTaken = false;
|
|
|
|
m_ScreenshotTime = -1;
|
|
|
|
}
|
|
|
|
|
2015-07-09 18:38:23 +00:00
|
|
|
void CStatboard::OnRelease()
|
|
|
|
{
|
|
|
|
m_Active = false;
|
|
|
|
}
|
|
|
|
|
2015-05-21 09:41:59 +00:00
|
|
|
void CStatboard::ConKeyStats(IConsole::IResult *pResult, void *pUserData)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
2015-05-21 09:41:59 +00:00
|
|
|
((CStatboard *)pUserData)->m_Active = pResult->GetInteger(0) != 0;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 09:41:59 +00:00
|
|
|
void CStatboard::OnConsoleInit()
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
2015-05-20 20:23:58 +00:00
|
|
|
Console()->Register("+statboard", "", CFGFLAG_CLIENT, ConKeyStats, this, "Show stats");
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 09:41:59 +00:00
|
|
|
bool CStatboard::IsActive()
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
2015-05-20 16:22:04 +00:00
|
|
|
return m_Active;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 09:41:59 +00:00
|
|
|
void CStatboard::OnMessage(int MsgType, void *pRawMsg)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
if(MsgType == NETMSGTYPE_SV_KILLMSG)
|
|
|
|
{
|
|
|
|
CNetMsg_Sv_KillMsg *pMsg = (CNetMsg_Sv_KillMsg *)pRawMsg;
|
|
|
|
CGameClient::CClientStats *pStats = m_pClient->m_aStats;
|
|
|
|
|
|
|
|
pStats[pMsg->m_Victim].m_Deaths++;
|
|
|
|
pStats[pMsg->m_Victim].m_CurrentSpree = 0;
|
|
|
|
if(pMsg->m_Weapon >= 0)
|
|
|
|
pStats[pMsg->m_Victim].m_aDeathsFrom[pMsg->m_Weapon]++;
|
|
|
|
if(pMsg->m_Victim != pMsg->m_Killer)
|
|
|
|
{
|
|
|
|
pStats[pMsg->m_Killer].m_Frags++;
|
|
|
|
pStats[pMsg->m_Killer].m_CurrentSpree++;
|
|
|
|
|
|
|
|
if(pStats[pMsg->m_Killer].m_CurrentSpree > pStats[pMsg->m_Killer].m_BestSpree)
|
|
|
|
pStats[pMsg->m_Killer].m_BestSpree = pStats[pMsg->m_Killer].m_CurrentSpree;
|
|
|
|
if(pMsg->m_Weapon >= 0)
|
|
|
|
pStats[pMsg->m_Killer].m_aFragsWith[pMsg->m_Weapon]++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pStats[pMsg->m_Victim].m_Suicides++;
|
|
|
|
}
|
|
|
|
else if(MsgType == NETMSGTYPE_SV_CHAT)
|
|
|
|
{
|
|
|
|
CNetMsg_Sv_Chat *pMsg = (CNetMsg_Sv_Chat *)pRawMsg;
|
|
|
|
if(pMsg->m_ClientID < 0)
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
const char *pLookFor = "flag was captured by '";
|
|
|
|
if(str_find(pMsg->m_pMessage, pLookFor) != 0)
|
|
|
|
{
|
|
|
|
// server info
|
|
|
|
CServerInfo CurrentServerInfo;
|
|
|
|
Client()->GetServerInfo(&CurrentServerInfo);
|
|
|
|
|
|
|
|
p = str_find(pMsg->m_pMessage, pLookFor);
|
|
|
|
char aName[64];
|
|
|
|
p += str_length(pLookFor);
|
|
|
|
str_copy(aName, p, sizeof(aName));
|
|
|
|
// remove capture time
|
|
|
|
if(str_comp(aName+str_length(aName)-9, " seconds)") == 0)
|
|
|
|
{
|
|
|
|
char *c = aName+str_length(aName)-10;
|
|
|
|
while(c > aName)
|
|
|
|
{
|
|
|
|
c--;
|
|
|
|
if(*c == '(')
|
|
|
|
{
|
|
|
|
*(c-1) = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// remove the ' at the end
|
|
|
|
aName[str_length(aName)-1] = 0;
|
|
|
|
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
{
|
|
|
|
if(!m_pClient->m_aStats[i].m_Active)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(str_comp(m_pClient->m_aClients[i].m_aName, aName) == 0)
|
|
|
|
{
|
|
|
|
m_pClient->m_aStats[i].m_FlagCaptures++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-21 09:41:59 +00:00
|
|
|
void CStatboard::OnRender()
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
2015-06-12 10:38:02 +00:00
|
|
|
if(g_Config.m_ClAutoStatboardScreenshot && Client()->State() != IClient::STATE_DEMOPLAYBACK)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
if(m_ScreenshotTime < 0 && m_pClient->m_Snap.m_pGameInfoObj && m_pClient->m_Snap.m_pGameInfoObj->m_GameStateFlags&GAMESTATEFLAG_GAMEOVER)
|
2015-05-20 23:06:31 +00:00
|
|
|
m_ScreenshotTime = time_get() + time_freq() * 3;
|
2015-05-19 22:51:02 +00:00
|
|
|
if(m_ScreenshotTime > -1 && m_ScreenshotTime < time_get())
|
2015-05-20 16:22:04 +00:00
|
|
|
m_Active = true;
|
2015-05-20 23:06:31 +00:00
|
|
|
if(!m_ScreenshotTaken && m_ScreenshotTime > -1 && m_ScreenshotTime + time_freq() / 5 < time_get())
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
AutoStatScreenshot();
|
|
|
|
m_ScreenshotTaken = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-20 16:22:04 +00:00
|
|
|
if(IsActive())
|
|
|
|
RenderGlobalStats();
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 09:41:59 +00:00
|
|
|
void CStatboard::RenderGlobalStats()
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
2015-06-14 11:41:03 +00:00
|
|
|
const float StatboardWidth = 400*3.0f*Graphics()->ScreenAspect();
|
|
|
|
const float StatboardHeight = 400*3.0f;
|
2015-07-10 20:12:20 +00:00
|
|
|
float StatboardContentWidth = 260.0f;
|
2015-06-14 11:41:03 +00:00
|
|
|
float StatboardContentHeight = 750.0f;
|
2015-05-19 22:51:02 +00:00
|
|
|
|
|
|
|
const CNetObj_PlayerInfo *apPlayers[MAX_CLIENTS] = {0};
|
|
|
|
int NumPlayers = 0;
|
|
|
|
|
|
|
|
// sort red or dm players by score
|
2015-06-14 11:41:03 +00:00
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
const CNetObj_PlayerInfo *pInfo = m_pClient->m_Snap.m_paInfoByScore[i];
|
|
|
|
if(!pInfo || !m_pClient->m_aStats[pInfo->m_ClientID].m_Active || m_pClient->m_aClients[pInfo->m_ClientID].m_Team != TEAM_RED)
|
|
|
|
continue;
|
|
|
|
apPlayers[NumPlayers] = pInfo;
|
|
|
|
NumPlayers++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// sort blue players by score after
|
2015-06-14 15:20:40 +00:00
|
|
|
if(m_pClient->m_Snap.m_pGameInfoObj && m_pClient->m_Snap.m_pGameInfoObj->m_GameFlags&GAMEFLAG_TEAMS)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
2015-06-14 11:41:03 +00:00
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
const CNetObj_PlayerInfo *pInfo = m_pClient->m_Snap.m_paInfoByScore[i];
|
|
|
|
if(!pInfo || !m_pClient->m_aStats[pInfo->m_ClientID].m_Active || m_pClient->m_aClients[pInfo->m_ClientID].m_Team != TEAM_BLUE)
|
|
|
|
continue;
|
|
|
|
apPlayers[NumPlayers] = pInfo;
|
|
|
|
NumPlayers++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-21 14:27:26 +00:00
|
|
|
// Dirty hack. Do not show scoreboard if there are more than 16 players
|
|
|
|
// remove as soon as support of more than 16 players is required
|
|
|
|
if(NumPlayers > 16)
|
|
|
|
return;
|
|
|
|
|
|
|
|
//clear motd if it is active
|
|
|
|
if(m_pClient->m_pMotd->IsActive())
|
|
|
|
m_pClient->m_pMotd->Clear();
|
|
|
|
|
2015-06-12 10:33:42 +00:00
|
|
|
bool gameWithFlags = m_pClient->m_Snap.m_pGameInfoObj &&
|
|
|
|
m_pClient->m_Snap.m_pGameInfoObj->m_GameFlags&GAMEFLAG_FLAGS;
|
|
|
|
|
2015-07-09 18:33:16 +00:00
|
|
|
StatboardContentWidth += 7 * 85 + 95; // Suicides 95; other labels 85
|
2015-05-19 22:51:02 +00:00
|
|
|
|
2015-06-14 11:41:03 +00:00
|
|
|
if(gameWithFlags)
|
2015-07-10 20:12:20 +00:00
|
|
|
StatboardContentWidth += 150; // Grabs & Flags
|
2015-05-19 22:51:02 +00:00
|
|
|
|
2015-05-21 09:41:59 +00:00
|
|
|
bool aDisplayWeapon[NUM_WEAPONS] = {false};
|
2015-06-14 11:41:03 +00:00
|
|
|
for(int i = 0; i < NumPlayers; i++)
|
2015-05-21 09:41:59 +00:00
|
|
|
{
|
|
|
|
const CGameClient::CClientStats pStats = m_pClient->m_aStats[apPlayers[i]->m_ClientID];
|
|
|
|
for(int j=0; j<NUM_WEAPONS; j++)
|
2015-05-21 11:31:56 +00:00
|
|
|
aDisplayWeapon[j] = aDisplayWeapon[j] || pStats.m_aFragsWith[j] || pStats.m_aDeathsFrom[j];
|
2015-05-21 09:41:59 +00:00
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
for(int i = 0; i < NUM_WEAPONS; i++)
|
2015-05-21 09:41:59 +00:00
|
|
|
if(aDisplayWeapon[i])
|
2015-06-14 11:41:03 +00:00
|
|
|
StatboardContentWidth += 80;
|
2015-05-19 22:51:02 +00:00
|
|
|
|
2015-06-14 11:41:03 +00:00
|
|
|
float x = StatboardWidth/2-StatboardContentWidth/2;
|
2015-05-19 22:51:02 +00:00
|
|
|
float y = 200.0f;
|
|
|
|
|
2015-06-14 11:41:03 +00:00
|
|
|
Graphics()->MapScreen(0, 0, StatboardWidth, StatboardHeight);
|
2015-05-19 22:51:02 +00:00
|
|
|
|
|
|
|
Graphics()->BlendNormal();
|
|
|
|
Graphics()->TextureSet(-1);
|
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
Graphics()->SetColor(0,0,0,0.5f);
|
2015-06-14 11:41:03 +00:00
|
|
|
RenderTools()->DrawRoundRect(x-10.f, y-10.f, StatboardContentWidth, StatboardContentHeight, 17.0f);
|
2015-05-19 22:51:02 +00:00
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
|
|
|
|
float tw;
|
|
|
|
int px = 325;
|
|
|
|
|
2015-07-09 18:33:16 +00:00
|
|
|
TextRender()->Text(0, x+10, y-5, 22.0f, Localize("Name"), -1);
|
2015-06-14 11:41:03 +00:00
|
|
|
const char *apHeaders[] = {
|
|
|
|
Localize("Frags"), Localize("Deaths"), Localize("Suicides"),
|
|
|
|
Localize("Ratio"), Localize("Net"), Localize("FPM"),
|
2015-07-09 18:33:16 +00:00
|
|
|
Localize("Spree"), Localize("Best"), Localize("Grabs")
|
2015-06-14 11:41:03 +00:00
|
|
|
};
|
|
|
|
for(int i = 0; i < 9; i++)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
2015-05-21 17:21:13 +00:00
|
|
|
if(i == 2)
|
|
|
|
px += 10.0f; // Suicides
|
2015-06-12 10:33:42 +00:00
|
|
|
if(i == 8 && !gameWithFlags) // Don't draw "Grabs" in game with no flag
|
|
|
|
continue;
|
2015-07-09 18:33:16 +00:00
|
|
|
tw = TextRender()->TextWidth(0, 22.0f, apHeaders[i], -1);
|
|
|
|
TextRender()->Text(0, x+px-tw, y-5, 22.0f, apHeaders[i], -1);
|
|
|
|
px += 85;
|
2015-05-20 23:06:31 +00:00
|
|
|
}
|
2015-05-19 22:51:02 +00:00
|
|
|
|
2015-05-20 23:06:31 +00:00
|
|
|
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_GAME].m_Id);
|
|
|
|
Graphics()->QuadsBegin();
|
2015-06-14 11:41:03 +00:00
|
|
|
px -= 40;
|
|
|
|
for(int i = 0; i < NUM_WEAPONS; i++)
|
2015-05-20 23:06:31 +00:00
|
|
|
{
|
2015-05-21 09:41:59 +00:00
|
|
|
if(!aDisplayWeapon[i])
|
|
|
|
continue;
|
2015-05-20 23:06:31 +00:00
|
|
|
RenderTools()->SelectSprite(g_pData->m_Weapons.m_aId[i].m_pSpriteBody);
|
|
|
|
if(i == 0)
|
|
|
|
RenderTools()->DrawSprite(x+px, y+10, g_pData->m_Weapons.m_aId[i].m_VisualSize*0.8);
|
|
|
|
else
|
|
|
|
RenderTools()->DrawSprite(x+px, y+10, g_pData->m_Weapons.m_aId[i].m_VisualSize);
|
|
|
|
px += 80;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
2015-05-20 23:06:31 +00:00
|
|
|
Graphics()->QuadsEnd();
|
2015-05-19 22:51:02 +00:00
|
|
|
|
2015-06-12 10:33:42 +00:00
|
|
|
if(gameWithFlags)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_GAME].m_Id);
|
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
Graphics()->QuadsSetRotation(0.78f);
|
|
|
|
RenderTools()->SelectSprite(SPRITE_FLAG_RED);
|
|
|
|
RenderTools()->DrawSprite(x+px, y+15, 48);
|
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
px += 40;
|
|
|
|
}
|
2015-05-19 22:51:02 +00:00
|
|
|
|
|
|
|
y += 29.0f;
|
|
|
|
|
2015-07-09 18:33:16 +00:00
|
|
|
float FontSize = 24.0f;
|
2015-05-19 22:51:02 +00:00
|
|
|
float LineHeight = 50.0f;
|
2015-07-09 18:33:16 +00:00
|
|
|
float TeeSizemod = 0.8f;
|
2015-05-19 22:51:02 +00:00
|
|
|
float TeeOffset = 0.0f;
|
|
|
|
|
|
|
|
if(NumPlayers > 14)
|
|
|
|
{
|
2015-07-09 18:33:16 +00:00
|
|
|
FontSize = 24.0f;
|
2015-05-19 22:51:02 +00:00
|
|
|
LineHeight = 40.0f;
|
2015-07-09 18:33:16 +00:00
|
|
|
TeeSizemod = 0.7f;
|
2015-05-19 22:51:02 +00:00
|
|
|
TeeOffset = -5.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int j = 0; j < NumPlayers; j++)
|
|
|
|
{
|
|
|
|
const CNetObj_PlayerInfo *pInfo = apPlayers[j];
|
|
|
|
const CGameClient::CClientStats Stats = m_pClient->m_aStats[pInfo->m_ClientID];
|
|
|
|
|
2015-06-14 11:41:03 +00:00
|
|
|
if(m_pClient->m_Snap.m_LocalClientID == pInfo->m_ClientID
|
|
|
|
|| (m_pClient->m_Snap.m_SpecInfo.m_Active && pInfo->m_ClientID == m_pClient->m_Snap.m_SpecInfo.m_SpectatorID))
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
// background so it's easy to find the local player
|
|
|
|
Graphics()->TextureSet(-1);
|
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
Graphics()->SetColor(1,1,1,0.25f);
|
2015-06-14 11:41:03 +00:00
|
|
|
RenderTools()->DrawRoundRect(x, y, StatboardContentWidth-20, LineHeight*0.95f, 17.0f);
|
2015-05-19 22:51:02 +00:00
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
CTeeRenderInfo Teeinfo = m_pClient->m_aClients[pInfo->m_ClientID].m_RenderInfo;
|
|
|
|
Teeinfo.m_Size *= TeeSizemod;
|
|
|
|
RenderTools()->RenderTee(CAnimState::GetIdle(), &Teeinfo, EMOTE_NORMAL, vec2(1,0), vec2(x+28, y+28+TeeOffset));
|
|
|
|
|
|
|
|
char aBuf[128];
|
|
|
|
CTextCursor Cursor;
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, m_pClient->m_aClients[pInfo->m_ClientID].m_aName, -1);
|
|
|
|
TextRender()->SetCursor(&Cursor, x+64, y, FontSize, TEXTFLAG_RENDER|TEXTFLAG_STOP_AT_END);
|
|
|
|
Cursor.m_LineWidth = 220;
|
|
|
|
TextRender()->TextEx(&Cursor, m_pClient->m_aClients[pInfo->m_ClientID].m_aName, -1);
|
|
|
|
|
|
|
|
px = 325;
|
|
|
|
|
2015-06-14 11:41:03 +00:00
|
|
|
// FRAGS
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%d", Stats.m_Frags);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x-tw+px, y, FontSize, aBuf, -1);
|
2015-07-09 18:33:16 +00:00
|
|
|
px += 85;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
// DEATHS
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%d", Stats.m_Deaths);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x-tw+px, y, FontSize, aBuf, -1);
|
2015-07-09 18:33:16 +00:00
|
|
|
px += 85;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
// SUICIDES
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
2015-05-21 17:21:13 +00:00
|
|
|
px += 10;
|
2015-05-19 22:51:02 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "%d", Stats.m_Suicides);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x-tw+px, y, FontSize, aBuf, -1);
|
2015-07-09 18:33:16 +00:00
|
|
|
px += 85;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
// RATIO
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
if(Stats.m_Deaths == 0)
|
|
|
|
str_format(aBuf, sizeof(aBuf), "--");
|
|
|
|
else
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%.2f", (float)(Stats.m_Frags)/Stats.m_Deaths);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x-tw+px, y, FontSize, aBuf, -1);
|
2015-07-09 18:33:16 +00:00
|
|
|
px += 85;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
// NET
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%+d", Stats.m_Frags-Stats.m_Deaths);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x-tw+px, y, FontSize, aBuf, -1);
|
2015-07-09 18:33:16 +00:00
|
|
|
px += 85;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
// FPM
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
float Fpm = (float)(Stats.m_Frags*60)/((float)(Client()->GameTick()-Stats.m_JoinDate)/Client()->GameTickSpeed());
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%.1f", Fpm);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x-tw+px, y, FontSize, aBuf, -1);
|
2015-07-09 18:33:16 +00:00
|
|
|
px += 85;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
// SPREE
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%d", Stats.m_CurrentSpree);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x-tw+px, y, FontSize, aBuf, -1);
|
2015-07-09 18:33:16 +00:00
|
|
|
px += 85;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
// BEST SPREE
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%d", Stats.m_BestSpree);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x-tw+px, y, FontSize, aBuf, -1);
|
2015-07-09 18:33:16 +00:00
|
|
|
px += 85;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
// GRABS
|
2015-06-12 10:33:42 +00:00
|
|
|
if(gameWithFlags)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%d", Stats.m_FlagGrabs);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x-tw+px, y, FontSize, aBuf, -1);
|
2015-07-09 18:33:16 +00:00
|
|
|
px += 85;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
// WEAPONS
|
|
|
|
px -= 40;
|
|
|
|
for(int i = 0; i < NUM_WEAPONS; i++)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
2015-05-21 09:41:59 +00:00
|
|
|
if(!aDisplayWeapon[i])
|
|
|
|
continue;
|
|
|
|
|
2015-05-19 22:51:02 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "%d/%d", Stats.m_aFragsWith[i], Stats.m_aDeathsFrom[i]);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x+px-tw/2, y, FontSize, aBuf, -1);
|
|
|
|
px += 80;
|
|
|
|
}
|
2015-06-14 11:41:03 +00:00
|
|
|
// FLAGS
|
2015-06-12 10:33:42 +00:00
|
|
|
if(gameWithFlags)
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
str_format(aBuf, sizeof(aBuf), "%d", Stats.m_FlagCaptures);
|
|
|
|
tw = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, x-tw+px, y, FontSize, aBuf, -1);
|
2015-07-09 18:33:16 +00:00
|
|
|
px += 85;
|
2015-05-19 22:51:02 +00:00
|
|
|
}
|
|
|
|
y += LineHeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-21 09:41:59 +00:00
|
|
|
void CStatboard::AutoStatScreenshot()
|
2015-05-19 22:51:02 +00:00
|
|
|
{
|
|
|
|
if(Client()->State() != IClient::STATE_DEMOPLAYBACK)
|
|
|
|
Client()->AutoStatScreenshot_Start();
|
|
|
|
}
|