From 6eb31ad881630bfc4cefd0fb56e12ae2487e0631 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 23 Nov 2022 12:30:15 +0100 Subject: [PATCH] Only activate server command panel when server is simulating Only activate the command panel in the host section of the Server Browser when the server is actually simulating. Else we can crash the server by submitting commands when its in an uninitialized state. Client AI Settings reparse is also only executed when the client is simulating from now on. --- r5dev/gameui/IBrowser.cpp | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/r5dev/gameui/IBrowser.cpp b/r5dev/gameui/IBrowser.cpp index 5485ba14..a107746c 100644 --- a/r5dev/gameui/IBrowser.cpp +++ b/r5dev/gameui/IBrowser.cpp @@ -27,6 +27,7 @@ History: #ifndef CLIENT_DLL #include "engine/server/server.h" #endif // CLIENT_DLL +#include "engine/client/clientstate.h" #include "networksystem/serverlisting.h" #include "networksystem/pylon.h" #include "networksystem/listmanager.h" @@ -484,7 +485,7 @@ void CBrowser::HostPanel(void) } ImGui::Spacing(); - if (!g_pHostState->m_bActiveGame) + if (!g_pServer->IsActive()) { if (ImGui::Button("Start Server", ImVec2(ImGui::GetWindowContentRegionWidth(), 32))) { @@ -576,15 +577,18 @@ void CBrowser::HostPanel(void) if (ImGui::Button("AI Settings Reparse", ImVec2(ImGui::GetWindowContentRegionWidth(), 32))) { - DevMsg(eDLL_T::ENGINE, "Reparsing AI data on %s\n", "server and client"); - + DevMsg(eDLL_T::ENGINE, "Reparsing AI data on %s\n", g_pClientState->IsActive() ? "server and client" : "server"); ProcessCommand("aisettings_reparse"); - ProcessCommand("aisettings_reparse_client"); + + if (g_pClientState->IsActive()) + { + ProcessCommand("aisettings_reparse_client"); + } } if (ImGui::Button("Weapon Settings Reparse", ImVec2(ImGui::GetWindowContentRegionWidth(), 32))) { - DevMsg(eDLL_T::ENGINE, "Reparsing weapon data on %s\n", "server and client"); + DevMsg(eDLL_T::ENGINE, "Reparsing weapon data on %s\n", g_pClientState->IsActive() ? "server and client" : "server"); ProcessCommand("weapon_reparse"); } }