From 838c183b1009ecfceaf8d7489a5c31b25fbb2029 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 27 Jun 2022 15:01:39 +0200 Subject: [PATCH] Use highlighted tab bars in server browser --- r5dev/gameui/IBrowser.cpp | 40 ++++++++++++++------------------------- r5dev/gameui/IBrowser.h | 21 ++++---------------- 2 files changed, 18 insertions(+), 43 deletions(-) diff --git a/r5dev/gameui/IBrowser.cpp b/r5dev/gameui/IBrowser.cpp index d0611cca..ee931300 100644 --- a/r5dev/gameui/IBrowser.cpp +++ b/r5dev/gameui/IBrowser.cpp @@ -107,22 +107,7 @@ void CBrowser::Draw(void) ImGui::Begin(m_pszBrowserTitle, NULL, ImGuiWindowFlags_NoScrollbar); { - CompMenu(); - - switch (eCurrentSection) - { - case eSection::SERVER_BROWSER: - ServerBrowserSection(); - break; - case eSection::HOST_SERVER: - HostServerSection(); - break; - case eSection::SETTINGS: - SettingsSection(); - break; - default: - break; - } + BasePanel(); } ImGui::End(); ImGui::PopStyleVar(nVars); @@ -153,22 +138,25 @@ void CBrowser::Think(void) //----------------------------------------------------------------------------- // Purpose: draws the compmenu //----------------------------------------------------------------------------- -void CBrowser::CompMenu(void) +void CBrowser::BasePanel(void) { ImGui::BeginTabBar("CompMenu"); - if (ImGui::TabItemButton("Server Browser")) + if (ImGui::BeginTabItem("Server Browser")) { - SetSection(eSection::SERVER_BROWSER); + BrowserPanel(); + ImGui::EndTabItem(); } #ifndef CLIENT_DLL - if (ImGui::TabItemButton("Host Server")) + if (ImGui::BeginTabItem("Host Server")) { - SetSection(eSection::HOST_SERVER); + HostPanel(); + ImGui::EndTabItem(); } #endif // !CLIENT_DLL - if (ImGui::TabItemButton("Settings")) + if (ImGui::BeginTabItem("Settings")) { - SetSection(eSection::SETTINGS); + SettingsPanel(); + ImGui::EndTabItem(); } ImGui::EndTabBar(); } @@ -176,7 +164,7 @@ void CBrowser::CompMenu(void) //----------------------------------------------------------------------------- // Purpose: draws the server browser section //----------------------------------------------------------------------------- -void CBrowser::ServerBrowserSection(void) +void CBrowser::BrowserPanel(void) { ImGui::BeginGroup(); m_imServerBrowserFilter.Draw(); @@ -433,7 +421,7 @@ void CBrowser::HiddenServersModal(void) //----------------------------------------------------------------------------- // Purpose: draws the host section //----------------------------------------------------------------------------- -void CBrowser::HostServerSection(void) +void CBrowser::HostPanel(void) { #ifndef CLIENT_DLL static string svServerNameErr = ""; @@ -693,7 +681,7 @@ void CBrowser::ProcessCommand(const char* pszCommand) //----------------------------------------------------------------------------- // Purpose: draws the settings section //----------------------------------------------------------------------------- -void CBrowser::SettingsSection(void) +void CBrowser::SettingsPanel(void) { ImGui::InputTextWithHint("Hostname", "Matchmaking Server String", &m_szMatchmakingHostName); if (ImGui::Button("Update Hostname")) diff --git a/r5dev/gameui/IBrowser.h b/r5dev/gameui/IBrowser.h index 5ad31fe8..e54f79e7 100644 --- a/r5dev/gameui/IBrowser.h +++ b/r5dev/gameui/IBrowser.h @@ -5,13 +5,6 @@ #include "networksystem/serverlisting.h" #include "networksystem/r5net.h" -enum class eSection -{ - SERVER_BROWSER, - HOST_SERVER, - SETTINGS -}; - enum class eHostStatus { NOT_HOSTING, @@ -37,7 +30,6 @@ public: // Enum Vars // //////////////////// - eSection eCurrentSection = eSection::SERVER_BROWSER; eHostStatus eHostingStatus = eHostStatus::NOT_HOSTING; EServerVisibility eServerVisibility = EServerVisibility::OFFLINE; public: @@ -50,9 +42,9 @@ public: void Draw(void); void Think(void); - void CompMenu(void); + void BasePanel(void); - void ServerBrowserSection(void); + void BrowserPanel(void); void RefreshServerList(void); void GetServerList(void); @@ -60,7 +52,7 @@ public: void ConnectToServer(const string& svServer, const string& svNetKey); void HiddenServersModal(void); - void HostServerSection(void); + void HostPanel(void); void UpdateHostingStatus(void); void SendHostingPostRequest(void); @@ -68,7 +60,7 @@ public: void ProcessCommand(const char* pszCommand); void LaunchServer(void); - void SettingsSection(void); + void SettingsPanel(void); void RegenerateEncryptionKey(void) const; void ChangeEncryptionKey(const std::string& svNetKey) const; @@ -111,11 +103,6 @@ public: /* Texture */ ID3D11ShaderResourceView* m_idLockedIcon = nullptr; MODULERESOURCE m_rLockedIconBlob; - - void SetSection(eSection section) - { - eCurrentSection = section; - } }; extern CBrowser* g_pBrowser;