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/textrender.h>
|
|
|
|
#include <engine/shared/config.h>
|
|
|
|
#include <game/generated/protocol.h>
|
|
|
|
#include <game/generated/client_data.h>
|
2008-09-04 18:54:37 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
#include <game/client/gameclient.h>
|
|
|
|
#include <game/client/animstate.h>
|
|
|
|
#include "nameplates.h"
|
|
|
|
#include "controls.h"
|
2008-09-04 18:54:37 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CNamePlates::RenderNameplate(
|
|
|
|
const CNetObj_Character *pPrevChar,
|
|
|
|
const CNetObj_Character *pPlayerChar,
|
|
|
|
const CNetObj_PlayerInfo *pPlayerInfo
|
2008-09-04 18:54:37 +00:00
|
|
|
)
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
float IntraTick = Client()->IntraGameTick();
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
vec2 Position = mix(vec2(pPrevChar->m_X, pPrevChar->m_Y), vec2(pPlayerChar->m_X, pPlayerChar->m_Y), IntraTick);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2014-01-24 22:11:33 +00:00
|
|
|
bool OtherTeam;
|
|
|
|
|
2014-04-12 14:55:01 +00:00
|
|
|
if (m_pClient->m_aClients[m_pClient->m_Snap.m_LocalClientID].m_Team == TEAM_SPECTATORS && m_pClient->m_Snap.m_SpecInfo.m_SpectatorID == SPEC_FREEVIEW)
|
|
|
|
OtherTeam = false;
|
|
|
|
else if (m_pClient->m_Snap.m_SpecInfo.m_Active && m_pClient->m_Snap.m_SpecInfo.m_SpectatorID != SPEC_FREEVIEW)
|
|
|
|
OtherTeam = m_pClient->m_Teams.Team(pPlayerInfo->m_ClientID) != m_pClient->m_Teams.Team(m_pClient->m_Snap.m_SpecInfo.m_SpectatorID);
|
2014-01-24 22:11:33 +00:00
|
|
|
else
|
|
|
|
OtherTeam = m_pClient->m_Teams.Team(pPlayerInfo->m_ClientID) != m_pClient->m_Teams.Team(m_pClient->m_Snap.m_LocalClientID);
|
|
|
|
|
2011-01-04 12:11:01 +00:00
|
|
|
float FontSize = 18.0f + 20.0f * g_Config.m_ClNameplatesSize / 100.0f;
|
2015-06-29 00:06:27 +00:00
|
|
|
float FontSizeClan = 18.0f + 20.0f * g_Config.m_ClNameplatesClanSize / 100.0f;
|
2008-09-04 18:54:37 +00:00
|
|
|
// render name plate
|
2010-05-29 07:25:38 +00:00
|
|
|
if(!pPlayerInfo->m_Local)
|
2008-09-04 18:54:37 +00:00
|
|
|
{
|
|
|
|
float a = 1;
|
2010-05-29 07:25:38 +00:00
|
|
|
if(g_Config.m_ClNameplatesAlways == 0)
|
2014-05-10 12:31:00 +00:00
|
|
|
a = clamp(1-powf(distance(m_pClient->m_pControls->m_TargetPos[g_Config.m_ClDummy], Position)/200.0f,16.0f), 0.0f, 1.0f);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-02-12 10:40:36 +00:00
|
|
|
const char *pName = m_pClient->m_aClients[pPlayerInfo->m_ClientID].m_aName;
|
2011-01-04 12:11:01 +00:00
|
|
|
float tw = TextRender()->TextWidth(0, FontSize, pName, -1);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2014-04-12 14:55:01 +00:00
|
|
|
vec3 rgb = vec3(1.0f, 1.0f, 1.0f);
|
|
|
|
if(g_Config.m_ClNameplatesTeamcolors && m_pClient->m_Teams.Team(pPlayerInfo->m_ClientID))
|
|
|
|
rgb = HslToRgb(vec3(m_pClient->m_Teams.Team(pPlayerInfo->m_ClientID) / 64.0f, 1.0f, 0.75f));
|
|
|
|
|
2014-01-24 22:11:33 +00:00
|
|
|
if (OtherTeam)
|
|
|
|
{
|
|
|
|
TextRender()->TextOutlineColor(0.0f, 0.0f, 0.0f, 0.2f);
|
2014-05-17 21:00:52 +00:00
|
|
|
TextRender()->TextColor(rgb.r, rgb.g, rgb.b, g_Config.m_ClShowOthersAlpha / 100.0f);
|
2014-01-24 22:11:33 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TextRender()->TextOutlineColor(0.0f, 0.0f, 0.0f, 0.5f*a);
|
2014-04-12 14:55:01 +00:00
|
|
|
TextRender()->TextColor(rgb.r, rgb.g, rgb.b, a);
|
2014-01-24 22:11:33 +00:00
|
|
|
}
|
2011-03-27 12:30:59 +00:00
|
|
|
if(g_Config.m_ClNameplatesTeamcolors && m_pClient->m_Snap.m_pGameInfoObj && m_pClient->m_Snap.m_pGameInfoObj->m_GameFlags&GAMEFLAG_TEAMS)
|
2010-12-15 12:31:27 +00:00
|
|
|
{
|
|
|
|
if(pPlayerInfo->m_Team == TEAM_RED)
|
|
|
|
TextRender()->TextColor(1.0f, 0.5f, 0.5f, a);
|
|
|
|
else if(pPlayerInfo->m_Team == TEAM_BLUE)
|
|
|
|
TextRender()->TextColor(0.7f, 0.7f, 1.0f, a);
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-01-04 12:11:01 +00:00
|
|
|
TextRender()->Text(0, Position.x-tw/2.0f, Position.y-FontSize-38.0f, FontSize, pName, -1);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2015-06-21 22:34:10 +00:00
|
|
|
if(g_Config.m_ClNameplatesClan)
|
2015-06-21 22:44:26 +00:00
|
|
|
{
|
|
|
|
const char *pClan = m_pClient->m_aClients[pPlayerInfo->m_ClientID].m_aClan;
|
2015-06-29 00:06:27 +00:00
|
|
|
float tw_clan = TextRender()->TextWidth(0, FontSizeClan, pClan, -1);
|
|
|
|
TextRender()->Text(0, Position.x-tw_clan/2.0f, Position.y-FontSize-FontSizeClan-38.0f, FontSizeClan, pClan, -1);
|
2015-06-21 22:44:26 +00:00
|
|
|
}
|
2015-06-21 22:34:10 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(g_Config.m_Debug) // render client id when in debug aswell
|
2008-09-04 18:54:37 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
char aBuf[128];
|
2011-02-12 10:40:36 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf),"%d", pPlayerInfo->m_ClientID);
|
2015-06-29 00:06:27 +00:00
|
|
|
float Offset = g_Config.m_ClNameplatesClan ? (FontSize * 2 + FontSizeClan) : (FontSize * 2);
|
2015-06-21 22:34:10 +00:00
|
|
|
float tw_id = TextRender()->TextWidth(0, FontSize, aBuf, -1);
|
|
|
|
TextRender()->Text(0, Position.x-tw_id/2.0f, Position.y-Offset-38.0f, 28.0f, aBuf, -1);
|
2008-09-04 18:54:37 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
TextRender()->TextColor(1,1,1,1);
|
2011-03-13 11:55:00 +00:00
|
|
|
TextRender()->TextOutlineColor(0.0f, 0.0f, 0.0f, 0.3f);
|
2008-09-04 18:54:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CNamePlates::OnRender()
|
2008-09-04 18:54:37 +00:00
|
|
|
{
|
2015-09-10 11:09:38 +00:00
|
|
|
if (!g_Config.m_ClNameplates || m_pClient->AntiPingPlayers())
|
2008-09-04 18:54:37 +00:00
|
|
|
return;
|
2008-09-23 08:42:38 +00:00
|
|
|
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
2008-09-04 18:54:37 +00:00
|
|
|
{
|
2008-09-23 08:42:38 +00:00
|
|
|
// only render active characters
|
2010-05-29 07:25:38 +00:00
|
|
|
if(!m_pClient->m_Snap.m_aCharacters[i].m_Active)
|
2008-09-23 08:42:38 +00:00
|
|
|
continue;
|
2008-09-04 18:54:37 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
const void *pInfo = Client()->SnapFindItem(IClient::SNAP_CURRENT, NETOBJTYPE_PLAYERINFO, i);
|
2008-09-04 18:54:37 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(pInfo)
|
2008-09-23 08:42:38 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
RenderNameplate(
|
|
|
|
&m_pClient->m_Snap.m_aCharacters[i].m_Prev,
|
|
|
|
&m_pClient->m_Snap.m_aCharacters[i].m_Cur,
|
|
|
|
(const CNetObj_PlayerInfo *)pInfo);
|
2008-09-04 18:54:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|