From cdcc87b54bd03ddb01f724eda8d4827fba53c44b Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Fri, 1 Jul 2022 10:29:27 +0200 Subject: [PATCH] Renamed master server related stuff --- r5dev/engine/server/server.cpp | 6 +- r5dev/engine/server/server.h | 2 +- r5dev/engine/server/sv_main.cpp | 6 +- r5dev/engine/server/sv_main.h | 4 +- r5dev/gameui/IBrowser.cpp | 22 +- r5dev/gameui/IBrowser.h | 2 +- r5dev/networksystem/pylon.cpp | 334 ++++++++++++++++++++++++- r5dev/networksystem/pylon.h | 24 +- r5dev/networksystem/r5net.cpp | 335 -------------------------- r5dev/networksystem/r5net.h | 26 -- r5dev/squirrel/sqinit.cpp | 6 +- r5dev/tier1/IConVar.cpp | 6 +- r5dev/tier1/cvar.cpp | 4 +- r5dev/tier1/cvar.h | 4 +- r5dev/vproj/clientsdk.vcxproj | 2 - r5dev/vproj/clientsdk.vcxproj.filters | 6 - r5dev/vproj/dedicated.vcxproj | 2 - r5dev/vproj/dedicated.vcxproj.filters | 6 - r5dev/vproj/gamesdk.vcxproj | 2 - r5dev/vproj/gamesdk.vcxproj.filters | 6 - 20 files changed, 386 insertions(+), 419 deletions(-) delete mode 100644 r5dev/networksystem/r5net.cpp delete mode 100644 r5dev/networksystem/r5net.h diff --git a/r5dev/engine/server/server.cpp b/r5dev/engine/server/server.cpp index 3c3e2bdb..08b4195b 100644 --- a/r5dev/engine/server/server.cpp +++ b/r5dev/engine/server/server.cpp @@ -13,7 +13,7 @@ #include "tier1/cvar.h" #include "engine/server/sv_main.h" #include "engine/server/server.h" -#include "networksystem/r5net.h" +#include "networksystem/pylon.h" #include "public/include/edict.h" #include "public/include/bansystem.h" @@ -98,9 +98,9 @@ CClient* CServer::Authenticate(CServer* pServer, user_creds_s* pInpacket) if (g_bCheckCompBanDB) { - if (g_pR5net) + if (g_pMasterServer) { - std::thread th(SV_IsClientBanned, g_pR5net, svIpAddress, pInpacket->m_nNucleusID); + std::thread th(SV_IsClientBanned, g_pMasterServer, svIpAddress, pInpacket->m_nNucleusID); th.detach(); } } diff --git a/r5dev/engine/server/server.h b/r5dev/engine/server/server.h index 1a4b7b9e..8d5124b3 100644 --- a/r5dev/engine/server/server.h +++ b/r5dev/engine/server/server.h @@ -1,6 +1,6 @@ #pragma once #include "tier1/NetAdr2.h" -#include "networksystem/r5net.h" +#include "networksystem/pylon.h" #include "engine/client/client.h" #include "engine/networkstringtable.h" #include "public/include/iserver.h" diff --git a/r5dev/engine/server/sv_main.cpp b/r5dev/engine/server/sv_main.cpp index 0768ab57..df67e54c 100644 --- a/r5dev/engine/server/sv_main.cpp +++ b/r5dev/engine/server/sv_main.cpp @@ -1,16 +1,16 @@ #include "core/stdafx.h" #include "engine/server/sv_main.h" -#include "networksystem/r5net.h" +#include "networksystem/pylon.h" #include "public/include/bansystem.h" //----------------------------------------------------------------------------- // Purpose: checks if particular client is banned on the comp server //----------------------------------------------------------------------------- -void SV_IsClientBanned(R5Net::Client* pR5net, const string svIPAddr, uint64_t nNucleusID) +void SV_IsClientBanned(CPylon* pPylon, const string svIPAddr, uint64_t nNucleusID) { string svError = string(); - bool bCompBanned = pR5net->GetClientIsBanned(svIPAddr, nNucleusID, svError); + bool bCompBanned = pPylon->GetClientIsBanned(svIPAddr, nNucleusID, svError); if (bCompBanned) { DevMsg(eDLL_T::SERVER, "Connection rejected for '%s' ('%llu' is banned from the master server!)\n", svIPAddr.c_str(), nNucleusID); diff --git a/r5dev/engine/server/sv_main.h b/r5dev/engine/server/sv_main.h index 9d87f7c3..ed037e2e 100644 --- a/r5dev/engine/server/sv_main.h +++ b/r5dev/engine/server/sv_main.h @@ -1,5 +1,5 @@ #pragma once -#include "networksystem/r5net.h" +#include "networksystem/pylon.h" #include "public/include/bansystem.h" /////////////////////////////////////////////////////////////////////////////// @@ -21,7 +21,7 @@ inline bool* s_bDedicated = nullptr; /////////////////////////////////////////////////////////////////////////////// -void SV_IsClientBanned(R5Net::Client* pR5net, const string svIPAddr, uint64_t nNucleusID); +void SV_IsClientBanned(CPylon* pPylon, const string svIPAddr, uint64_t nNucleusID); /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// diff --git a/r5dev/gameui/IBrowser.cpp b/r5dev/gameui/IBrowser.cpp index cfb7b21e..265317a9 100644 --- a/r5dev/gameui/IBrowser.cpp +++ b/r5dev/gameui/IBrowser.cpp @@ -27,7 +27,7 @@ History: #include "engine/server/server.h" #endif // CLIENT_DLL #include "networksystem/serverlisting.h" -#include "networksystem/r5net.h" +#include "networksystem/pylon.h" #include "squirrel/sqinit.h" #include "squirrel/sqapi.h" #include "client/vengineclient_impl.h" @@ -79,7 +79,7 @@ void CBrowser::Draw(void) if (!m_bInitialized) { SetStyleVar(); - m_szMatchmakingHostName = r5net_matchmaking_hostname->GetString(); + m_szMatchmakingHostName = pylon_matchmaking_hostname->GetString(); m_bInitialized = true; } @@ -277,9 +277,9 @@ void CBrowser::RefreshServerList(void) { std::thread t([this]() { - DevMsg(eDLL_T::CLIENT, "Refreshing server list with matchmaking host '%s'\n", r5net_matchmaking_hostname->GetString()); + DevMsg(eDLL_T::CLIENT, "Refreshing server list with matchmaking host '%s'\n", pylon_matchmaking_hostname->GetString()); bThreadLocked = true; - m_vServerList = g_pR5net->GetServersList(m_svServerListMessage); + m_vServerList = g_pMasterServer->GetServersList(m_svServerListMessage); bThreadLocked = false; }); @@ -294,7 +294,7 @@ void CBrowser::GetServerList(void) { m_vServerList.clear(); m_svServerListMessage.clear(); - m_vServerList = g_pR5net->GetServersList(m_svServerListMessage); + m_vServerList = g_pMasterServer->GetServersList(m_svServerListMessage); } //----------------------------------------------------------------------------- @@ -394,7 +394,7 @@ void CBrowser::HiddenServersModal(void) { m_svHiddenServerRequestMessage.clear(); NetGameServer_t server; - bool result = g_pR5net->GetServerByToken(server, m_svHiddenServerRequestMessage, m_svHiddenServerToken); // Send token connect request. + bool result = g_pMasterServer->GetServerByToken(server, m_svHiddenServerRequestMessage, m_svHiddenServerToken); // Send token connect request. if (!server.m_svHostName.empty()) { ConnectToServer(server.m_svIpAddress, server.m_svGamePort, server.m_svEncryptionKey); // Connect to the server @@ -633,7 +633,7 @@ void CBrowser::SendHostingPostRequest(void) { #ifndef CLIENT_DLL m_svHostToken.clear(); - bool result = g_pR5net->PostServerHost(m_svHostRequestMessage, m_svHostToken, + bool result = g_pMasterServer->PostServerHost(m_svHostRequestMessage, m_svHostToken, NetGameServer_t { m_Server.m_svHostName, @@ -693,11 +693,11 @@ void CBrowser::SettingsPanel(void) ImGui::InputTextWithHint("Hostname", "Matchmaking Server String", &m_szMatchmakingHostName); if (ImGui::Button("Update Hostname")) { - r5net_matchmaking_hostname->SetValue(m_szMatchmakingHostName.c_str()); - if (g_pR5net) + pylon_matchmaking_hostname->SetValue(m_szMatchmakingHostName.c_str()); + if (g_pMasterServer) { - delete g_pR5net; - g_pR5net = new R5Net::Client(r5net_matchmaking_hostname->GetString()); + delete g_pMasterServer; + g_pMasterServer = new CPylon(pylon_matchmaking_hostname->GetString()); } } ImGui::InputText("Netkey", const_cast(g_svNetKey.c_str()), ImGuiInputTextFlags_ReadOnly); diff --git a/r5dev/gameui/IBrowser.h b/r5dev/gameui/IBrowser.h index 5c88126f..9319e6fe 100644 --- a/r5dev/gameui/IBrowser.h +++ b/r5dev/gameui/IBrowser.h @@ -3,7 +3,7 @@ #include "common/sdkdefs.h" #include "windows/resource.h" #include "networksystem/serverlisting.h" -#include "networksystem/r5net.h" +#include "networksystem/pylon.h" enum class eHostStatus { diff --git a/r5dev/networksystem/pylon.cpp b/r5dev/networksystem/pylon.cpp index dd90139f..d121f1fa 100644 --- a/r5dev/networksystem/pylon.cpp +++ b/r5dev/networksystem/pylon.cpp @@ -12,7 +12,6 @@ #include #include #include -#include #include #include @@ -28,7 +27,7 @@ void KeepAliveToPylon() std::string m_szHostToken = std::string(); std::string m_szHostRequestMessage = std::string(); - bool result = g_pR5net->PostServerHost(m_szHostRequestMessage, m_szHostToken, + bool result = g_pMasterServer->PostServerHost(m_szHostRequestMessage, m_szHostToken, NetGameServer_t { hostname->GetString(), @@ -50,4 +49,333 @@ void KeepAliveToPylon() ); } #endif // !CLIENT_DLL -} \ No newline at end of file +} + +//----------------------------------------------------------------------------- +// Purpose: returns a vector of hosted servers. +//----------------------------------------------------------------------------- +vector CPylon::GetServersList(string& svOutMessage) +{ + vector vslList{}; + + nlohmann::json jsRequestBody = nlohmann::json::object(); + jsRequestBody["version"] = SDK_VERSION; + + string svRequestBody = jsRequestBody.dump(4); + + if (pylon_showdebug->GetBool()) + { + DevMsg(eDLL_T::ENGINE, "%s - Sending server list request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str()); + } + + httplib::Result htResults = m_HttpClient.Post("/servers", jsRequestBody.dump(4).c_str(), jsRequestBody.dump(4).length(), "application/json"); + if (htResults && pylon_showdebug->GetBool()) + { + DevMsg(eDLL_T::ENGINE, "%s - replied with '%d'.\n", __FUNCTION__, htResults->status); + } + + if (htResults && htResults->status == 200) // STATUS_OK + { + nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); + if (jsResultBody["success"].is_boolean() && jsResultBody["success"].get()) + { + for (auto& obj : jsResultBody["servers"]) + { + vslList.push_back( + NetGameServer_t + { + obj.value("name",""), + obj.value("description",""), + obj.value("hidden","false") == "true", + obj.value("map",""), + obj.value("playlist",""), + obj.value("ip",""), + obj.value("port", ""), + obj.value("key",""), + obj.value("checksum",""), + obj.value("version", SDK_VERSION), + obj.value("playerCount", ""), + obj.value("maxPlayers", ""), + obj.value("timeStamp", 0), + obj.value("publicRef", ""), + obj.value("cachedID", ""), + } + ); + } + } + else + { + if (jsResultBody["err"].is_string()) + { + svOutMessage = jsResultBody["err"].get(); + } + else + { + svOutMessage = "An unknown error occured!"; + } + } + } + else + { + if (htResults) + { + if (!htResults->body.empty()) + { + nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); + + if (jsResultBody["err"].is_string()) + { + svOutMessage = jsResultBody["err"].get(); + } + else + { + svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResults->status); + } + + return vslList; + } + + svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResults->status); + return vslList; + } + + svOutMessage = "Failed to reach comp-server: Unknown error code"; + return vslList; + } + + return vslList; +} + +//----------------------------------------------------------------------------- +// Purpose: Sends host server POST request. +// Input : &svOutMessage - +// &svOutToken - +// &slServerListing - +// Output : Returns true on success, false on failure. +//----------------------------------------------------------------------------- +bool CPylon::PostServerHost(string& svOutMessage, string& svOutToken, const NetGameServer_t& slServerListing) +{ + nlohmann::json jsRequestBody = nlohmann::json::object(); + jsRequestBody["name"] = slServerListing.m_svHostName; + jsRequestBody["description"] = slServerListing.m_svDescription; + jsRequestBody["hidden"] = slServerListing.m_bHidden; + jsRequestBody["map"] = slServerListing.m_svMapName; + jsRequestBody["playlist"] = slServerListing.m_svPlaylist; + jsRequestBody["ip"] = slServerListing.m_svIpAddress; + jsRequestBody["port"] = slServerListing.m_svGamePort; + jsRequestBody["key"] = slServerListing.m_svEncryptionKey; + jsRequestBody["checksum"] = slServerListing.m_svRemoteChecksum; + jsRequestBody["version"] = slServerListing.m_svSDKVersion; + jsRequestBody["playerCount"] = slServerListing.m_svPlayerCount; + jsRequestBody["maxPlayers"] = slServerListing.m_svMaxPlayers; + jsRequestBody["timeStamp"] = slServerListing.m_nTimeStamp; + jsRequestBody["publicRef"] = slServerListing.m_svPublicRef; + jsRequestBody["cachedID"] = slServerListing.m_svCachedID; + + string svRequestBody = jsRequestBody.dump(4); + if (pylon_showdebug->GetBool()) + { + DevMsg(eDLL_T::ENGINE, "%s - Sending post host request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str()); + } + + httplib::Result htResults = m_HttpClient.Post("/servers/add", svRequestBody.c_str(), svRequestBody.length(), "application/json"); + if (htResults && pylon_showdebug->GetBool()) + { + DevMsg(eDLL_T::ENGINE, "%s - Comp-server replied with '%d'\n", __FUNCTION__, htResults->status); + } + + if (htResults && htResults->status == 200) // STATUS_OK + { + nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); + if (jsResultBody["success"].is_boolean() && jsResultBody["success"].get()) + { + if (jsResultBody["token"].is_string()) + { + svOutToken = jsResultBody["token"].get(); + } + else + { + svOutToken = string(); + } + + return true; + } + else + { + if (jsResultBody["err"].is_string()) + { + svOutMessage = jsResultBody["err"].get(); + } + else + { + svOutMessage = "An unknown error occured!"; + } + return false; + } + } + else + { + if (htResults) + { + if (!htResults->body.empty()) + { + nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); + + if (jsResultBody["err"].is_string()) + { + svOutMessage = jsResultBody["err"].get(); + } + else + { + svOutMessage = string("Failed to reach comp-server ") + std::to_string(htResults->status); + } + + svOutToken = string(); + return false; + } + + svOutToken = string(); + svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResults->status); + return false; + } + + svOutToken = string(); + svOutMessage = "Failed to reach comp-server: Unknown error code"; + return false; + } + + return false; +} + +//----------------------------------------------------------------------------- +// Purpose: Gets the server by token string. +// Input : &slOutServer - +// &svOutMessage - +// svToken - +// Output : Returns true on success, false on failure. +//----------------------------------------------------------------------------- +bool CPylon::GetServerByToken(NetGameServer_t& slOutServer, string& svOutMessage, const string& svToken) +{ + nlohmann::json jsRequestBody = nlohmann::json::object(); + jsRequestBody["token"] = svToken; + + string svRequestBody = jsRequestBody.dump(4); + + if (pylon_showdebug->GetBool()) + { + DevMsg(eDLL_T::ENGINE, "%s - Sending token connect request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str()); + } + + httplib::Result htResults = m_HttpClient.Post("/server/byToken", jsRequestBody.dump(4).c_str(), jsRequestBody.dump(4).length(), "application/json"); + + if (pylon_showdebug->GetBool()) + { + DevMsg(eDLL_T::ENGINE, "%s - Comp-server replied with '%d'\n", __FUNCTION__, htResults->status); + } + + if (htResults && htResults->status == 200) // STATUS_OK + { + if (!htResults->body.empty()) + { + nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); + + if (htResults && jsResultBody["success"].is_boolean() && jsResultBody["success"]) + { + slOutServer = NetGameServer_t + { + jsResultBody["server"].value("name",""), + jsResultBody["server"].value("description",""), + jsResultBody["server"].value("hidden","false") == "true", + jsResultBody["server"].value("map",""), + jsResultBody["server"].value("playlist",""), + jsResultBody["server"].value("ip",""), + jsResultBody["server"].value("port", ""), + jsResultBody["server"].value("key",""), + jsResultBody["server"].value("checksum",""), + jsResultBody["server"].value("version", SDK_VERSION), + jsResultBody["server"].value("playerCount", ""), + jsResultBody["server"].value("maxPlayers", ""), + jsResultBody["server"].value("timeStamp", 0), + jsResultBody["server"].value("publicRef", ""), + jsResultBody["server"].value("cachedID", ""), + }; + return true; + } + else + { + if (jsResultBody["err"].is_string()) + { + svOutMessage = jsResultBody["err"].get(); + } + else + { + svOutMessage = ""; + } + + slOutServer = NetGameServer_t{}; + return false; + } + } + } + else + { + if (htResults) + { + if (!htResults->body.empty()) + { + nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); + + if (jsResultBody["err"].is_string()) + { + svOutMessage = jsResultBody["err"].get(); + } + else + { + svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResults->status); + } + + return false; + } + + svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResults->status); + return false; + } + + svOutMessage = "Failed to reach comp-server: Unknown error code"; + slOutServer = NetGameServer_t{}; + return false; + } + + return false; +} + +//----------------------------------------------------------------------------- +// Purpose: Checks if client is banned on the comp server. +// Input : svIpAddress - +// nOriginID - +// &svOutErrCl - +// Output : Returns true if banned, false if not banned. +//----------------------------------------------------------------------------- +bool CPylon::GetClientIsBanned(const string& svIpAddress, uint64_t nOriginID, string& svOutErrCl) +{ + nlohmann::json jsRequestBody = nlohmann::json::object(); + jsRequestBody["oid"] = nOriginID; + jsRequestBody["ip"] = svIpAddress; + + httplib::Result htResults = m_HttpClient.Post("/banlist/isBanned", jsRequestBody.dump(4).c_str(), jsRequestBody.dump(4).length(), "application/json"); + if (htResults && htResults->status == 200) + { + nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); + if (jsResultBody["success"].is_boolean() && jsResultBody["success"].get()) + { + if (jsResultBody["banned"].is_boolean() && jsResultBody["banned"].get()) + { + svOutErrCl = jsResultBody.value("errCl", "#DISCONNECT_BANNED"); + return true; + } + } + } + return false; +} +/////////////////////////////////////////////////////////////////////////////// +CPylon* g_pMasterServer(new CPylon("127.0.0.1:3000")); diff --git a/r5dev/networksystem/pylon.h b/r5dev/networksystem/pylon.h index 548a2ecc..3605cfb1 100644 --- a/r5dev/networksystem/pylon.h +++ b/r5dev/networksystem/pylon.h @@ -1,3 +1,25 @@ #pragma once +#include "serverlisting.h" -void KeepAliveToPylon(); \ No newline at end of file +void KeepAliveToPylon(); + +class CPylon +{ +public: + CPylon(string serverString) : m_HttpClient(serverString.c_str()) + { + m_HttpClient.set_connection_timeout(10); + } + + vector GetServersList(string& svOutMessage); + bool PostServerHost(string& svOutMessage, string& svOutToken, const NetGameServer_t& slServerListing); + bool GetServerByToken(NetGameServer_t& slOutServer, string& svOutMessage, const string& svToken); + bool GetClientIsBanned(const string& svIpAddress, uint64_t nOriginID, string& svOutErrCl); + + CPylon* pR5net = nullptr; + CPylon* GetR5Net() { return pR5net; } + +private: + httplib::Client m_HttpClient; +}; +extern CPylon* g_pMasterServer; diff --git a/r5dev/networksystem/r5net.cpp b/r5dev/networksystem/r5net.cpp deleted file mode 100644 index d90938ae..00000000 --- a/r5dev/networksystem/r5net.cpp +++ /dev/null @@ -1,335 +0,0 @@ -// r5net.cpp : Defines the functions for the static library. -// - -#include "core/stdafx.h" -#include "tier1/cvar.h" -#include "networksystem/r5net.h" - -//----------------------------------------------------------------------------- -// Purpose: returns a vector of hosted servers. -//----------------------------------------------------------------------------- -vector R5Net::Client::GetServersList(string& svOutMessage) -{ - vector vslList{}; - - nlohmann::json jsRequestBody = nlohmann::json::object(); - jsRequestBody["version"] = SDK_VERSION; - - string svRequestBody = jsRequestBody.dump(4); - - if (r5net_show_debug->GetBool()) - { - DevMsg(eDLL_T::ENGINE, "%s - Sending server list request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str()); - } - - httplib::Result htResults = m_HttpClient.Post("/servers", jsRequestBody.dump(4).c_str(), jsRequestBody.dump(4).length(), "application/json"); - if (htResults && r5net_show_debug->GetBool()) - { - DevMsg(eDLL_T::ENGINE, "%s - replied with '%d'.\n", __FUNCTION__, htResults->status); - } - - if (htResults && htResults->status == 200) // STATUS_OK - { - nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); - if (jsResultBody["success"].is_boolean() && jsResultBody["success"].get()) - { - for (auto &obj : jsResultBody["servers"]) - { - vslList.push_back( - NetGameServer_t - { - obj.value("name",""), - obj.value("description",""), - obj.value("hidden","false") == "true", - obj.value("map",""), - obj.value("playlist",""), - obj.value("ip",""), - obj.value("port", ""), - obj.value("key",""), - obj.value("checksum",""), - obj.value("version", SDK_VERSION), - obj.value("playerCount", ""), - obj.value("maxPlayers", ""), - obj.value("timeStamp", 0), - obj.value("publicRef", ""), - obj.value("cachedID", ""), - } - ); - } - } - else - { - if (jsResultBody["err"].is_string()) - { - svOutMessage = jsResultBody["err"].get(); - } - else - { - svOutMessage = "An unknown error occured!"; - } - } - } - else - { - if (htResults) - { - if (!htResults->body.empty()) - { - nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); - - if (jsResultBody["err"].is_string()) - { - svOutMessage = jsResultBody["err"].get(); - } - else - { - svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResults->status); - } - - return vslList; - } - - svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResults->status); - return vslList; - } - - svOutMessage = "Failed to reach comp-server: Unknown error code"; - return vslList; - } - - return vslList; -} - -//----------------------------------------------------------------------------- -// Purpose: Sends host server POST request. -// Input : &svOutMessage - -// &svOutToken - -// &slServerListing - -// Output : Returns true on success, false on failure. -//----------------------------------------------------------------------------- -bool R5Net::Client::PostServerHost(string& svOutMessage, string& svOutToken, const NetGameServer_t& slServerListing) -{ - nlohmann::json jsRequestBody = nlohmann::json::object(); - jsRequestBody["name"] = slServerListing.m_svHostName; - jsRequestBody["description"] = slServerListing.m_svDescription; - jsRequestBody["hidden"] = slServerListing.m_bHidden; - jsRequestBody["map"] = slServerListing.m_svMapName; - jsRequestBody["playlist"] = slServerListing.m_svPlaylist; - jsRequestBody["ip"] = slServerListing.m_svIpAddress; - jsRequestBody["port"] = slServerListing.m_svGamePort; - jsRequestBody["key"] = slServerListing.m_svEncryptionKey; - jsRequestBody["checksum"] = slServerListing.m_svRemoteChecksum; - jsRequestBody["version"] = slServerListing.m_svSDKVersion; - jsRequestBody["playerCount"] = slServerListing.m_svPlayerCount; - jsRequestBody["maxPlayers"] = slServerListing.m_svMaxPlayers; - jsRequestBody["timeStamp"] = slServerListing.m_nTimeStamp; - jsRequestBody["publicRef"] = slServerListing.m_svPublicRef; - jsRequestBody["cachedID"] = slServerListing.m_svCachedID; - - string svRequestBody = jsRequestBody.dump(4); - if (r5net_show_debug->GetBool()) - { - DevMsg(eDLL_T::ENGINE, "%s - Sending post host request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str()); - } - - httplib::Result htResults = m_HttpClient.Post("/servers/add", svRequestBody.c_str(), svRequestBody.length(), "application/json"); - if (htResults && r5net_show_debug->GetBool()) - { - DevMsg(eDLL_T::ENGINE, "%s - Comp-server replied with '%d'\n", __FUNCTION__, htResults->status); - } - - if (htResults && htResults->status == 200) // STATUS_OK - { - nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); - if (jsResultBody["success"].is_boolean() && jsResultBody["success"].get()) - { - if (jsResultBody["token"].is_string()) - { - svOutToken = jsResultBody["token"].get(); - } - else - { - svOutToken = string(); - } - - return true; - } - else - { - if (jsResultBody["err"].is_string()) - { - svOutMessage = jsResultBody["err"].get(); - } - else - { - svOutMessage = "An unknown error occured!"; - } - return false; - } - } - else - { - if (htResults) - { - if (!htResults->body.empty()) - { - nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); - - if (jsResultBody["err"].is_string()) - { - svOutMessage = jsResultBody["err"].get(); - } - else - { - svOutMessage = string("Failed to reach comp-server ") + std::to_string(htResults->status); - } - - svOutToken = string(); - return false; - } - - svOutToken = string(); - svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResults->status); - return false; - } - - svOutToken = string(); - svOutMessage = "Failed to reach comp-server: Unknown error code"; - return false; - } - - return false; -} - -//----------------------------------------------------------------------------- -// Purpose: Gets the server by token string. -// Input : &slOutServer - -// &svOutMessage - -// svToken - -// Output : Returns true on success, false on failure. -//----------------------------------------------------------------------------- -bool R5Net::Client::GetServerByToken(NetGameServer_t& slOutServer, string& svOutMessage, const string& svToken) -{ - nlohmann::json jsRequestBody = nlohmann::json::object(); - jsRequestBody["token"] = svToken; - - string svRequestBody = jsRequestBody.dump(4); - - if (r5net_show_debug->GetBool()) - { - DevMsg(eDLL_T::ENGINE, "%s - Sending token connect request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str()); - } - - httplib::Result htResults = m_HttpClient.Post("/server/byToken", jsRequestBody.dump(4).c_str(), jsRequestBody.dump(4).length(), "application/json"); - - if (r5net_show_debug->GetBool()) - { - DevMsg(eDLL_T::ENGINE, "%s - Comp-server replied with '%d'\n", __FUNCTION__, htResults->status); - } - - if (htResults && htResults->status == 200) // STATUS_OK - { - if (!htResults->body.empty()) - { - nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); - - if (htResults && jsResultBody["success"].is_boolean() && jsResultBody["success"]) - { - slOutServer = NetGameServer_t - { - jsResultBody["server"].value("name",""), - jsResultBody["server"].value("description",""), - jsResultBody["server"].value("hidden","false") == "true", - jsResultBody["server"].value("map",""), - jsResultBody["server"].value("playlist",""), - jsResultBody["server"].value("ip",""), - jsResultBody["server"].value("port", ""), - jsResultBody["server"].value("key",""), - jsResultBody["server"].value("checksum",""), - jsResultBody["server"].value("version", SDK_VERSION), - jsResultBody["server"].value("playerCount", ""), - jsResultBody["server"].value("maxPlayers", ""), - jsResultBody["server"].value("timeStamp", 0), - jsResultBody["server"].value("publicRef", ""), - jsResultBody["server"].value("cachedID", ""), - }; - return true; - } - else - { - if (jsResultBody["err"].is_string()) - { - svOutMessage = jsResultBody["err"].get(); - } - else - { - svOutMessage = ""; - } - - slOutServer = NetGameServer_t{}; - return false; - } - } - } - else - { - if (htResults) - { - if (!htResults->body.empty()) - { - nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); - - if (jsResultBody["err"].is_string()) - { - svOutMessage = jsResultBody["err"].get(); - } - else - { - svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResults->status); - } - - return false; - } - - svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResults->status); - return false; - } - - svOutMessage = "Failed to reach comp-server: Unknown error code"; - slOutServer = NetGameServer_t{}; - return false; - } - - return false; -} - -//----------------------------------------------------------------------------- -// Purpose: Checks if client is banned on the comp server. -// Input : svIpAddress - -// nOriginID - -// &svOutErrCl - -// Output : Returns true if banned, false if not banned. -//----------------------------------------------------------------------------- -bool R5Net::Client::GetClientIsBanned(const string& svIpAddress, uint64_t nOriginID, string& svOutErrCl) -{ - nlohmann::json jsRequestBody = nlohmann::json::object(); - jsRequestBody["oid"] = nOriginID; - jsRequestBody["ip"] = svIpAddress; - - httplib::Result htResults = m_HttpClient.Post("/banlist/isBanned", jsRequestBody.dump(4).c_str(), jsRequestBody.dump(4).length(), "application/json"); - if (htResults && htResults->status == 200) - { - nlohmann::json jsResultBody = nlohmann::json::parse(htResults->body); - if (jsResultBody["success"].is_boolean() && jsResultBody["success"].get()) - { - if (jsResultBody["banned"].is_boolean() && jsResultBody["banned"].get()) - { - svOutErrCl = jsResultBody.value("errCl", "#DISCONNECT_BANNED"); - return true; - } - } - } - return false; -} -/////////////////////////////////////////////////////////////////////////////// -R5Net::Client* g_pR5net(new R5Net::Client("127.0.0.1:3000")); diff --git a/r5dev/networksystem/r5net.h b/r5dev/networksystem/r5net.h deleted file mode 100644 index e802c0bf..00000000 --- a/r5dev/networksystem/r5net.h +++ /dev/null @@ -1,26 +0,0 @@ -#pragma once -#include "serverlisting.h" - -namespace R5Net -{ - class Client - { - public: - Client(string serverString) : m_HttpClient(serverString.c_str()) - { - m_HttpClient.set_connection_timeout(10); - } - - vector GetServersList(string& svOutMessage); - bool PostServerHost(string& svOutMessage, string& svOutToken, const NetGameServer_t& slServerListing); - bool GetServerByToken(NetGameServer_t& slOutServer, string& svOutMessage, const string& svToken); - bool GetClientIsBanned(const string& svIpAddress, uint64_t nOriginID, string& svOutErrCl); - - Client* pR5net = nullptr; - Client* GetR5Net() { return pR5net; } - - private: - httplib::Client m_HttpClient; - }; -} -extern R5Net::Client* g_pR5net; diff --git a/r5dev/squirrel/sqinit.cpp b/r5dev/squirrel/sqinit.cpp index cc91ea35..be46d7b6 100644 --- a/r5dev/squirrel/sqinit.cpp +++ b/r5dev/squirrel/sqinit.cpp @@ -21,7 +21,7 @@ #include "squirrel/sqtype.h" #include "squirrel/sqapi.h" #include "squirrel/sqinit.h" -#include "networksystem/r5net.h" +#include "networksystem/pylon.h" #ifndef DEDICATED #include "gameui/IBrowser.h" // TODO: create dedicated class for exposing server utils to ImGui and UI VM. @@ -286,7 +286,7 @@ namespace VSquirrel string svToken = sq_getstring(v, 1); NetGameServer_t svListing; - bool result = g_pR5net->GetServerByToken(svListing, svHiddenServerRequestMessage, svToken); // Send szToken connect request. + bool result = g_pMasterServer->GetServerByToken(svListing, svHiddenServerRequestMessage, svToken); // Send szToken connect request. if (result) { g_pBrowser->ConnectToServer(svListing.m_svIpAddress, svListing.m_svGamePort, svListing.m_svEncryptionKey); @@ -304,7 +304,7 @@ namespace VSquirrel string svToken = sq_getstring(v, 1); NetGameServer_t serverListing; - bool result = g_pR5net->GetServerByToken(serverListing, svHiddenServerRequestMessage, svToken); // Send token connect request. + bool result = g_pMasterServer->GetServerByToken(serverListing, svHiddenServerRequestMessage, svToken); // Send token connect request. if (!serverListing.m_svHostName.empty()) { svHiddenServerRequestMessage = "Found Server: " + serverListing.m_svHostName; diff --git a/r5dev/tier1/IConVar.cpp b/r5dev/tier1/IConVar.cpp index 055cad91..db2a71a4 100644 --- a/r5dev/tier1/IConVar.cpp +++ b/r5dev/tier1/IConVar.cpp @@ -147,8 +147,10 @@ void ConVar::Init(void) const net_tracePayload = new ConVar("net_tracePayload" , "0", FCVAR_DEVELOPMENTONLY | FCVAR_CHEAT , "Log the payload of the send/recv datagram to a file on the disk.", false, 0.f, false, 0.f, nullptr, nullptr); net_encryptionEnable = new ConVar("net_encryptionEnable" , "1", FCVAR_DEVELOPMENTONLY | FCVAR_REPLICATED , "Use AES encryption on game packets.", false, 0.f, false, 0.f, nullptr, nullptr); net_useRandomKey = new ConVar("net_useRandomKey" , "1" , FCVAR_RELEASE , "Use random base64 netkey for game packets.", false, 0.f, false, 0.f, nullptr, nullptr); - r5net_matchmaking_hostname = new ConVar("r5net_matchmaking_hostname", "127.0.0.1:3000" , FCVAR_RELEASE , "Holds the R5Net matchmaking hostname.", false, 0.f, false, 0.f, nullptr, nullptr); - r5net_show_debug = new ConVar("r5net_show_debug" , "0" , FCVAR_DEVELOPMENTONLY, "Shows debug output for R5Net.", false, 0.f, false, 0.f, nullptr, nullptr); + //------------------------------------------------------------------------- + // NETWORKSYSTEM | + pylon_matchmaking_hostname = new ConVar("pylon_matchmaking_hostname", "127.0.0.1:3000" , FCVAR_RELEASE , "Holds the pylon matchmaking hostname.", false, 0.f, false, 0.f, nullptr, nullptr); + pylon_showdebug = new ConVar("pylon_showdebug" , "0" , FCVAR_DEVELOPMENTONLY, "Shows debug output for pylon.", false, 0.f, false, 0.f, nullptr, nullptr); //------------------------------------------------------------------------- // RTECH API | //------------------------------------------------------------------------- diff --git a/r5dev/tier1/cvar.cpp b/r5dev/tier1/cvar.cpp index 4b45e2a6..e9ec1ffb 100644 --- a/r5dev/tier1/cvar.cpp +++ b/r5dev/tier1/cvar.cpp @@ -126,8 +126,8 @@ ConVar* net_tracePayload = nullptr; ConVar* net_encryptionEnable = nullptr; ConVar* net_useRandomKey = nullptr; ConVar* net_usesocketsforloopback = nullptr; -ConVar* r5net_matchmaking_hostname = nullptr; -ConVar* r5net_show_debug = nullptr; +ConVar* pylon_matchmaking_hostname = nullptr; +ConVar* pylon_showdebug = nullptr; //----------------------------------------------------------------------------- // RTECH API | //----------------------------------------------------------------------------- diff --git a/r5dev/tier1/cvar.h b/r5dev/tier1/cvar.h index 2236250d..cfa57e97 100644 --- a/r5dev/tier1/cvar.h +++ b/r5dev/tier1/cvar.h @@ -123,8 +123,8 @@ extern ConVar* net_tracePayload; extern ConVar* net_encryptionEnable; extern ConVar* net_useRandomKey; extern ConVar* net_usesocketsforloopback; -extern ConVar* r5net_matchmaking_hostname; -extern ConVar* r5net_show_debug; +extern ConVar* pylon_matchmaking_hostname; +extern ConVar* pylon_showdebug; //------------------------------------------------------------------------- // RTECH API | //------------------------------------------------------------------------- diff --git a/r5dev/vproj/clientsdk.vcxproj b/r5dev/vproj/clientsdk.vcxproj index 0614882a..5e72faa3 100644 --- a/r5dev/vproj/clientsdk.vcxproj +++ b/r5dev/vproj/clientsdk.vcxproj @@ -64,7 +64,6 @@ - NotUsing NotUsing @@ -198,7 +197,6 @@ - diff --git a/r5dev/vproj/clientsdk.vcxproj.filters b/r5dev/vproj/clientsdk.vcxproj.filters index 7f33fe05..b0f411e2 100644 --- a/r5dev/vproj/clientsdk.vcxproj.filters +++ b/r5dev/vproj/clientsdk.vcxproj.filters @@ -303,9 +303,6 @@ sdk\mathlib - - sdk\networksystem - sdk\squirrel @@ -959,9 +956,6 @@ sdk\mathlib - - sdk\networksystem - sdk\networksystem diff --git a/r5dev/vproj/dedicated.vcxproj b/r5dev/vproj/dedicated.vcxproj index 64f211eb..3bd18fae 100644 --- a/r5dev/vproj/dedicated.vcxproj +++ b/r5dev/vproj/dedicated.vcxproj @@ -195,7 +195,6 @@ - @@ -484,7 +483,6 @@ - NotUsing NotUsing diff --git a/r5dev/vproj/dedicated.vcxproj.filters b/r5dev/vproj/dedicated.vcxproj.filters index a1dda7ae..728ad4cb 100644 --- a/r5dev/vproj/dedicated.vcxproj.filters +++ b/r5dev/vproj/dedicated.vcxproj.filters @@ -573,9 +573,6 @@ windows - - sdk\networksystem - sdk\mathlib @@ -1193,9 +1190,6 @@ windows - - sdk\networksystem - sdk\mathlib diff --git a/r5dev/vproj/gamesdk.vcxproj b/r5dev/vproj/gamesdk.vcxproj index a904338e..985521cf 100644 --- a/r5dev/vproj/gamesdk.vcxproj +++ b/r5dev/vproj/gamesdk.vcxproj @@ -70,7 +70,6 @@ - NotUsing NotUsing @@ -214,7 +213,6 @@ - diff --git a/r5dev/vproj/gamesdk.vcxproj.filters b/r5dev/vproj/gamesdk.vcxproj.filters index 704387a7..1059b490 100644 --- a/r5dev/vproj/gamesdk.vcxproj.filters +++ b/r5dev/vproj/gamesdk.vcxproj.filters @@ -318,9 +318,6 @@ sdk\mathlib - - sdk\networksystem - sdk\squirrel @@ -995,9 +992,6 @@ sdk\mathlib - - sdk\networksystem - sdk\networksystem