From 8b78ab729b0d300c1f955a8542455ea0db6983c2 Mon Sep 17 00:00:00 2001 From: alexsandulescu Date: Sun, 18 Jul 2021 20:31:40 +0300 Subject: [PATCH 1/3] Added request response messages on imgui remove expire field removed ip field from gui list --- r5dev/include/overlay.h | 2 ++ r5dev/include/serverlisting.h | 3 +- r5dev/src/overlay.cpp | 59 ++++++++++++++++++----------------- r5dev/src/serverlisting.cpp | 3 +- 4 files changed, 34 insertions(+), 33 deletions(-) diff --git a/r5dev/include/overlay.h b/r5dev/include/overlay.h index 3800def8..017b4eab 100644 --- a/r5dev/include/overlay.h +++ b/r5dev/include/overlay.h @@ -179,6 +179,8 @@ public: //////////////////// std::vector MapsList; std::string* SelectedMap = nullptr; + std::string HostRequestMessage; + ImVec4 HostRequestMessageColor; char ServerNameBuffer[64] = { 0 }; bool StartAsDedi; diff --git a/r5dev/include/serverlisting.h b/r5dev/include/serverlisting.h index 6ee968c6..56dda228 100644 --- a/r5dev/include/serverlisting.h +++ b/r5dev/include/serverlisting.h @@ -10,9 +10,8 @@ public: std::string map; std::string ip; std::string version; - int expiry; - ServerListing(std::string name, std::string map, std::string ip, std::string version, int expiry); + ServerListing(std::string name, std::string map, std::string ip, std::string version); void Select(); }; diff --git a/r5dev/src/overlay.cpp b/r5dev/src/overlay.cpp index 44c9535d..18b956e8 100644 --- a/r5dev/src/overlay.cpp +++ b/r5dev/src/overlay.cpp @@ -413,7 +413,7 @@ void CCompanion::RefreshServerList() for (auto obj : root["servers"]) { ServerList.push_back( - new ServerListing(obj["name"], obj["map"], obj["ip"], obj["version"], obj["expire"]) + new ServerListing(obj["name"], obj["map"], obj["ip"], obj["version"]) ); } } @@ -435,6 +435,7 @@ void CCompanion::SendHostingPostRequest(char* mapName) body["map"] = mapName; body["version"] = "1.0"; + std::string body_str = body.dump(); #ifdef DebugOverlay @@ -446,6 +447,23 @@ void CCompanion::SendHostingPostRequest(char* mapName) if (result) { std::cout << " [+CCompanion+] Request Result: " << result->body << "\n"; + nlohmann::json res = nlohmann::json::parse(result->body); + if (!res["success"] && !res["err"].is_null()) + { + HostRequestMessage = res["err"]; + HostRequestMessageColor = ImVec4(1.00f, 0.00f, 0.00f, 1.00f); + } + else if(res["success"] == true) + { + HostRequestMessage = "Hosting!"; + HostRequestMessageColor = ImVec4(0.00f, 1.00f, 0.00f, 1.00f); + } + else + { + HostRequestMessage = ""; + HostRequestMessageColor = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + } + } #endif } @@ -482,47 +500,34 @@ void CCompanion::ServerBrowserSection() ImGui::BeginChild("ServerListChild", { 0, 780 }, false, ImGuiWindowFlags_HorizontalScrollbar); { - ImGui::BeginTable("bumbumceau", 6); + ImGui::BeginTable("##ServerBrowser_ServerList", 4); { ImGui::TableSetupColumn("Name", 0, 35); - ImGui::TableSetupColumn("IP Address", 0, 20); ImGui::TableSetupColumn("Map", 0, 25); ImGui::TableSetupColumn("Version", 0, 10); - ImGui::TableSetupColumn("Expiry", 0, 10); ImGui::TableSetupColumn("", 0, 8); ImGui::TableHeadersRow(); for (ServerListing* server : ServerList) { const char* name = server->name.c_str(); - const char* ip = server->ip.c_str(); const char* map = server->map.c_str(); const char* version = server->version.c_str(); - int expiry = server->expiry; if (ServerBrowserFilter.PassFilter(name) - || ServerBrowserFilter.PassFilter(ip) || ServerBrowserFilter.PassFilter(map) || ServerBrowserFilter.PassFilter(version)) { ImGui::TableNextColumn(); ImGui::Text(name); - ImGui::TableNextColumn(); - ImGui::Text(ip); ImGui::TableNextColumn(); - ImGui::Text(map); - ImGui::TableNextColumn(); + ImGui::TableNextColumn(); ImGui::Text(version); - ImGui::TableNextColumn(); - std::stringstream expirySS; - expirySS << expiry << " seconds left"; - ImGui::Text(expirySS.str().c_str()); ImGui::TableNextColumn(); - std::string selectButtonText = "Connect##"; selectButtonText += (server->name + server->ip + server->map); @@ -573,23 +578,19 @@ void CCompanion::HostServerSection() if (ImGui::Button("Start The Server##ServerHost_StartServerButton", ImVec2(ImGui::GetWindowSize().x, 32))) { - if (strcmp(ServerNameBuffer, "") != 0) + UpdateHostingStatus(); + + std::stringstream cmd; + cmd << "map " << SelectedMap->c_str(); + g_GameConsole->ProcessCommand(cmd.str().c_str()); + + if (StartAsDedi) { - UpdateHostingStatus(); - - std::stringstream cmd; - cmd << "map " << SelectedMap->c_str(); - g_GameConsole->ProcessCommand(cmd.str().c_str()); - - if (StartAsDedi) - { - ToggleDevCommands(); - } + ToggleDevCommands(); } } - if (strcmp(ServerNameBuffer, "") == 0) - ImGui::TextColored(ImVec4(1.00f, 0.00f, 0.00f, 1.00f), "ERROR: Please specify a name for the server!"); + ImGui::TextColored(HostRequestMessageColor, HostRequestMessage.c_str()); if (StartAsDedi) { diff --git a/r5dev/src/serverlisting.cpp b/r5dev/src/serverlisting.cpp index 3437a415..f7fc6bc1 100644 --- a/r5dev/src/serverlisting.cpp +++ b/r5dev/src/serverlisting.cpp @@ -2,13 +2,12 @@ #include "overlay.h" #include "httplib.h" -ServerListing::ServerListing(std::string name, std::string map, std::string ip, std::string version, int expiry) +ServerListing::ServerListing(std::string name, std::string map, std::string ip, std::string version) { this->name = name; this->map = map; this->ip = ip; this->version = version; - this->expiry = expiry; } void ServerListing::Select() From 65e5a8d756be89e54aa630c70f39140508bfc741 Mon Sep 17 00:00:00 2001 From: alexsandulescu Date: Sun, 18 Jul 2021 20:34:26 +0300 Subject: [PATCH 2/3] the host request message should disappear when not hosting --- r5dev/src/overlay.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/r5dev/src/overlay.cpp b/r5dev/src/overlay.cpp index 18b956e8..75663218 100644 --- a/r5dev/src/overlay.cpp +++ b/r5dev/src/overlay.cpp @@ -377,7 +377,9 @@ void CCompanion::UpdateHostingStatus() switch (HostingStatus) { case EHostStatus::NotHosting: - { + { + HostRequestMessage = ""; + HostRequestMessageColor = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); break; } case EHostStatus::Hosting: From 243756ee2b65210c2845b60edd7a199f2cae5759 Mon Sep 17 00:00:00 2001 From: IcePixelx <41352111+PixieCore@users.noreply.github.com> Date: Sun, 18 Jul 2021 20:02:39 +0200 Subject: [PATCH 3/3] moved constructor to header. --- r5dev/include/serverlisting.h | 9 ++++++--- r5dev/src/serverlisting.cpp | 8 -------- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/r5dev/include/serverlisting.h b/r5dev/include/serverlisting.h index 56dda228..2cd4cf0f 100644 --- a/r5dev/include/serverlisting.h +++ b/r5dev/include/serverlisting.h @@ -5,13 +5,16 @@ class ServerListing { public: + ServerListing(std::string name, std::string map, std::string ip, std::string version) : name(name), map(map), ip(ip), version(version) + { + // for future constructor use. + } + + void Select(); std::string name; std::string map; std::string ip; std::string version; - - ServerListing(std::string name, std::string map, std::string ip, std::string version); - void Select(); }; diff --git a/r5dev/src/serverlisting.cpp b/r5dev/src/serverlisting.cpp index f7fc6bc1..7a45d146 100644 --- a/r5dev/src/serverlisting.cpp +++ b/r5dev/src/serverlisting.cpp @@ -2,14 +2,6 @@ #include "overlay.h" #include "httplib.h" -ServerListing::ServerListing(std::string name, std::string map, std::string ip, std::string version) -{ - this->name = name; - this->map = map; - this->ip = ip; - this->version = version; -} - void ServerListing::Select() { std::stringstream cmd;