From 61684ddf870a0494d16d922860c9b68baab4f9fc Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 26 Jan 2023 21:20:11 +0100 Subject: [PATCH] Create cvar for global banned list queries This was planned to be changed a long time ago. This change allows dedicated server users to disable the logic as well. --- r5dev/engine/server/server.cpp | 3 +-- r5dev/engine/server/server.h | 2 -- r5dev/gameui/IBrowser.cpp | 7 ++++++- r5dev/gameui/IBrowser.h | 1 + r5dev/tier1/IConVar.cpp | 1 + r5dev/tier1/cvar.cpp | 1 + r5dev/tier1/cvar.h | 1 + 7 files changed, 11 insertions(+), 5 deletions(-) diff --git a/r5dev/engine/server/server.cpp b/r5dev/engine/server/server.cpp index ea323318..87aab6b4 100644 --- a/r5dev/engine/server/server.cpp +++ b/r5dev/engine/server/server.cpp @@ -95,7 +95,7 @@ bool CServer::AuthClient(user_creds_s* pChallenge) } } - if (g_bCheckCompBanDB) + if (sv_globalBanlist->GetBool()) { std::thread th(SV_IsClientBanned, string(pszAddresBuffer), nNucleusID); th.detach(); @@ -160,5 +160,4 @@ void VServer::Detach() const } /////////////////////////////////////////////////////////////////////////////// -bool g_bCheckCompBanDB = true; // Maybe make this a static method in CServer? It won't be added to the struct offsets then. CServer* g_pServer = nullptr; \ No newline at end of file diff --git a/r5dev/engine/server/server.h b/r5dev/engine/server/server.h index fcdcf360..28d6e7ce 100644 --- a/r5dev/engine/server/server.h +++ b/r5dev/engine/server/server.h @@ -93,8 +93,6 @@ inline auto v_CServer_ConnectClient = p_CServer_Authenticate.RCast(); -extern bool g_bCheckCompBanDB; - /////////////////////////////////////////////////////////////////////////////// class VServer : public IDetour { diff --git a/r5dev/gameui/IBrowser.cpp b/r5dev/gameui/IBrowser.cpp index d11634a5..023862c3 100644 --- a/r5dev/gameui/IBrowser.cpp +++ b/r5dev/gameui/IBrowser.cpp @@ -46,6 +46,7 @@ CBrowser::CBrowser(void) , m_bInitialized(false) , m_bReclaimFocus(false) , m_bQueryListNonRecursive(false) + , m_bQueryGlobalBanList(true) , m_flFadeAlpha(0.f) , m_HostRequestMessageColor(1.00f, 1.00f, 1.00f, 1.00f) , m_ivHiddenServerMessageColor(0.00f, 1.00f, 0.00f, 1.00f) @@ -459,7 +460,11 @@ void CBrowser::HostPanel(void) ImGui::EndCombo(); } - ImGui::Checkbox("Load Global Ban List", &g_bCheckCompBanDB); + if (ImGui::Checkbox("Load Global Ban List", &m_bQueryGlobalBanList)) + { + sv_globalBanlist->SetValue(m_bQueryGlobalBanList); + } + ImGui::Spacing(); ImGui::SameLine(); diff --git a/r5dev/gameui/IBrowser.h b/r5dev/gameui/IBrowser.h index d6949194..ae16e2cd 100644 --- a/r5dev/gameui/IBrowser.h +++ b/r5dev/gameui/IBrowser.h @@ -43,6 +43,7 @@ private: bool m_bInitialized; bool m_bReclaimFocus; bool m_bQueryListNonRecursive; // When set, refreshes the server list once the next frame. + bool m_bQueryGlobalBanList; char m_szServerAddressBuffer[256]; char m_szServerEncKeyBuffer[30]; float m_flFadeAlpha; diff --git a/r5dev/tier1/IConVar.cpp b/r5dev/tier1/IConVar.cpp index bb71c259..3e181510 100644 --- a/r5dev/tier1/IConVar.cpp +++ b/r5dev/tier1/IConVar.cpp @@ -102,6 +102,7 @@ void ConVar::Init(void) navmesh_draw_poly_bounds_inner = ConVar::Create("navmesh_draw_poly_bounds_inner" , "0" , FCVAR_DEVELOPMENTONLY, "Draws the inner bounds of the NavMesh polys (requires navmesh_draw_poly_bounds).", false, 0.f, false, 0.f, nullptr, "Index: > 0 && < mesh->m_tileCount"); #endif // !DEDICATED sv_showconnecting = ConVar::Create("sv_showconnecting" , "1", FCVAR_RELEASE, "Logs information about the connecting client to the console.", false, 0.f, false, 0.f, nullptr, nullptr); + sv_globalBanlist = ConVar::Create("sv_globalBanlist" , "1", FCVAR_RELEASE, "Determines whether or not to use the global banned list.", false, 0.f, false, 0.f, nullptr, "0 = Disable, 1 = Enable."); sv_pylonVisibility = ConVar::Create("sv_pylonVisibility", "0", FCVAR_RELEASE, "Determines the visibility to the Pylon master server.", false, 0.f, false, 0.f, nullptr, "0 = Offline, 1 = Hidden, 2 = Public."); sv_pylonRefreshRate = ConVar::Create("sv_pylonRefreshRate" , "5.0", FCVAR_RELEASE, "Pylon host refresh rate (seconds).", true, 2.f, true, 8.f, nullptr, nullptr); sv_banlistRefreshRate = ConVar::Create("sv_banlistRefreshRate", "1.0", FCVAR_RELEASE, "Banned list refresh rate (seconds).", true, 1.f, false, 0.f, nullptr, nullptr); diff --git a/r5dev/tier1/cvar.cpp b/r5dev/tier1/cvar.cpp index da5bcf10..bf4c65b3 100644 --- a/r5dev/tier1/cvar.cpp +++ b/r5dev/tier1/cvar.cpp @@ -72,6 +72,7 @@ ConVar* navmesh_draw_poly_bounds_inner = nullptr; #endif // !DEDICATED ConVar* sv_showconnecting = nullptr; +ConVar* sv_globalBanlist = nullptr; ConVar* sv_pylonVisibility = nullptr; ConVar* sv_pylonRefreshRate = nullptr; ConVar* sv_banlistRefreshRate = nullptr; diff --git a/r5dev/tier1/cvar.h b/r5dev/tier1/cvar.h index 4ce3f189..5315a078 100644 --- a/r5dev/tier1/cvar.h +++ b/r5dev/tier1/cvar.h @@ -68,6 +68,7 @@ extern ConVar* navmesh_draw_poly_bounds; extern ConVar* navmesh_draw_poly_bounds_inner; #endif // DEDICATED extern ConVar* sv_showconnecting; +extern ConVar* sv_globalBanlist; extern ConVar* sv_pylonVisibility; extern ConVar* sv_pylonRefreshRate; extern ConVar* sv_banlistRefreshRate;