From 3b5428051cfd776cd9aff235b33c4c6e42b2bf1f Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 24 Oct 2022 00:50:07 +0200 Subject: [PATCH] CConsole cleanup and optimizations * Add const qualifier to method 'GetHistory'. * Acquire mutex lock at the start of new method 'RemoveLog'. --- r5dev/gameui/IConsole.cpp | 9 +++++---- r5dev/gameui/IConsole.h | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/r5dev/gameui/IConsole.cpp b/r5dev/gameui/IConsole.cpp index 493b59cc..f4561f3c 100644 --- a/r5dev/gameui/IConsole.cpp +++ b/r5dev/gameui/IConsole.cpp @@ -165,7 +165,7 @@ void CConsole::RunFrame(void) // Purpose: runs tasks for the console while not being drawn // (!!! RunTask and RunFrame must be called from the same thread !!!) //----------------------------------------------------------------------------- -void CConsole::RunTask() +void CConsole::RunTask(void) { // m_Logger and m_vHistory are modified. std::lock_guard l(m_Mutex); @@ -588,7 +588,7 @@ void CConsole::BuildSummary(string svConVar) { if (!svConVar.empty()) { - // Remove trailing space and semicolon before we call 'g_pCVar->FindVar(..)'. + // Remove trailing space and/or semicolon before we call 'g_pCVar->FindVar(..)'. StringRTrim(svConVar, " ;"); if (const ConVar* pConVar = g_pCVar->FindVar(svConVar.c_str())) @@ -917,7 +917,9 @@ void CConsole::AddLog(const ImVec4& color, const char* fmt, ...) IM_FMTARGS(2) //----------------------------------------------------------------------------- void CConsole::RemoveLog(int nStart, int nEnd) { + std::lock_guard l(m_Mutex); int nLines = m_Logger.GetTotalLines(); + if (nEnd >= nLines) { // Sanitize for last array elem. @@ -948,7 +950,6 @@ void CConsole::RemoveLog(int nStart, int nEnd) return; } - std::lock_guard l(m_Mutex); m_Logger.RemoveLine(nStart, nEnd); } @@ -965,7 +966,7 @@ void CConsole::ClearLog(void) // Purpose: gets all console submissions // Output : vector of strings //----------------------------------------------------------------------------- -vector CConsole::GetHistory(void) +vector CConsole::GetHistory(void) const { std::lock_guard l(m_Mutex); return m_vHistory; diff --git a/r5dev/gameui/IConsole.h b/r5dev/gameui/IConsole.h index 43dbf9bd..884e316c 100644 --- a/r5dev/gameui/IConsole.h +++ b/r5dev/gameui/IConsole.h @@ -50,7 +50,7 @@ public: void RemoveLog(int nStart, int nEnd); void ClearLog(void); - vector GetHistory(void); + vector GetHistory(void) const; void ClearHistory(void); private: // Internal only.