Highlighted line fading background

This commit is contained in:
LordSk 2018-11-13 19:05:47 +01:00
parent d2365df927
commit 6338ae947d
2 changed files with 43 additions and 38 deletions

View file

@ -416,15 +416,16 @@ void CChat::AddLine(int ClientID, int Mode, const char *pLine)
m_CurrentLine = (m_CurrentLine+1)%MAX_LINES; m_CurrentLine = (m_CurrentLine+1)%MAX_LINES;
m_aLines[m_CurrentLine].m_Time = time_get(); m_aLines[m_CurrentLine].m_Time = time_get();
m_aLines[m_CurrentLine].m_YOffset[0] = -1.0f; m_aLines[m_CurrentLine].m_Size[0].y = -1.0f;
m_aLines[m_CurrentLine].m_YOffset[1] = -1.0f; m_aLines[m_CurrentLine].m_Size[1].y = -1.0f;
m_aLines[m_CurrentLine].m_ClientID = ClientID; m_aLines[m_CurrentLine].m_ClientID = ClientID;
m_aLines[m_CurrentLine].m_Mode = Mode; m_aLines[m_CurrentLine].m_Mode = Mode;
m_aLines[m_CurrentLine].m_NameColor = -2; m_aLines[m_CurrentLine].m_NameColor = -2;
// check for highlighted name // check for highlighted name
Highlighted = false; Highlighted = false;
if(ClientID != m_pClient->m_LocalClientID) // do not highlight our own messages // do not highlight our own messages, whispers and system messages
if(Mode != CHAT_WHISPER && ClientID != -1 && ClientID != m_pClient->m_LocalClientID)
{ {
const char *pHL = str_find_nocase(pLine, m_pClient->m_aClients[m_pClient->m_LocalClientID].m_aName); const char *pHL = str_find_nocase(pLine, m_pClient->m_aClients[m_pClient->m_LocalClientID].m_aName);
if(pHL) if(pHL)
@ -441,7 +442,7 @@ void CChat::AddLine(int ClientID, int Mode, const char *pLine)
} }
} }
m_aLines[m_CurrentLine].m_Highlighted = Highlighted || Mode == CHAT_WHISPER; m_aLines[m_CurrentLine].m_Highlighted = Highlighted;
if(ClientID == -1) // server message if(ClientID == -1) // server message
{ {
@ -474,7 +475,7 @@ void CChat::AddLine(int ClientID, int Mode, const char *pLine)
else else
str_copy(aBufMode, "chat", sizeof(aBufMode)); str_copy(aBufMode, "chat", sizeof(aBufMode));
str_format(aBuf, sizeof(aBuf), "%s: %s", m_aLines[m_CurrentLine].m_aName, m_aLines[m_CurrentLine].m_aText); str_format(aBuf, sizeof(aBuf), "%s: %s", m_aLines[m_CurrentLine].m_aName, m_aLines[m_CurrentLine].m_aText);
Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, aBufMode, aBuf, Highlighted); Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, aBufMode, aBuf, Highlighted || Mode == CHAT_WHISPER);
} }
// play sound // play sound
@ -603,29 +604,28 @@ void CChat::OnRender()
if(m_aLines[r].m_aText[0] == 0) break; if(m_aLines[r].m_aText[0] == 0) break;
if(Line.m_YOffset[OffsetType] < 0.0f) if(Line.m_Size[OffsetType].y < 0.0f)
{ {
TextRender()->SetCursor(&Cursor, Begin, 0.0f, FontSize, 0); TextRender()->SetCursor(&Cursor, Begin, 0.0f, FontSize, 0);
Cursor.m_LineWidth = LineWidth; Cursor.m_LineWidth = LineWidth;
char aBuf[48]; char aBuf[768] = {0};
if(Line.m_Mode == CHAT_TEAM) if(Line.m_Mode == CHAT_TEAM)
{
str_format(aBuf, sizeof(aBuf), "[%s] ", Localize("Team")); str_format(aBuf, sizeof(aBuf), "[%s] ", Localize("Team"));
TextRender()->TextEx(&Cursor, aBuf, -1);
}
else if(Line.m_Mode == CHAT_WHISPER) else if(Line.m_Mode == CHAT_WHISPER)
{
str_format(aBuf, sizeof(aBuf), "[%s] ", Localize("Whisper")); str_format(aBuf, sizeof(aBuf), "[%s] ", Localize("Whisper"));
TextRender()->TextEx(&Cursor, aBuf, -1);
}
TextRender()->TextEx(&Cursor, Line.m_aName, -1);
if(Line.m_ClientID != -1) if(Line.m_ClientID != -1)
TextRender()->TextEx(&Cursor, ": ", 2); {
TextRender()->TextEx(&Cursor, Line.m_aText, -1); str_append(aBuf, Line.m_aName, sizeof(aBuf));
Line.m_YOffset[OffsetType] = Cursor.m_Y + Cursor.m_FontSize; str_append(aBuf, ": ", sizeof(aBuf));
}
str_append(aBuf, Line.m_aText, sizeof(aBuf));
TextRender()->TextEx(&Cursor, aBuf, -1);
Line.m_Size[OffsetType].y = Cursor.m_Y + Cursor.m_FontSize;
Line.m_Size[OffsetType].x = Cursor.m_Y == 0.0f ? Cursor.m_X : LineWidth;
} }
} }
@ -639,7 +639,7 @@ void CChat::OnRender()
if(Now > Line.m_Time+16*time_freq() && !m_Show) if(Now > Line.m_Time+16*time_freq() && !m_Show)
break; break;
y -= Line.m_YOffset[OffsetType]; y -= Line.m_Size[OffsetType].y;
// cut off if msgs waste too much space // cut off if msgs waste too much space
if(y < HeightLimit) if(y < HeightLimit)
@ -647,11 +647,20 @@ void CChat::OnRender()
float Blend = Now > Line.m_Time+14*time_freq() && !m_Show ? 1.0f-(Now-Line.m_Time-14*time_freq())/(2.0f*time_freq()) : 1.0f; float Blend = Now > Line.m_Time+14*time_freq() && !m_Show ? 1.0f-(Now-Line.m_Time-14*time_freq())/(2.0f*time_freq()) : 1.0f;
const double HlTimeFull = 3.0;
const double HlTimeFade = 1.0;
float HighlightBlend = 1.0f;
if(!m_Show)
{
double Delta = (Now - Line.m_Time) / (double)time_freq();
HighlightBlend = 1.0f - clamp(Delta - HlTimeFull, 0.0, HlTimeFade) / HlTimeFade;
}
// reset the cursor // reset the cursor
TextRender()->SetCursor(&Cursor, Begin, y, FontSize, TEXTFLAG_RENDER); TextRender()->SetCursor(&Cursor, Begin, y, FontSize, TEXTFLAG_RENDER);
Cursor.m_LineWidth = LineWidth; Cursor.m_LineWidth = LineWidth;
const vec2 ShadowOffset(0.8f, 1.5f); const vec2 ShadowOffset(0.8f, 1.5f);
const vec4 ShadowWhisper(0.09f, 0.f, 0.26f, Blend * 0.9f); const vec4 ShadowWhisper(0.09f, 0.f, 0.26f, Blend * 0.9f);
const vec4 ShadowBlack(0, 0, 0, Blend * 0.9f); const vec4 ShadowBlack(0, 0, 0, Blend * 0.9f);
@ -670,10 +679,21 @@ void CChat::OnRender()
const vec4 ColorAllText(1.0f, 1.0f, 1.0f, Blend); const vec4 ColorAllText(1.0f, 1.0f, 1.0f, Blend);
const vec4 ColorTeamPre(0.45f, 0.9f, 0.45f, Blend); const vec4 ColorTeamPre(0.45f, 0.9f, 0.45f, Blend);
const vec4 ColorTeamText(0.6f, 1.0f, 0.6f, Blend); const vec4 ColorTeamText(0.6f, 1.0f, 0.6f, Blend);
const vec4 ColorHighlightOutline(0.0f, 0.4, 1.0f, Blend); const vec4 ColorHighlightBg(0.0f, 0.27f, 0.9f, 0.6f * HighlightBlend + 0.4f * Blend);
vec4 TextColor = ColorAllText; vec4 TextColor = ColorAllText;
if(Line.m_Highlighted)
{
ShadowColor.a -= 0.5f * HighlightBlend;
CUIRect BgRect;
BgRect.x = Cursor.m_X;
BgRect.y = Cursor.m_Y + 2.0f;
BgRect.w = Line.m_Size[OffsetType].x;
BgRect.h = Line.m_Size[OffsetType].y;
RenderTools()->DrawRoundRect(&BgRect, ColorHighlightBg, 2.0f);
}
char aBuf[48]; char aBuf[48];
if(Line.m_Mode == CHAT_TEAM) if(Line.m_Mode == CHAT_TEAM)
{ {
@ -735,22 +755,7 @@ void CChat::OnRender()
else else
TextColor = ColorAllText; TextColor = ColorAllText;
if(Line.m_Highlighted && Line.m_Mode != CHAT_WHISPER && Line.m_ClientID != -1) TextRender()->TextShadowed(&Cursor, Line.m_aText, -1, ShadowOffset, ShadowColor, TextColor);
{
TextRender()->TextColor(TextColor.r, TextColor.g, TextColor.b, TextColor.a);
float Alpha = 0.3;
if(Line.m_Mode == CHAT_TEAM)
Alpha = 0.4;
TextRender()->TextOutlineColor(ColorHighlightOutline.r,
ColorHighlightOutline.g,
ColorHighlightOutline.b,
Alpha * Blend);
TextRender()->TextEx(&Cursor, Line.m_aText, -1);
}
else
TextRender()->TextShadowed(&Cursor, Line.m_aText, -1, ShadowOffset, ShadowColor, TextColor);
} }
TextRender()->TextColor(1.0f, 1.0f, 1.0f, 1.0f); TextRender()->TextColor(1.0f, 1.0f, 1.0f, 1.0f);

View file

@ -18,7 +18,7 @@ class CChat : public CComponent
struct CLine struct CLine
{ {
int64 m_Time; int64 m_Time;
float m_YOffset[2]; vec2 m_Size[2];
int m_ClientID; int m_ClientID;
int m_Mode; int m_Mode;
int m_NameColor; int m_NameColor;