ddnet/src/game/client/components/motd.cpp

140 lines
4.2 KiB
C++
Raw Normal View History

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>
#include <engine/keys.h>
#include <engine/shared/config.h>
#include <engine/textrender.h>
2010-05-29 07:25:38 +00:00
#include <game/client/gameclient.h>
#include <game/generated/protocol.h>
2010-05-29 07:25:38 +00:00
#include "motd.h"
2008-08-30 08:26:36 +00:00
CMotd::CMotd()
{
m_aServerMotd[0] = '\0';
m_ServerMotdTime = 0;
m_ServerMotdUpdateTime = 0;
}
2010-05-29 07:25:38 +00:00
void CMotd::Clear()
{
2010-05-29 07:25:38 +00:00
m_ServerMotdTime = 0;
Graphics()->DeleteQuadContainer(m_RectQuadContainer);
TextRender()->DeleteTextContainer(m_TextContainerIndex);
}
2023-02-14 22:56:27 +00:00
bool CMotd::IsActive() const
2008-08-30 08:26:36 +00:00
{
return time() < m_ServerMotdTime;
2008-08-30 08:26:36 +00:00
}
2010-05-29 07:25:38 +00:00
void CMotd::OnStateChange(int NewState, int OldState)
{
2010-05-29 07:25:38 +00:00
if(OldState == IClient::STATE_ONLINE || OldState == IClient::STATE_OFFLINE)
Clear();
}
void CMotd::OnWindowResize()
{
Graphics()->DeleteQuadContainer(m_RectQuadContainer);
TextRender()->DeleteTextContainer(m_TextContainerIndex);
}
2010-05-29 07:25:38 +00:00
void CMotd::OnRender()
{
2010-05-29 07:25:38 +00:00
if(!IsActive())
2008-08-30 08:26:36 +00:00
return;
const float FontSize = 32.0f; // also the size of the margin and rect rounding
const float ScreenHeight = 40.0f * FontSize; // multiple of the font size to get perfect alignment
const float ScreenWidth = ScreenHeight * Graphics()->ScreenAspect();
Graphics()->MapScreen(0.0f, 0.0f, ScreenWidth, ScreenHeight);
2008-08-30 08:26:36 +00:00
const float RectHeight = 26.0f * FontSize;
const float RectWidth = 630.0f + 2.0f * FontSize;
const float RectX = ScreenWidth / 2.0f - RectWidth / 2.0f;
const float RectY = 160.0f;
if(m_RectQuadContainer == -1)
{
Graphics()->SetColor(0.0f, 0.0f, 0.0f, 0.5f);
m_RectQuadContainer = Graphics()->CreateRectQuadContainer(RectX, RectY, RectWidth, RectHeight, FontSize, IGraphics::CORNER_ALL);
Graphics()->SetColor(1.0f, 1.0f, 1.0f, 1.0f);
}
if(m_RectQuadContainer != -1)
Graphics()->RenderQuadContainer(m_RectQuadContainer, -1);
const float TextWidth = RectWidth - 2.0f * FontSize;
const float TextX = RectX + FontSize;
const float TextY = RectY + FontSize;
if(m_TextContainerIndex == -1)
{
CTextCursor Cursor;
TextRender()->SetCursor(&Cursor, TextX, TextY, FontSize, TEXTFLAG_RENDER);
Cursor.m_LineWidth = TextWidth;
TextRender()->CreateTextContainer(m_TextContainerIndex, &Cursor, ServerMotd());
}
if(m_TextContainerIndex != -1)
TextRender()->RenderTextContainer(m_TextContainerIndex, TextRender()->DefaultTextColor(), TextRender()->DefaultTextOutlineColor());
}
2010-05-29 07:25:38 +00:00
void CMotd::OnMessage(int MsgType, void *pRawMsg)
{
2010-05-29 07:25:38 +00:00
if(Client()->State() == IClient::STATE_DEMOPLAYBACK)
return;
if(MsgType == NETMSGTYPE_SV_MOTD)
{
const CNetMsg_Sv_Motd *pMsg = static_cast<CNetMsg_Sv_Motd *>(pRawMsg);
// copy it manually to process all \n
const char *pMsgStr = pMsg->m_pMessage;
const size_t MotdLen = str_length(pMsgStr) + 1;
const char *pLast = m_aServerMotd; // for console printing
for(size_t i = 0, k = 0; i < MotdLen && k < sizeof(m_aServerMotd); i++, k++)
{
// handle incoming "\\n"
if(pMsgStr[i] == '\\' && pMsgStr[i + 1] == 'n')
{
m_aServerMotd[k] = '\n';
i++; // skip the 'n'
}
else
m_aServerMotd[k] = pMsgStr[i];
// print the line to the console when receiving the newline character
if(g_Config.m_ClPrintMotd && m_aServerMotd[k] == '\n')
{
m_aServerMotd[k] = '\0';
2021-03-08 00:08:38 +00:00
m_pClient->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "motd", pLast, color_cast<ColorRGBA>(ColorHSLA(g_Config.m_ClMessageHighlightColor)));
m_aServerMotd[k] = '\n';
pLast = m_aServerMotd + k + 1;
}
}
m_aServerMotd[sizeof(m_aServerMotd) - 1] = '\0';
if(g_Config.m_ClPrintMotd && *pLast != '\0')
2021-03-08 00:08:38 +00:00
m_pClient->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "motd", pLast, color_cast<ColorRGBA>(ColorHSLA(g_Config.m_ClMessageHighlightColor)));
m_ServerMotdUpdateTime = time();
2010-05-29 07:25:38 +00:00
if(m_aServerMotd[0] && g_Config.m_ClMotdTime)
m_ServerMotdTime = m_ServerMotdUpdateTime + time_freq() * g_Config.m_ClMotdTime;
else
2010-05-29 07:25:38 +00:00
m_ServerMotdTime = 0;
TextRender()->DeleteTextContainer(m_TextContainerIndex);
}
}
2010-05-29 07:25:38 +00:00
bool CMotd::OnInput(IInput::CEvent Event)
{
if(IsActive() && Event.m_Flags & IInput::FLAG_PRESS && Event.m_Key == KEY_ESCAPE)
2008-08-30 08:26:36 +00:00
{
2010-05-29 07:25:38 +00:00
Clear();
2008-08-30 08:26:36 +00:00
return true;
}
return false;
}