r5sdk/r5dev/vgui/vgui_debugpanel.cpp
Amos 8079e0ed4c Heavy cleanup for CHostState methods and signatures
* Add Cbuf_AddText and Cbuf_Execute signatures.
* Remove additional VGui stuff from dedicated statemachine.
* Move signatures to their respective headers.
* De-inline 'CHostState::FrameUpdate()'
* Ported al new patters to GAMEDLL_S1, CEngine still recreation needs extra work
2022-02-19 02:31:16 +01:00

154 lines
5.1 KiB
C++

//===========================================================================//
//
// Purpose: Implements the debug panels.
//
// $NoKeywords: $
//===========================================================================//
#include <core/stdafx.h>
#include <tier0/cvar.h>
#include <mathlib/color.h>
#include <vgui/vgui_debugpanel.h>
#include <vguimatsurface/MatSystemSurface.h>
#include <materialsystem/materialsystem.h>
#include <engine/debugoverlay.h>
#include <engine/baseclientstate.h>
#include <server/server.h>
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CLogSystem::Update(void)
{
if (!g_pMatSystemSurface)
{
return;
}
if (cl_drawconsoleoverlay->GetBool())
{
DrawLog();
}
if (cl_showsimstats->GetBool())
{
DrawSimStats();
}
if (cl_showgpustats->GetBool())
{
DrawGPUStats();
}
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CLogSystem::AddLog(LogType_t type, std::string svMessage)
{
if (svMessage.length() > 0)
{
m_vLogs.push_back(LogMsg_t{ svMessage, 1024, type });
}
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CLogSystem::DrawLog(void)
{
if (m_vLogs.empty()) { return; }
for (int i = 0; i < m_vLogs.size(); ++i)
{
if (m_vLogs[i].m_nTicks >= 0)
{
if (i < cl_consoleoverlay_lines->GetInt())
{
float fadepct = fminf(static_cast<float>(m_vLogs[i].m_nTicks) / 255.f, 4.f); // TODO [ AMOS ]: register a ConVar for this!
float ptc = static_cast<int>(ceilf(fadepct * 100.f));
int alpha = static_cast<int>(ptc);
int y = (cl_consoleoverlay_offset_y->GetInt() + (m_nFontHeight * i));
int x = cl_consoleoverlay_offset_x->GetInt();
Color c = GetLogColorForType(m_vLogs[i].m_type);
CMatSystemSurface_DrawColoredText(g_pMatSystemSurface, 0x13, m_nFontHeight, x, y, c.r(), c.g(), c.b(), alpha, m_vLogs[i].m_svMessage.c_str());
}
else
{
m_vLogs.erase(m_vLogs.begin());
continue;
}
m_vLogs[i].m_nTicks--;
}
else
{
m_vLogs.erase(m_vLogs.begin() + i);
}
}
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CLogSystem::DrawSimStats(void) const
{
static Color c = { 255, 255, 255, 255 };
static const char* szLogbuf[4096]{};
snprintf((char*)szLogbuf, 4096, "Server Frame: (%d) Client Frame: (%d) Render Frame: (%d)\n",
*sv_m_nTickCount, *cl_host_tickcount, *render_tickcount);
CMatSystemSurface_DrawColoredText(g_pMatSystemSurface, 0x13, m_nFontHeight, cl_simstats_offset_x->GetInt(), cl_simstats_offset_y->GetInt(), c.r(), c.g(), c.b(), c.a(), (char*)szLogbuf);
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CLogSystem::DrawGPUStats(void) const
{
static Color c = { 255, 255, 255, 255 };
static const char* szLogbuf[4096]{};
snprintf((char*)szLogbuf, 4096, "%8d/%8d/%8dkiB unusable/unfree/total GPU Streaming Texture memory\n",
*unusable_streaming_tex_memory / 1024, *unfree_streaming_tex_memory / 1024, *unusable_streaming_tex_memory / 1024);
CMatSystemSurface_DrawColoredText(g_pMatSystemSurface, 0x13, m_nFontHeight, cl_gpustats_offset_x->GetInt(), cl_gpustats_offset_y->GetInt(), c.r(), c.g(), c.b(), c.a(), (char*)szLogbuf);
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
Color CLogSystem::GetLogColorForType(LogType_t type) const
{
switch (type)
{
case LogType_t::SCRIPT_SERVER:
return { cl_conoverlay_script_server_clr->GetColor() };
case LogType_t::SCRIPT_CLIENT:
return { cl_conoverlay_script_client_clr->GetColor() };
case LogType_t::SCRIPT_UI:
return { cl_conoverlay_script_ui_clr->GetColor() };
case LogType_t::NATIVE_SERVER:
return { cl_conoverlay_native_server_clr->GetColor() };
case LogType_t::NATIVE_CLIENT:
return { cl_conoverlay_native_client_clr->GetColor() };
case LogType_t::NATIVE_UI:
return { cl_conoverlay_native_ui_clr->GetColor() };
case LogType_t::NATIVE_ENGINE:
return { cl_conoverlay_native_engine_clr->GetColor() };
case LogType_t::NATIVE_FS:
return { cl_conoverlay_native_fs_clr->GetColor() };
case LogType_t::NATIVE_RTECH:
return { cl_conoverlay_native_rtech_clr->GetColor() };
case LogType_t::NATIVE_MS:
return { cl_conoverlay_native_ms_clr->GetColor() };
case LogType_t::NETCON_S:
return { cl_conoverlay_netcon_clr->GetColor() };
case LogType_t::WARNING_C:
return { cl_conoverlay_warning_clr->GetColor() };
case LogType_t::ERROR_C:
return { cl_conoverlay_error_clr->GetColor() };
default:
return { cl_conoverlay_native_engine_clr->GetColor() };
}
}
///////////////////////////////////////////////////////////////////////////////
CLogSystem g_pLogSystem;