From 0b49ea1f291e5bc87a46e60f7e24bdf2b055052f Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 28 Aug 2022 17:40:03 +0200 Subject: [PATCH] Use 'g_pServer->IsActive()' over 'g_pHostState->m_bActiveGame' --- r5dev/gameui/IBrowser.cpp | 6 +++--- r5dev/networksystem/listmanager.cpp | 5 ++++- r5dev/networksystem/pylon.cpp | 6 ++++-- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/r5dev/gameui/IBrowser.cpp b/r5dev/gameui/IBrowser.cpp index 0f2b7f4c..e2c727ca 100644 --- a/r5dev/gameui/IBrowser.cpp +++ b/r5dev/gameui/IBrowser.cpp @@ -445,7 +445,7 @@ void CBrowser::HostPanel(void) ImGui::Spacing(); ImGui::Separator(); - if (!g_pHostState->m_bActiveGame) + if (!g_pServer->IsActive()) { if (ImGui::Button("Start Server", ImVec2((ImGui::GetWindowSize().x - 10), 32))) { @@ -499,7 +499,7 @@ void CBrowser::HostPanel(void) ImGui::InputText("##ServerHost_HostToken", &m_svHostToken, ImGuiInputTextFlags_ReadOnly); } - if (g_pHostState->m_bActiveGame) + if (g_pServer->IsActive()) { if (ImGui::Button("Weapon Reparse", ImVec2((ImGui::GetWindowSize().x - 10), 32))) { @@ -556,7 +556,7 @@ void CBrowser::UpdateHostingStatus(void) } std::lock_guard l(g_pServerListManager->m_Mutex); - g_pServerListManager->m_HostingStatus = g_pHostState->m_bActiveGame ? EHostStatus_t::HOSTING : EHostStatus_t::NOT_HOSTING; // Are we hosting a server? + g_pServerListManager->m_HostingStatus = g_pServer->IsActive() ? EHostStatus_t::HOSTING : EHostStatus_t::NOT_HOSTING; // Are we hosting a server? switch (g_pServerListManager->m_HostingStatus) { diff --git a/r5dev/networksystem/listmanager.cpp b/r5dev/networksystem/listmanager.cpp index b7c7c6e6..1003153c 100644 --- a/r5dev/networksystem/listmanager.cpp +++ b/r5dev/networksystem/listmanager.cpp @@ -13,6 +13,9 @@ #include "tier1/cvar.h" #include "engine/net.h" #include "engine/host_state.h" +#ifndef CLIENT_DLL +#include "engine/server/server.h" +#endif // !CLIENT_DLL #include "vpc/keyvalues.h" #include "pylon.h" #include "listmanager.h" @@ -76,7 +79,7 @@ void CServerListManager::LaunchServer(void) const KeyValues::ParsePlaylists(m_Server.m_svPlaylist.c_str()); mp_gamemode->SetValue(m_Server.m_svPlaylist.c_str()); - if (g_pHostState->m_bActiveGame) + if (g_pServer->IsActive()) { ProcessCommand(fmt::format("{:s} \"{:s}\"", "changelevel", m_Server.m_svHostMap).c_str()); } diff --git a/r5dev/networksystem/pylon.cpp b/r5dev/networksystem/pylon.cpp index 48ad946f..0801cf6b 100644 --- a/r5dev/networksystem/pylon.cpp +++ b/r5dev/networksystem/pylon.cpp @@ -7,8 +7,10 @@ #include #include -#include #include +#ifndef CLIENT_DLL +#include +#endif // !CLIENT_DLL //----------------------------------------------------------------------------- // Purpose: Send keep alive request to Pylon Master Server. @@ -17,7 +19,7 @@ bool KeepAliveToPylon(const NetGameServer_t& netGameServer) { #ifndef CLIENT_DLL - if (g_pHostState->m_bActiveGame && sv_pylonVisibility->GetBool()) // Check for active game. + if (g_pServer->IsActive() && sv_pylonVisibility->GetBool()) // Check for active game. { string m_szHostToken; string m_szHostRequestMessage;