2011-03-10 09:08: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. */
|
2011-03-12 17:07:57 +00:00
|
|
|
#include <engine/demo.h>
|
2011-03-10 09:08:14 +00:00
|
|
|
#include <engine/graphics.h>
|
|
|
|
#include <engine/textrender.h>
|
|
|
|
#include <engine/shared/config.h>
|
|
|
|
|
|
|
|
#include <game/generated/client_data.h>
|
|
|
|
#include <game/generated/protocol.h>
|
|
|
|
|
|
|
|
#include <game/client/animstate.h>
|
|
|
|
#include <game/client/render.h>
|
|
|
|
|
|
|
|
#include "spectator.h"
|
|
|
|
|
|
|
|
|
2011-08-13 00:11:06 +00:00
|
|
|
void CSpectator::ConKeySpectator(IConsole::IResult *pResult, void *pUserData)
|
2011-03-10 09:08:14 +00:00
|
|
|
{
|
|
|
|
CSpectator *pSelf = (CSpectator *)pUserData;
|
2015-08-26 17:35:00 +00:00
|
|
|
|
2015-07-26 16:21:51 +00:00
|
|
|
if(pSelf->m_pClient->m_Snap.m_SpecInfo.m_Active || pSelf->Client()->State() == IClient::STATE_DEMOPLAYBACK)
|
2011-03-10 09:08:14 +00:00
|
|
|
pSelf->m_Active = pResult->GetInteger(0) != 0;
|
2015-08-26 17:35:00 +00:00
|
|
|
else
|
|
|
|
pSelf->m_Active = false;
|
2011-03-10 09:08:14 +00:00
|
|
|
}
|
|
|
|
|
2011-08-13 00:11:06 +00:00
|
|
|
void CSpectator::ConSpectate(IConsole::IResult *pResult, void *pUserData)
|
2011-03-10 09:08:14 +00:00
|
|
|
{
|
|
|
|
((CSpectator *)pUserData)->Spectate(pResult->GetInteger(0));
|
|
|
|
}
|
|
|
|
|
2011-08-13 00:11:06 +00:00
|
|
|
void CSpectator::ConSpectateNext(IConsole::IResult *pResult, void *pUserData)
|
2011-04-03 23:27:23 +00:00
|
|
|
{
|
|
|
|
CSpectator *pSelf = (CSpectator *)pUserData;
|
2011-04-04 08:42:36 +00:00
|
|
|
int NewSpectatorID;
|
|
|
|
bool GotNewSpectatorID = false;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2014-04-24 12:59:16 +00:00
|
|
|
int CurPos = -1;
|
|
|
|
for (int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
if (pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i] && pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID == pSelf->m_pClient->m_Snap.m_SpecInfo.m_SpectatorID)
|
|
|
|
CurPos = i;
|
|
|
|
|
2011-04-03 23:27:23 +00:00
|
|
|
if(pSelf->m_pClient->m_Snap.m_SpecInfo.m_SpectatorID == SPEC_FREEVIEW)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
{
|
2014-03-23 22:23:41 +00:00
|
|
|
if(!pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i] || pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_Team == TEAM_SPECTATORS)
|
2011-04-03 23:27:23 +00:00
|
|
|
continue;
|
|
|
|
|
2014-04-24 12:59:16 +00:00
|
|
|
NewSpectatorID = pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID;
|
2011-04-04 08:42:36 +00:00
|
|
|
GotNewSpectatorID = true;
|
2011-04-03 23:27:23 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-24 12:59:16 +00:00
|
|
|
for(int i = CurPos + 1; i < MAX_CLIENTS; i++)
|
2011-04-03 23:27:23 +00:00
|
|
|
{
|
2014-03-23 22:23:41 +00:00
|
|
|
if(!pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i] || pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_Team == TEAM_SPECTATORS)
|
2011-04-03 23:27:23 +00:00
|
|
|
continue;
|
|
|
|
|
2014-04-24 12:59:16 +00:00
|
|
|
NewSpectatorID = pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID;
|
2011-04-04 08:42:36 +00:00
|
|
|
GotNewSpectatorID = true;
|
2011-04-03 23:27:23 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-04-04 08:42:36 +00:00
|
|
|
if(!GotNewSpectatorID)
|
2011-04-03 23:27:23 +00:00
|
|
|
{
|
2014-04-24 12:59:16 +00:00
|
|
|
for(int i = 0; i < CurPos; i++)
|
2011-04-03 23:27:23 +00:00
|
|
|
{
|
2014-03-23 22:23:41 +00:00
|
|
|
if(!pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i] || pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_Team == TEAM_SPECTATORS)
|
2011-04-03 23:27:23 +00:00
|
|
|
continue;
|
|
|
|
|
2014-04-24 12:59:16 +00:00
|
|
|
NewSpectatorID = pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID;
|
2011-04-19 14:10:50 +00:00
|
|
|
GotNewSpectatorID = true;
|
2011-04-03 23:27:23 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-04 08:42:36 +00:00
|
|
|
if(GotNewSpectatorID)
|
|
|
|
pSelf->Spectate(NewSpectatorID);
|
2011-04-03 23:27:23 +00:00
|
|
|
}
|
|
|
|
|
2011-08-13 00:11:06 +00:00
|
|
|
void CSpectator::ConSpectatePrevious(IConsole::IResult *pResult, void *pUserData)
|
2011-04-03 23:27:23 +00:00
|
|
|
{
|
|
|
|
CSpectator *pSelf = (CSpectator *)pUserData;
|
2011-04-04 08:42:36 +00:00
|
|
|
int NewSpectatorID;
|
|
|
|
bool GotNewSpectatorID = false;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2014-04-24 12:59:16 +00:00
|
|
|
int CurPos = -1;
|
|
|
|
for (int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
if (pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i] && pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID == pSelf->m_pClient->m_Snap.m_SpecInfo.m_SpectatorID)
|
|
|
|
CurPos = i;
|
|
|
|
|
2011-04-03 23:27:23 +00:00
|
|
|
if(pSelf->m_pClient->m_Snap.m_SpecInfo.m_SpectatorID == SPEC_FREEVIEW)
|
|
|
|
{
|
|
|
|
for(int i = MAX_CLIENTS -1; i > -1; i--)
|
|
|
|
{
|
2014-03-23 22:23:41 +00:00
|
|
|
if(!pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i] || pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_Team == TEAM_SPECTATORS)
|
2011-04-03 23:27:23 +00:00
|
|
|
continue;
|
|
|
|
|
2014-04-24 12:59:16 +00:00
|
|
|
NewSpectatorID = pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID;
|
2011-04-04 08:42:36 +00:00
|
|
|
GotNewSpectatorID = true;
|
2011-04-03 23:27:23 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-24 12:59:16 +00:00
|
|
|
for(int i = CurPos - 1; i > -1; i--)
|
2011-04-03 23:27:23 +00:00
|
|
|
{
|
2014-03-23 22:23:41 +00:00
|
|
|
if(!pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i] || pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_Team == TEAM_SPECTATORS)
|
2011-04-03 23:27:23 +00:00
|
|
|
continue;
|
|
|
|
|
2014-04-24 12:59:16 +00:00
|
|
|
NewSpectatorID = pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID;
|
2011-04-04 08:42:36 +00:00
|
|
|
GotNewSpectatorID = true;
|
2011-04-03 23:27:23 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-04-04 08:42:36 +00:00
|
|
|
if(!GotNewSpectatorID)
|
2011-04-03 23:27:23 +00:00
|
|
|
{
|
2014-04-24 12:59:16 +00:00
|
|
|
for(int i = MAX_CLIENTS - 1; i > CurPos; i--)
|
2011-04-03 23:27:23 +00:00
|
|
|
{
|
2014-03-23 22:23:41 +00:00
|
|
|
if(!pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i] || pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_Team == TEAM_SPECTATORS)
|
2011-04-03 23:27:23 +00:00
|
|
|
continue;
|
|
|
|
|
2014-04-24 12:59:16 +00:00
|
|
|
NewSpectatorID = pSelf->m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID;
|
2011-04-04 08:42:36 +00:00
|
|
|
GotNewSpectatorID = true;
|
2011-04-03 23:27:23 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-04 08:42:36 +00:00
|
|
|
if(GotNewSpectatorID)
|
|
|
|
pSelf->Spectate(NewSpectatorID);
|
2011-04-03 23:27:23 +00:00
|
|
|
}
|
|
|
|
|
2011-03-10 09:08:14 +00:00
|
|
|
CSpectator::CSpectator()
|
|
|
|
{
|
|
|
|
OnReset();
|
2014-06-16 12:44:00 +00:00
|
|
|
m_OldMouseX = m_OldMouseY = 0.0f;
|
2011-03-10 09:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CSpectator::OnConsoleInit()
|
|
|
|
{
|
2011-08-13 00:11:06 +00:00
|
|
|
Console()->Register("+spectate", "", CFGFLAG_CLIENT, ConKeySpectator, this, "Open spectator mode selector");
|
2015-12-28 15:14:52 +00:00
|
|
|
Console()->Register("spectate", "i[spectator-id]", CFGFLAG_CLIENT, ConSpectate, this, "Switch spectator mode");
|
2011-08-13 00:11:06 +00:00
|
|
|
Console()->Register("spectate_next", "", CFGFLAG_CLIENT, ConSpectateNext, this, "Spectate the next player");
|
|
|
|
Console()->Register("spectate_previous", "", CFGFLAG_CLIENT, ConSpectatePrevious, this, "Spectate the previous player");
|
2011-03-10 09:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CSpectator::OnMouseMove(float x, float y)
|
|
|
|
{
|
|
|
|
if(!m_Active)
|
|
|
|
return false;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-07-02 22:36:07 +00:00
|
|
|
UI()->ConvertMouseMove(&x, &y);
|
2011-03-10 09:08:14 +00:00
|
|
|
m_SelectorMouse += vec2(x,y);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSpectator::OnRelease()
|
|
|
|
{
|
|
|
|
OnReset();
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-03-10 09:08:14 +00:00
|
|
|
void CSpectator::OnRender()
|
|
|
|
{
|
|
|
|
if(!m_Active)
|
|
|
|
{
|
|
|
|
if(m_WasActive)
|
|
|
|
{
|
|
|
|
if(m_SelectedSpectatorID != NO_SELECTION)
|
|
|
|
Spectate(m_SelectedSpectatorID);
|
2011-03-12 17:07:57 +00:00
|
|
|
m_WasActive = false;
|
2011-03-10 09:08:14 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2015-09-04 09:22:19 +00:00
|
|
|
if(!m_pClient->m_Snap.m_SpecInfo.m_Active && Client()->State() != IClient::STATE_DEMOPLAYBACK)
|
2011-07-11 10:02:45 +00:00
|
|
|
{
|
|
|
|
m_Active = false;
|
|
|
|
m_WasActive = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-10 09:08:14 +00:00
|
|
|
m_WasActive = true;
|
|
|
|
m_SelectedSpectatorID = NO_SELECTION;
|
|
|
|
|
|
|
|
// draw background
|
|
|
|
float Width = 400*3.0f*Graphics()->ScreenAspect();
|
|
|
|
float Height = 400*3.0f;
|
2014-01-12 18:38:22 +00:00
|
|
|
float ObjWidth = 300.0f;
|
|
|
|
float FontSize = 20.0f;
|
|
|
|
float BigFontSize = 20.0f;
|
|
|
|
float StartY = -190.0f;
|
|
|
|
float LineHeight = 60.0f;
|
|
|
|
float TeeSizeMod = 1.0f;
|
|
|
|
float RoundRadius = 30.0f;
|
|
|
|
bool Selected = false;
|
|
|
|
int TotalPlayers = 0;
|
|
|
|
int PerLine = 8;
|
|
|
|
float BoxMove = -10.0f;
|
|
|
|
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; ++i)
|
|
|
|
{
|
2014-03-23 22:23:41 +00:00
|
|
|
if(!m_pClient->m_Snap.m_paInfoByDDTeam[i] || m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_Team == TEAM_SPECTATORS)
|
2014-01-12 18:38:22 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
++TotalPlayers;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TotalPlayers > 32)
|
|
|
|
{
|
|
|
|
FontSize = 18.0f;
|
|
|
|
LineHeight = 30.0f;
|
|
|
|
TeeSizeMod = 0.7f;
|
|
|
|
PerLine = 16;
|
|
|
|
RoundRadius = 10.0f;
|
|
|
|
BoxMove = 3.0f;
|
|
|
|
}
|
|
|
|
if (TotalPlayers > 16)
|
|
|
|
{
|
|
|
|
ObjWidth = 600.0f;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-03-10 09:08:14 +00:00
|
|
|
Graphics()->MapScreen(0, 0, Width, Height);
|
|
|
|
|
|
|
|
Graphics()->BlendNormal();
|
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.3f);
|
2014-01-12 18:38:22 +00:00
|
|
|
RenderTools()->DrawRoundRect(Width/2.0f-ObjWidth, Height/2.0f-300.0f, ObjWidth*2, 600.0f, 20.0f);
|
2011-03-10 09:08:14 +00:00
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
|
|
|
|
// clamp mouse position to selector area
|
2014-01-12 18:38:22 +00:00
|
|
|
m_SelectorMouse.x = clamp(m_SelectorMouse.x, -(ObjWidth - 20.0f), ObjWidth - 20.0f);
|
2011-03-10 09:08:14 +00:00
|
|
|
m_SelectorMouse.y = clamp(m_SelectorMouse.y, -280.0f, 280.0f);
|
|
|
|
|
|
|
|
// draw selections
|
2015-07-26 16:21:51 +00:00
|
|
|
if((Client()->State() == IClient::STATE_DEMOPLAYBACK && m_pClient->m_DemoSpecID == SPEC_FREEVIEW) ||
|
|
|
|
m_pClient->m_Snap.m_SpecInfo.m_SpectatorID == SPEC_FREEVIEW)
|
2011-03-10 09:08:14 +00:00
|
|
|
{
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2011-03-10 09:08:14 +00:00
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
Graphics()->SetColor(1.0f, 1.0f, 1.0f, 0.25f);
|
2014-01-12 18:38:22 +00:00
|
|
|
RenderTools()->DrawRoundRect(Width/2.0f-(ObjWidth - 20.0f), Height/2.0f-280.0f, 270.0f, 60.0f, 20.0f);
|
2011-03-10 09:08:14 +00:00
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
}
|
|
|
|
|
2015-07-26 16:21:51 +00:00
|
|
|
if(Client()->State() == IClient::STATE_DEMOPLAYBACK && m_pClient->m_DemoSpecID == SPEC_FOLLOW)
|
|
|
|
{
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2015-07-26 16:21:51 +00:00
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
Graphics()->SetColor(1.0f, 1.0f, 1.0f, 0.25f);
|
2015-07-26 16:37:31 +00:00
|
|
|
RenderTools()->DrawRoundRect(Width/2.0f-(ObjWidth - 310.0f), Height/2.0f-280.0f, 270.0f, 60.0f, 20.0f);
|
2015-07-26 16:21:51 +00:00
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
}
|
|
|
|
|
2015-07-26 16:37:31 +00:00
|
|
|
if(m_SelectorMouse.x >= -(ObjWidth-20.0f) && m_SelectorMouse.x <= -(ObjWidth-290+10.0f) &&
|
2011-03-10 09:08:14 +00:00
|
|
|
m_SelectorMouse.y >= -280.0f && m_SelectorMouse.y <= -220.0f)
|
|
|
|
{
|
|
|
|
m_SelectedSpectatorID = SPEC_FREEVIEW;
|
|
|
|
Selected = true;
|
|
|
|
}
|
|
|
|
TextRender()->TextColor(1.0f, 1.0f, 1.0f, Selected?1.0f:0.5f);
|
2018-04-03 15:41:11 +00:00
|
|
|
TextRender()->Text(0, Width/2.0f-(ObjWidth-60.0f), Height/2.0f-280.f + (60.f - BigFontSize) / 2.f, BigFontSize, Localize("Free-View"), -1);
|
2011-03-10 09:08:14 +00:00
|
|
|
|
2015-07-26 16:37:31 +00:00
|
|
|
if(Client()->State() == IClient::STATE_DEMOPLAYBACK)
|
2015-07-26 16:21:51 +00:00
|
|
|
{
|
|
|
|
Selected = false;
|
2015-07-26 16:37:31 +00:00
|
|
|
if(m_SelectorMouse.x > -(ObjWidth-290.0f) && m_SelectorMouse.x <= -(ObjWidth-590.0f) &&
|
2015-07-26 16:21:51 +00:00
|
|
|
m_SelectorMouse.y >= -280.0f && m_SelectorMouse.y <= -220.0f)
|
|
|
|
{
|
|
|
|
m_SelectedSpectatorID = SPEC_FOLLOW;
|
|
|
|
Selected = true;
|
|
|
|
}
|
|
|
|
TextRender()->TextColor(1.0f, 1.0f, 1.0f, Selected?1.0f:0.5f);
|
2018-04-03 15:41:11 +00:00
|
|
|
TextRender()->Text(0, Width/2.0f-(ObjWidth-350.0f), Height/2.0f-280.0f + (60.f - BigFontSize) / 2.f, BigFontSize, Localize("Follow"), -1);
|
2015-07-26 16:21:51 +00:00
|
|
|
}
|
|
|
|
|
2014-01-12 18:38:22 +00:00
|
|
|
float x = -(ObjWidth - 30.0f), y = StartY;
|
2014-03-23 23:04:44 +00:00
|
|
|
|
|
|
|
int OldDDTeam = -1;
|
|
|
|
|
2011-03-10 09:08:14 +00:00
|
|
|
for(int i = 0, Count = 0; i < MAX_CLIENTS; ++i)
|
|
|
|
{
|
2014-03-23 22:23:41 +00:00
|
|
|
if(!m_pClient->m_Snap.m_paInfoByDDTeam[i] || m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_Team == TEAM_SPECTATORS)
|
2011-03-10 09:08:14 +00:00
|
|
|
continue;
|
|
|
|
|
2013-12-31 21:15:38 +00:00
|
|
|
++Count;
|
|
|
|
|
2014-01-12 18:38:22 +00:00
|
|
|
if(Count == PerLine + 1 || (Count > PerLine + 1 && (Count-1)%PerLine == 0))
|
2011-03-10 09:08:14 +00:00
|
|
|
{
|
|
|
|
x += 290.0f;
|
|
|
|
y = StartY;
|
|
|
|
}
|
|
|
|
|
2014-03-23 23:04:44 +00:00
|
|
|
const CNetObj_PlayerInfo *pInfo = m_pClient->m_Snap.m_paInfoByDDTeam[i];
|
2019-04-11 10:21:42 +00:00
|
|
|
int DDTeam = m_pClient->m_Teams.Team(pInfo->m_ClientID);
|
2014-03-23 23:04:44 +00:00
|
|
|
int NextDDTeam = 0;
|
|
|
|
|
|
|
|
for(int j = i + 1; j < MAX_CLIENTS; j++)
|
|
|
|
{
|
|
|
|
const CNetObj_PlayerInfo *pInfo2 = m_pClient->m_Snap.m_paInfoByDDTeam[j];
|
|
|
|
|
|
|
|
if(!pInfo2 || pInfo2->m_Team == TEAM_SPECTATORS)
|
|
|
|
continue;
|
|
|
|
|
2019-04-11 10:21:42 +00:00
|
|
|
NextDDTeam = m_pClient->m_Teams.Team(pInfo2->m_ClientID);
|
2014-03-23 23:04:44 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (OldDDTeam == -1)
|
|
|
|
{
|
|
|
|
for (int j = i - 1; j >= 0; j--)
|
|
|
|
{
|
|
|
|
const CNetObj_PlayerInfo *pInfo2 = m_pClient->m_Snap.m_paInfoByDDTeam[j];
|
|
|
|
|
|
|
|
if(!pInfo2 || pInfo2->m_Team == TEAM_SPECTATORS)
|
|
|
|
continue;
|
|
|
|
|
2019-04-11 10:21:42 +00:00
|
|
|
OldDDTeam = m_pClient->m_Teams.Team(pInfo2->m_ClientID);
|
2014-03-23 23:04:44 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DDTeam != TEAM_FLOCK)
|
|
|
|
{
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2014-03-23 23:04:44 +00:00
|
|
|
Graphics()->QuadsBegin();
|
2019-04-26 22:11:15 +00:00
|
|
|
ColorRGBA rgb = color_cast<ColorRGBA>(ColorHSLA(DDTeam / 64.0f, 1.0f, 0.5f, 0.5f));
|
|
|
|
Graphics()->SetColor(rgb);
|
2014-03-23 23:04:44 +00:00
|
|
|
|
|
|
|
int Corners = 0;
|
|
|
|
|
|
|
|
if (OldDDTeam != DDTeam)
|
|
|
|
Corners |= CUI::CORNER_TL | CUI::CORNER_TR;
|
|
|
|
if (NextDDTeam != DDTeam)
|
|
|
|
Corners |= CUI::CORNER_BL | CUI::CORNER_BR;
|
|
|
|
|
|
|
|
RenderTools()->DrawRoundRectExt(Width/2.0f+x-10.0f, Height/2.0f+y+BoxMove, 270.0f, LineHeight, RoundRadius, Corners);
|
|
|
|
|
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
OldDDTeam = DDTeam;
|
|
|
|
|
2015-07-26 16:21:51 +00:00
|
|
|
if((Client()->State() == IClient::STATE_DEMOPLAYBACK && m_pClient->m_DemoSpecID == m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID)
|
|
|
|
|| (Client()->State() != IClient::STATE_DEMOPLAYBACK && m_pClient ->m_Snap.m_SpecInfo.m_SpectatorID == m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID))
|
2011-03-10 09:08:14 +00:00
|
|
|
{
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2011-03-10 09:08:14 +00:00
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
Graphics()->SetColor(1.0f, 1.0f, 1.0f, 0.25f);
|
2014-01-12 18:38:22 +00:00
|
|
|
RenderTools()->DrawRoundRect(Width/2.0f+x-10.0f, Height/2.0f+y+BoxMove, 270.0f, LineHeight, RoundRadius);
|
2011-03-10 09:08:14 +00:00
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
Selected = false;
|
2014-03-24 00:47:52 +00:00
|
|
|
if(m_SelectorMouse.x >= x-10.0f && m_SelectorMouse.x < x+260.0f &&
|
2014-03-24 00:48:07 +00:00
|
|
|
m_SelectorMouse.y >= y-(LineHeight/6.0f) && m_SelectorMouse.y < y+(LineHeight*5.0f/6.0f))
|
2011-03-10 09:08:14 +00:00
|
|
|
{
|
2014-03-23 22:23:41 +00:00
|
|
|
m_SelectedSpectatorID = m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID;
|
2011-03-10 09:08:14 +00:00
|
|
|
Selected = true;
|
|
|
|
}
|
2015-07-26 16:52:53 +00:00
|
|
|
float TeeAlpha;
|
|
|
|
if(Client()->State() == IClient::STATE_DEMOPLAYBACK &&
|
|
|
|
!m_pClient->m_Snap.m_aCharacters[m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID].m_Active)
|
|
|
|
{
|
|
|
|
TextRender()->TextColor(1.0f, 1.0f, 1.0f, 0.25f);
|
|
|
|
TeeAlpha = 0.5f;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TextRender()->TextColor(1.0f, 1.0f, 1.0f, Selected?1.0f:0.5f);
|
|
|
|
TeeAlpha = 1.0f;
|
|
|
|
}
|
2018-04-03 15:41:11 +00:00
|
|
|
TextRender()->Text(0, Width/2.0f+x+50.0f, Height / 2.0f + y + BoxMove + (LineHeight - FontSize) / 2.f, FontSize, m_pClient->m_aClients[m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID].m_aName, 220.0f);
|
2011-03-10 09:08:14 +00:00
|
|
|
|
2011-05-05 00:00:43 +00:00
|
|
|
// flag
|
|
|
|
if(m_pClient->m_Snap.m_pGameInfoObj->m_GameFlags&GAMEFLAG_FLAGS &&
|
2014-03-23 22:23:41 +00:00
|
|
|
m_pClient->m_Snap.m_pGameDataObj && (m_pClient->m_Snap.m_pGameDataObj->m_FlagCarrierRed == m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID ||
|
|
|
|
m_pClient->m_Snap.m_pGameDataObj->m_FlagCarrierBlue == m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID))
|
2011-05-05 00:00:43 +00:00
|
|
|
{
|
|
|
|
Graphics()->BlendNormal();
|
|
|
|
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_GAME].m_Id);
|
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
|
2019-07-21 07:02:38 +00:00
|
|
|
RenderTools()->SelectSprite(m_pClient->m_Snap.m_pGameDataObj->m_FlagCarrierBlue == m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID ? SPRITE_FLAG_BLUE : SPRITE_FLAG_RED, SPRITE_FLAG_FLIP_X);
|
2011-05-05 00:00:43 +00:00
|
|
|
|
|
|
|
float Size = LineHeight;
|
|
|
|
IGraphics::CQuadItem QuadItem(Width/2.0f+x-LineHeight/5.0f, Height/2.0f+y-LineHeight/3.0f, Size/2.0f, Size);
|
|
|
|
Graphics()->QuadsDrawTL(&QuadItem, 1);
|
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
}
|
|
|
|
|
2014-03-23 22:23:41 +00:00
|
|
|
CTeeRenderInfo TeeInfo = m_pClient->m_aClients[m_pClient->m_Snap.m_paInfoByDDTeam[i]->m_ClientID].m_RenderInfo;
|
2014-01-12 18:38:22 +00:00
|
|
|
TeeInfo.m_Size *= TeeSizeMod;
|
2019-04-21 16:20:53 +00:00
|
|
|
RenderTools()->RenderTee(CAnimState::GetIdle(), &TeeInfo, EMOTE_NORMAL, vec2(1.0f, 0.0f), vec2(Width/2.0f+x+20.0f, Height/2.0f+y+20.0f), TeeAlpha);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-03-10 09:08:14 +00:00
|
|
|
y += LineHeight;
|
|
|
|
}
|
2011-03-18 17:03:50 +00:00
|
|
|
TextRender()->TextColor(1.0f, 1.0f, 1.0f, 1.0f);
|
2011-03-10 09:08:14 +00:00
|
|
|
|
|
|
|
// draw cursor
|
|
|
|
Graphics()->TextureSet(g_pData->m_aImages[IMAGE_CURSOR].m_Id);
|
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
Graphics()->SetColor(1.0f, 1.0f, 1.0f, 1.0f);
|
|
|
|
IGraphics::CQuadItem QuadItem(m_SelectorMouse.x+Width/2.0f, m_SelectorMouse.y+Height/2.0f, 48.0f, 48.0f);
|
|
|
|
Graphics()->QuadsDrawTL(&QuadItem, 1);
|
|
|
|
Graphics()->QuadsEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSpectator::OnReset()
|
|
|
|
{
|
|
|
|
m_WasActive = false;
|
|
|
|
m_Active = false;
|
|
|
|
m_SelectedSpectatorID = NO_SELECTION;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSpectator::Spectate(int SpectatorID)
|
|
|
|
{
|
2011-03-12 17:07:57 +00:00
|
|
|
if(Client()->State() == IClient::STATE_DEMOPLAYBACK)
|
|
|
|
{
|
2015-07-26 16:21:51 +00:00
|
|
|
m_pClient->m_DemoSpecID = clamp(SpectatorID, (int)SPEC_FOLLOW, MAX_CLIENTS-1);
|
2011-03-12 17:07:57 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(m_pClient->m_Snap.m_SpecInfo.m_SpectatorID == SpectatorID)
|
2011-03-10 09:08:14 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
CNetMsg_Cl_SetSpectatorMode Msg;
|
|
|
|
Msg.m_SpectatorID = SpectatorID;
|
|
|
|
Client()->SendPackMsg(&Msg, MSGFLAG_VITAL);
|
|
|
|
}
|