From aaf6e4687137bd78de4c76d73d2abe19785abec5 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 9 Jun 2022 02:22:01 +0200 Subject: [PATCH] ImGui panel improvements Slight optimizations and cleanup. Added fade-in effect. --- r5dev/client/cdll_engine_int.cpp | 2 - r5dev/gameui/IBrowser.cpp | 55 +++++++++++++++++++----- r5dev/gameui/IBrowser.h | 6 ++- r5dev/gameui/IConsole.cpp | 73 +++++++++++++++++++------------- r5dev/gameui/IConsole.h | 5 ++- r5dev/tier1/IConVar.cpp | 18 ++++++++ r5dev/tier1/IConVar.h | 2 + r5dev/windows/id3dx.cpp | 4 +- 8 files changed, 118 insertions(+), 47 deletions(-) diff --git a/r5dev/client/cdll_engine_int.cpp b/r5dev/client/cdll_engine_int.cpp index 8db66a72..4a601989 100644 --- a/r5dev/client/cdll_engine_int.cpp +++ b/r5dev/client/cdll_engine_int.cpp @@ -14,7 +14,6 @@ #include "engine/client/cl_rcon.h" #include "public/include/bansystem.h" #include "vpc/keyvalues.h" -#include "gameui/IConsole.h" /*****************************************************************************/ //----------------------------------------------------------------------------- @@ -38,7 +37,6 @@ void CHLClient::FrameStageNotify(CHLClient* pHLClient, ClientFrameStage_t frameS break; } } - g_pConsole->Think(); CHLClient_FrameStageNotify(pHLClient, frameStage); } diff --git a/r5dev/gameui/IBrowser.cpp b/r5dev/gameui/IBrowser.cpp index 4a6665af..d75fcc5f 100644 --- a/r5dev/gameui/IBrowser.cpp +++ b/r5dev/gameui/IBrowser.cpp @@ -53,7 +53,12 @@ CBrowser::CBrowser(void) }); hostingServerRequestThread.detach(); + + std::thread think(&CBrowser::Think, this); + think.detach(); #endif // !CLIENT_DLL + + m_pszBrowserTitle = "Server Browser"; m_rLockedIconBlob = GetModuleResource(IDB_PNG2); } @@ -68,7 +73,7 @@ CBrowser::~CBrowser(void) //----------------------------------------------------------------------------- // Purpose: draws the main browser front-end //----------------------------------------------------------------------------- -void CBrowser::Draw(const char* pszTitle, bool* bDraw) +void CBrowser::Draw(void) { if (!m_bInitialized) { @@ -83,22 +88,20 @@ void CBrowser::Draw(const char* pszTitle, bool* bDraw) //ImGui::ShowDemoWindow(); } - if (!ImGui::Begin(pszTitle, bDraw)) + int nVars = 0; + ImGui::PushStyleVar(ImGuiStyleVar_Alpha, m_flFadeAlpha); nVars++; + if (!ImGui::Begin(m_pszBrowserTitle, &m_bActivate)) { ImGui::End(); + ImGui::PopStyleVar(nVars); return; } ImGui::End(); - if (*bDraw == NULL) - { - m_bActivate = false; - } - ImGui::SetNextWindowSize(ImVec2(840, 600), ImGuiCond_FirstUseEver); ImGui::SetWindowPos(ImVec2(-500, 50), ImGuiCond_FirstUseEver); - ImGui::Begin(pszTitle, NULL, ImGuiWindowFlags_NoScrollbar); + ImGui::Begin(m_pszBrowserTitle, NULL, ImGuiWindowFlags_NoScrollbar); { CompMenu(); @@ -118,6 +121,29 @@ void CBrowser::Draw(const char* pszTitle, bool* bDraw) } } ImGui::End(); + ImGui::PopStyleVar(nVars); +} + +//----------------------------------------------------------------------------- +// Purpose: runs tasks for the browser while not being drawn +//----------------------------------------------------------------------------- +void CBrowser::Think(void) +{ + for (;;) // Loop running at 100-tps. + { + if (m_bActivate) + { + if (m_flFadeAlpha <= 1.f) + { + m_flFadeAlpha += 0.05; + } + } + else // Reset to full transparent. + { + m_flFadeAlpha = 0.f; + } + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } } //----------------------------------------------------------------------------- @@ -162,8 +188,15 @@ void CBrowser::ServerBrowserSection(void) const float fFooterHeight = ImGui::GetStyle().ItemSpacing.y + ImGui::GetFrameHeightWithSpacing(); ImGui::BeginChild("##ServerBrowser_ServerList", { 0, -fFooterHeight }, true, ImGuiWindowFlags_AlwaysVerticalScrollbar); - if (m_bDefaultTheme) { ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2{ 8.f, 0.f }); } - else { ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(4.f, 0.f)); } + int nVars = 0; + if (m_bDefaultTheme) + { + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2{ 8.f, 0.f }); nVars++; + } + else + { + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(4.f, 0.f)); nVars++; + } if (ImGui::BeginTable("##ServerBrowser_ServerListTable", 5, ImGuiTableFlags_Resizable)) { @@ -208,8 +241,8 @@ void CBrowser::ServerBrowserSection(void) } } + ImGui::PopStyleVar(nVars); ImGui::EndTable(); - ImGui::PopStyleVar(1); } ImGui::EndChild(); diff --git a/r5dev/gameui/IBrowser.h b/r5dev/gameui/IBrowser.h index 079412ba..6cf0b444 100644 --- a/r5dev/gameui/IBrowser.h +++ b/r5dev/gameui/IBrowser.h @@ -45,7 +45,9 @@ public: CBrowser(void); ~CBrowser(void); - void Draw(const char* pszTitle, bool* bDraw); + void Draw(void); + void Think(void); + void CompMenu(void); void ServerBrowserSection(void); @@ -75,6 +77,8 @@ public: //////////////////// public: bool m_bActivate = false; + float m_flFadeAlpha = 0.f; + const char* m_pszBrowserTitle = nullptr; vector m_vServerList; ImGuiTextFilter m_imServerBrowserFilter; diff --git a/r5dev/gameui/IConsole.cpp b/r5dev/gameui/IConsole.cpp index 05c01cfb..2831635f 100644 --- a/r5dev/gameui/IConsole.cpp +++ b/r5dev/gameui/IConsole.cpp @@ -35,12 +35,16 @@ CConsole::CConsole(void) m_bAutoScroll = true; m_bScrollToBottom = false; m_bInitialized = false; + m_pszConsoleTitle = "Console"; m_vsvCommands.push_back("CLEAR"); m_vsvCommands.push_back("HELP"); m_vsvCommands.push_back("HISTORY"); snprintf(m_szSummary, 256, "%llu history items", m_vsvHistory.size()); + + std::thread think(&CConsole::Think, this); + think.detach(); } //----------------------------------------------------------------------------- @@ -80,15 +84,12 @@ bool CConsole::Setup(void) //----------------------------------------------------------------------------- // Purpose: game console main render loop -// Input : *pszTitle - -// *bDraw - //----------------------------------------------------------------------------- -void CConsole::Draw(const char* pszTitle, bool* bDraw) +void CConsole::Draw(void) { if (!m_bInitialized) { Setup(); - m_pszConsoleTitle = pszTitle; m_bInitialized = true; } @@ -101,28 +102,27 @@ void CConsole::Draw(const char* pszTitle, bool* bDraw) * BASE PANEL SETUP * **************************/ { - static int nVars{}; - if (!*bDraw) + int nVars{}; + if (!m_bActivate) { - m_bActivate = false; return; } if (m_bDefaultTheme) { - ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2{ 8.f, 10.f }); - nVars = 1; + ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2{ 8.f, 10.f }); nVars++; + ImGui::PushStyleVar(ImGuiStyleVar_Alpha, m_flFadeAlpha); nVars++; } else { - ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2{ 4.f, 6.f }); - ImGui::PushStyleVar(ImGuiStyleVar_ChildBorderSize, 1.0f); - nVars = 2; + ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2{ 4.f, 6.f }); nVars++; + ImGui::PushStyleVar(ImGuiStyleVar_ChildBorderSize, 1.0f); nVars++; + ImGui::PushStyleVar(ImGuiStyleVar_Alpha, m_flFadeAlpha); nVars++; } ImGui::SetNextWindowSize(ImVec2(1000, 600), ImGuiCond_FirstUseEver); ImGui::SetWindowPos(ImVec2(-1000, 50), ImGuiCond_FirstUseEver); - BasePanel(bDraw); + BasePanel(); ImGui::PopStyleVar(nVars); } @@ -158,28 +158,45 @@ void CConsole::Draw(const char* pszTitle, bool* bDraw) //----------------------------------------------------------------------------- void CConsole::Think(void) { - if (m_ivConLog.size() > con_max_size_logvector->GetInt()) - { - while (m_ivConLog.size() > con_max_size_logvector->GetInt() / 4 * 3) - { - m_ivConLog.erase(m_ivConLog.begin()); - m_nScrollBack++; - } - } + for (;;) // Loop running at 100-tps. + { + if (m_ivConLog.size() > con_max_size_logvector->GetSizeT()) + { + while (m_ivConLog.size() > con_max_size_logvector->GetSizeT() / 4 * 3) + { + m_ivConLog.erase(m_ivConLog.begin()); + m_nScrollBack++; + } + } - while (static_cast(m_vsvHistory.size()) > 512) - { - m_vsvHistory.erase(m_vsvHistory.begin()); - } + while (static_cast(m_vsvHistory.size()) > 512) + { + m_vsvHistory.erase(m_vsvHistory.begin()); + } + + if (m_bActivate) + { + if (m_flFadeAlpha <= 1.f) + { + m_flFadeAlpha += 0.05; + } + } + else // Reset to full transparent. + { + m_flFadeAlpha = 0.f; + m_bReclaimFocus = true; + } + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } } //----------------------------------------------------------------------------- // Purpose: draws the console's main surface // Input : *bDraw - //----------------------------------------------------------------------------- -void CConsole::BasePanel(bool* bDraw) +void CConsole::BasePanel(void) { - if (!ImGui::Begin(m_pszConsoleTitle, bDraw)) + if (!ImGui::Begin(m_pszConsoleTitle, &m_bActivate)) { ImGui::End(); return; @@ -238,8 +255,6 @@ void CConsole::BasePanel(bool* bDraw) ImGui::Separator(); ImGui::PushItemWidth(footer_width_to_reserve - 80); - if (ImGui::IsWindowAppearing()) { ImGui::SetKeyboardFocusHere(); } - if (ImGui::InputText("##input", m_szInputBuf, IM_ARRAYSIZE(m_szInputBuf), m_nInputFlags, &TextEditCallbackStub, reinterpret_cast(this))) { if (m_nSuggestPos != -1) diff --git a/r5dev/gameui/IConsole.h b/r5dev/gameui/IConsole.h index 0532f96a..2d1cf357 100644 --- a/r5dev/gameui/IConsole.h +++ b/r5dev/gameui/IConsole.h @@ -45,6 +45,7 @@ private: vector m_vsvHistory; int m_nHistoryPos = -1; int m_nScrollBack = 0; + float m_flFadeAlpha = 0.f; ImGuiTextFilter m_itFilter; bool m_bInitialized = false; bool m_bDefaultTheme = false; @@ -89,10 +90,10 @@ public: ~CConsole(void); bool Setup(void); - void Draw(const char* pszTitle, bool* bDraw); + void Draw(void); void Think(void); - void BasePanel(bool* bDraw); + void BasePanel(void); void OptionsPanel(void); void SuggestPanel(void); diff --git a/r5dev/tier1/IConVar.cpp b/r5dev/tier1/IConVar.cpp index 65278c37..e30dc07e 100644 --- a/r5dev/tier1/IConVar.cpp +++ b/r5dev/tier1/IConVar.cpp @@ -330,6 +330,24 @@ int ConVar::GetInt(void) const return m_pParent->m_Value.m_nValue; } +//----------------------------------------------------------------------------- +// Purpose: Return ConVar value as an integer (64-bit). +// Output : int +//----------------------------------------------------------------------------- +int64_t ConVar::GetInt64(void) const +{ + return static_cast(m_pParent->m_Value.m_nValue); +} + +//----------------------------------------------------------------------------- +// Purpose: Return ConVar value as a size type. +// Output : int +//----------------------------------------------------------------------------- +size_t ConVar::GetSizeT(void) const +{ + return static_cast(m_pParent->m_Value.m_nValue); +} + //----------------------------------------------------------------------------- // Purpose: Return ConVar value as a color. // Output : Color diff --git a/r5dev/tier1/IConVar.h b/r5dev/tier1/IConVar.h index 558414de..43a29595 100644 --- a/r5dev/tier1/IConVar.h +++ b/r5dev/tier1/IConVar.h @@ -107,6 +107,8 @@ public: float GetFloat(void) const; double GetDouble(void) const; int GetInt(void) const; + int64_t GetInt64(void) const; + size_t GetSizeT(void) const; Color GetColor(void) const; const char* GetString(void) const; diff --git a/r5dev/windows/id3dx.cpp b/r5dev/windows/id3dx.cpp index 57a423d0..990d5376 100644 --- a/r5dev/windows/id3dx.cpp +++ b/r5dev/windows/id3dx.cpp @@ -276,12 +276,12 @@ void DrawImGui() if (g_pBrowser->m_bActivate) { g_pInputSystem->EnableInput(false); // Disable input to game when browser is drawn. - g_pBrowser->Draw("Server Browser", &g_pBrowser->m_bActivate); + g_pBrowser->Draw(); } if (g_pConsole->m_bActivate) { g_pInputSystem->EnableInput(false); // Disable input to game when console is drawn. - g_pConsole->Draw("Console", &g_pConsole->m_bActivate); + g_pConsole->Draw(); } if (!g_pConsole->m_bActivate && !g_pBrowser->m_bActivate) {