From 1058a6fa10ae43d14e5b42f60593a2d0d5fc9408 Mon Sep 17 00:00:00 2001 From: Amos <48657826+Mauler125@users.noreply.github.com> Date: Fri, 4 Mar 2022 12:22:17 +0100 Subject: [PATCH] Use unicode character set instead and light cleanup/bug fixes --- r5dev/core/stdafx.h | 1 + r5dev/gameui/IBrowser.cpp | 142 +++++++++++++++++----------------- r5dev/gameui/IBrowser.h | 48 ++++++------ r5dev/public/utility.cpp | 16 +++- r5dev/tier0/completion.cpp | 2 +- r5dev/tier1/NetAdr2.cpp | 56 +++++++++----- r5dev/tier1/NetAdr2.h | 2 +- r5dev/tier2/socketcreator.cpp | 4 +- r5dev/vpklib/packedstore.cpp | 16 ++-- r5dev/vproj/dedicated.vcxproj | 8 +- r5dev/vproj/gamesdk.vcxproj | 6 +- r5dev/windows/console.cpp | 6 +- 12 files changed, 167 insertions(+), 140 deletions(-) diff --git a/r5dev/core/stdafx.h b/r5dev/core/stdafx.h index d688355d..7b34fb74 100644 --- a/r5dev/core/stdafx.h +++ b/r5dev/core/stdafx.h @@ -4,6 +4,7 @@ #define WIN32_LEAN_AND_MEAN // Prevent winsock2 redefinition. #include #include +#include #include #include diff --git a/r5dev/gameui/IBrowser.cpp b/r5dev/gameui/IBrowser.cpp index 397433d9..9a9fcdd4 100644 --- a/r5dev/gameui/IBrowser.cpp +++ b/r5dev/gameui/IBrowser.cpp @@ -23,19 +23,20 @@ History: #include "engine/net_chan.h" #include "engine/sys_utils.h" #include "engine/host_state.h" -#include "server/server.h" -#include "client/IVEngineClient.h" #include "networksystem/serverlisting.h" #include "networksystem/r5net.h" -#include "vpc/keyvalues.h" #include "squirrel/sqinit.h" -#include "gameui/IBrowser.h" #include "squirrel/sqapi.h" +#include "server/server.h" +#include "client/IVEngineClient.h" +#include "vpc/keyvalues.h" +#include "vpklib/packedstore.h" +#include "gameui/IBrowser.h" //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- -IBrowser::IBrowser() +IBrowser::IBrowser(void) { memset(m_chServerConnStringBuffer, 0, sizeof(m_chServerConnStringBuffer)); @@ -73,7 +74,7 @@ IBrowser::IBrowser() /* Obtain handle to module */ static HGLOBAL rcData = NULL; HMODULE handle; - GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS | GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT, (LPCSTR)"unnamed", &handle); + GetModuleHandleExA(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS | GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT, (LPCSTR)"unnamed", &handle); HRSRC rc = FindResource(handle, MAKEINTRESOURCE(IDB_PNG1), MAKEINTRESOURCE(PNG)); /* Obtain assets from 'rsrc' */ if (rc != NULL) @@ -86,7 +87,7 @@ IBrowser::IBrowser() //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- -IBrowser::~IBrowser() +IBrowser::~IBrowser(void) { //delete r5net; } @@ -94,7 +95,7 @@ IBrowser::~IBrowser() //----------------------------------------------------------------------------- // Purpose: draws the main browser front-end //----------------------------------------------------------------------------- -void IBrowser::Draw(const char* title, bool* bDraw) +void IBrowser::Draw(const char* pszTitle, bool* bDraw) { if (!m_bInitialized) { @@ -109,7 +110,7 @@ void IBrowser::Draw(const char* title, bool* bDraw) //ImGui::ShowDemoWindow(); } - if (!ImGui::Begin(title, bDraw)) + if (!ImGui::Begin(pszTitle, bDraw)) { ImGui::End(); return; @@ -124,19 +125,19 @@ void IBrowser::Draw(const char* title, bool* bDraw) ImGui::SetNextWindowSize(ImVec2(840, 600), ImGuiCond_FirstUseEver); ImGui::SetWindowPos(ImVec2(-500, 50), ImGuiCond_FirstUseEver); - ImGui::Begin(title, NULL, ImGuiWindowFlags_NoScrollbar); + ImGui::Begin(pszTitle, NULL, ImGuiWindowFlags_NoScrollbar); { CompMenu(); switch (eCurrentSection) { - case ESection::SERVER_BROWSER: + case eSection::SERVER_BROWSER: ServerBrowserSection(); break; - case ESection::HOST_SERVER: + case eSection::HOST_SERVER: HostServerSection(); break; - case ESection::SETTINGS: + case eSection::SETTINGS: SettingsSection(); break; default: @@ -149,20 +150,20 @@ void IBrowser::Draw(const char* title, bool* bDraw) //----------------------------------------------------------------------------- // Purpose: draws the compmenu //----------------------------------------------------------------------------- -void IBrowser::CompMenu() +void IBrowser::CompMenu(void) { ImGui::BeginTabBar("CompMenu"); if (ImGui::TabItemButton("Server Browser")) { - SetSection(ESection::SERVER_BROWSER); + SetSection(eSection::SERVER_BROWSER); } if (ImGui::TabItemButton("Host Server")) { - SetSection(ESection::HOST_SERVER); + SetSection(eSection::HOST_SERVER); } if (ImGui::TabItemButton("Settings")) { - SetSection(ESection::SETTINGS); + SetSection(eSection::SETTINGS); } ImGui::EndTabBar(); } @@ -170,7 +171,7 @@ void IBrowser::CompMenu() //----------------------------------------------------------------------------- // Purpose: draws the server browser section //----------------------------------------------------------------------------- -void IBrowser::ServerBrowserSection() +void IBrowser::ServerBrowserSection(void) { ImGui::BeginGroup(); m_imServerBrowserFilter.Draw(); @@ -183,8 +184,8 @@ void IBrowser::ServerBrowserSection() ImGui::TextColored(ImVec4(1.00f, 0.00f, 0.00f, 1.00f), m_szServerListMessage.c_str()); ImGui::Separator(); - const float FooterHeight = ImGui::GetStyle().ItemSpacing.y + ImGui::GetFrameHeightWithSpacing(); - ImGui::BeginChild("ServerListChild", { 0, -FooterHeight }, true, ImGuiWindowFlags_AlwaysVerticalScrollbar); + const float fFooterHeight = ImGui::GetStyle().ItemSpacing.y + ImGui::GetFrameHeightWithSpacing(); + ImGui::BeginChild("ServerListChild", { 0, -fFooterHeight }, true, ImGuiWindowFlags_AlwaysVerticalScrollbar); if (m_bDefaultTheme) { ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2{ 8.f, 0.f }); } else { ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(4.f, 0.f)); } @@ -200,32 +201,32 @@ void IBrowser::ServerBrowserSection() for (ServerListing& server : m_vServerList) { - const char* name = server.svServerName.c_str(); - const char* map = server.svMapName.c_str(); - const char* port = server.svPort.c_str(); - const char* playlist = server.svPlaylist.c_str(); + const char* pszHostName = server.svServerName.c_str(); + const char* pszHostMap = server.svMapName.c_str(); + const char* pszHostPort = server.svPort.c_str(); + const char* pszPlaylist = server.svPlaylist.c_str(); - if (m_imServerBrowserFilter.PassFilter(name) - || m_imServerBrowserFilter.PassFilter(map) - || m_imServerBrowserFilter.PassFilter(port)) + if (m_imServerBrowserFilter.PassFilter(pszHostName) + || m_imServerBrowserFilter.PassFilter(pszHostMap) + || m_imServerBrowserFilter.PassFilter(pszHostPort)) { ImGui::TableNextColumn(); - ImGui::Text(name); + ImGui::Text(pszHostName); ImGui::TableNextColumn(); - ImGui::Text(map); + ImGui::Text(pszHostMap); ImGui::TableNextColumn(); - ImGui::Text(port); + ImGui::Text(pszHostPort); ImGui::TableNextColumn(); - ImGui::Text(playlist); + ImGui::Text(pszPlaylist); ImGui::TableNextColumn(); - std::string selectButtonText = "Connect##"; - selectButtonText += (server.svServerName + server.svIpAddress + server.svMapName); + std::string svConnectBtn = "Connect##"; + svConnectBtn += (server.svServerName + server.svIpAddress + server.svMapName); - if (ImGui::Button(selectButtonText.c_str())) + if (ImGui::Button(svConnectBtn.c_str())) { ConnectToServer(server.svIpAddress, server.svPort, server.svEncryptionKey); } @@ -264,7 +265,7 @@ void IBrowser::ServerBrowserSection() //----------------------------------------------------------------------------- // Purpose: refreshes the server browser list with available servers //----------------------------------------------------------------------------- -void IBrowser::RefreshServerList() +void IBrowser::RefreshServerList(void) { static bool bThreadLocked = false; @@ -288,7 +289,7 @@ void IBrowser::RefreshServerList() //----------------------------------------------------------------------------- // Purpose: get server list from pylon. //----------------------------------------------------------------------------- -void IBrowser::GetServerList() +void IBrowser::GetServerList(void) { m_vServerList.clear(); m_szServerListMessage.clear(); @@ -298,37 +299,37 @@ void IBrowser::GetServerList() //----------------------------------------------------------------------------- // Purpose: connects to specified server //----------------------------------------------------------------------------- -void IBrowser::ConnectToServer(const std::string& ip, const std::string& port, const std::string& encKey) +void IBrowser::ConnectToServer(const std::string& svIp, const std::string& svPort, const std::string& svNetKey) { - if (!encKey.empty()) + if (!svNetKey.empty()) { - ChangeEncryptionKeyTo(encKey); + ChangeEncryptionKeyTo(svNetKey); } std::stringstream cmd; - cmd << "connect " << ip << ":" << port; + cmd << "connect " << svIp << ":" << svPort; ProcessCommand(cmd.str().c_str()); } //----------------------------------------------------------------------------- // Purpose: connects to specified server //----------------------------------------------------------------------------- -void IBrowser::ConnectToServer(const std::string& connString, const std::string& encKey) +void IBrowser::ConnectToServer(const std::string& svServer, const std::string& svNetKey) { - if (!encKey.empty()) + if (!svNetKey.empty()) { - ChangeEncryptionKeyTo(encKey); + ChangeEncryptionKeyTo(svNetKey); } std::stringstream cmd; - cmd << "connect " << connString; + cmd << "connect " << svServer; ProcessCommand(cmd.str().c_str()); } //----------------------------------------------------------------------------- // Purpose: Launch server with given parameters //----------------------------------------------------------------------------- -void IBrowser::LaunchServer() +void IBrowser::LaunchServer(void) { DevMsg(eDLL_T::ENGINE, "Starting Server with name '%s', map '%s' and playlist '%s'\n", m_Server.svServerName.c_str(), m_Server.svMapName.c_str(), m_Server.svPlaylist.c_str()); @@ -352,7 +353,7 @@ void IBrowser::LaunchServer() //----------------------------------------------------------------------------- // Purpose: draws the hidden private server modal //----------------------------------------------------------------------------- -void IBrowser::HiddenServersModal() +void IBrowser::HiddenServersModal(void) { bool modalOpen = true; if (ImGui::BeginPopupModal("Connect to Private Server##HiddenServersConnectModal", &modalOpen)) @@ -417,9 +418,9 @@ void IBrowser::HiddenServersModal() //----------------------------------------------------------------------------- // Purpose: draws the host section //----------------------------------------------------------------------------- -void IBrowser::HostServerSection() +void IBrowser::HostServerSection(void) { - static std::string szServerNameErr = ""; + static std::string svServerNameErr = ""; ImGui::InputTextWithHint("##ServerHost_ServerName", "Server Name (Required)", &m_Server.svServerName); ImGui::Spacing(); @@ -481,7 +482,7 @@ void IBrowser::HostServerSection() { if (ImGui::Button("Start Server##ServerHost_StartServerButton", ImVec2(ImGui::GetWindowSize().x, 32))) { - szServerNameErr.clear(); + svServerNameErr.clear(); if (!m_Server.svServerName.empty() && !m_Server.svPlaylist.empty() && !m_Server.svMapName.empty()) { LaunchServer(); // Launch server. @@ -491,15 +492,15 @@ void IBrowser::HostServerSection() { if (m_Server.svServerName.empty()) { - szServerNameErr = "No Server Name assigned."; + svServerNameErr = "No Server Name assigned."; } else if (m_Server.svPlaylist.empty()) { - szServerNameErr = "No Playlist assigned."; + svServerNameErr = "No Playlist assigned."; } else if (m_Server.svMapName.empty()) { - szServerNameErr = "'levelname' was empty."; + svServerNameErr = "'levelname' was empty."; } } } @@ -507,7 +508,7 @@ void IBrowser::HostServerSection() if (ImGui::Button("Force Start##ServerHost_ForceStart", ImVec2(ImGui::GetWindowSize().x, 32))) { - szServerNameErr.clear(); + svServerNameErr.clear(); if (!m_Server.svPlaylist.empty() && !m_Server.svMapName.empty()) { LaunchServer(); // Launch server. @@ -517,16 +518,16 @@ void IBrowser::HostServerSection() { if (m_Server.svPlaylist.empty()) { - szServerNameErr = "No Playlist assigned."; + svServerNameErr = "No Playlist assigned."; } else if (m_Server.svMapName.empty()) { - szServerNameErr = "'levelname' was empty."; + svServerNameErr = "'levelname' was empty."; } } } - ImGui::TextColored(ImVec4(1.00f, 0.00f, 0.00f, 1.00f), szServerNameErr.c_str()); + ImGui::TextColored(ImVec4(1.00f, 0.00f, 0.00f, 1.00f), svServerNameErr.c_str()); ImGui::TextColored(m_iv4HostRequestMessageColor, m_szHostRequestMessage.c_str()); if (!m_szHostToken.empty()) { @@ -551,7 +552,7 @@ void IBrowser::HostServerSection() } else { - szServerNameErr = "Failed to change level: 'levelname' was empty."; + svServerNameErr = "Failed to change level: 'levelname' was empty."; } } @@ -574,23 +575,23 @@ void IBrowser::HostServerSection() //----------------------------------------------------------------------------- // Purpose: updates the hoster's status //----------------------------------------------------------------------------- -void IBrowser::UpdateHostingStatus() +void IBrowser::UpdateHostingStatus(void) { if (!g_pHostState || !g_pCVar) { return; } - eHostingStatus = g_pHostState->m_bActiveGame ? EHostStatus::HOSTING : EHostStatus::NOT_HOSTING; // Are we hosting a server? + eHostingStatus = g_pHostState->m_bActiveGame ? eHostStatus::HOSTING : eHostStatus::NOT_HOSTING; // Are we hosting a server? switch (eHostingStatus) { - case EHostStatus::NOT_HOSTING: + case eHostStatus::NOT_HOSTING: { m_szHostRequestMessage.clear(); m_iv4HostRequestMessageColor = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); break; } - case EHostStatus::HOSTING: + case eHostStatus::HOSTING: { if (eServerVisibility == EServerVisibility::OFFLINE) { @@ -626,12 +627,13 @@ void IBrowser::UpdateHostingStatus() //----------------------------------------------------------------------------- // Purpose: sends the hosting POST request to the comp server //----------------------------------------------------------------------------- -void IBrowser::SendHostingPostRequest() +void IBrowser::SendHostingPostRequest(void) { m_szHostToken = std::string(); DevMsg(eDLL_T::CLIENT, "Sending PostServerHost request\n"); bool result = g_pR5net->PostServerHost(m_szHostRequestMessage, m_szHostToken, - ServerListing{ + ServerListing + { m_Server.svServerName, std::string(g_pHostState->m_levelName), "", @@ -666,9 +668,9 @@ void IBrowser::SendHostingPostRequest() //----------------------------------------------------------------------------- // Purpose: executes submitted commands in a separate thread //----------------------------------------------------------------------------- -void IBrowser::ProcessCommand(const char* command_line) +void IBrowser::ProcessCommand(const char* pszCommand) { - std::thread t(IVEngineClient_CommandExecute, this, command_line); + std::thread t(IVEngineClient_CommandExecute, this, pszCommand); t.detach(); // Detach from render thread. // This is to avoid a race condition. @@ -678,7 +680,7 @@ void IBrowser::ProcessCommand(const char* command_line) //----------------------------------------------------------------------------- // Purpose: draws the settings section //----------------------------------------------------------------------------- -void IBrowser::SettingsSection() +void IBrowser::SettingsSection(void) { ImGui::InputTextWithHint("Hostname##MatchmakingServerString", "Matchmaking Server String", &m_szMatchmakingHostName); if (ImGui::Button("Update Hostname")) @@ -700,7 +702,7 @@ void IBrowser::SettingsSection() //----------------------------------------------------------------------------- // Purpose: regenerates encryption key //----------------------------------------------------------------------------- -void IBrowser::RegenerateEncryptionKey() +void IBrowser::RegenerateEncryptionKey(void) const { HNET_GenerateKey(); } @@ -708,15 +710,15 @@ void IBrowser::RegenerateEncryptionKey() //----------------------------------------------------------------------------- // Purpose: changes encryption key to specified one //----------------------------------------------------------------------------- -void IBrowser::ChangeEncryptionKeyTo(const std::string& str) +void IBrowser::ChangeEncryptionKeyTo(const std::string& svNetKey) const { - HNET_SetKey(str); + HNET_SetKey(svNetKey); } //----------------------------------------------------------------------------- // Purpose: sets the browser front-end style //----------------------------------------------------------------------------- -void IBrowser::SetStyleVar() +void IBrowser::SetStyleVar(void) { ImGuiStyle& style = ImGui::GetStyle(); ImVec4* colors = style.Colors; diff --git a/r5dev/gameui/IBrowser.h b/r5dev/gameui/IBrowser.h index eb902845..2d3f269b 100644 --- a/r5dev/gameui/IBrowser.h +++ b/r5dev/gameui/IBrowser.h @@ -3,14 +3,14 @@ #include "networksystem/serverlisting.h" #include "networksystem/r5net.h" -enum class ESection +enum class eSection { SERVER_BROWSER, HOST_SERVER, SETTINGS }; -enum class EHostStatus +enum class eHostStatus { NOT_HOSTING, HOSTING @@ -33,40 +33,40 @@ public: // Enum Vars // //////////////////// - ESection eCurrentSection = ESection::SERVER_BROWSER; - EHostStatus eHostingStatus = EHostStatus::NOT_HOSTING; + eSection eCurrentSection = eSection::SERVER_BROWSER; + eHostStatus eHostingStatus = eHostStatus::NOT_HOSTING; EServerVisibility eServerVisibility = EServerVisibility::OFFLINE; public: //////////////////// // Funcs // //////////////////// - IBrowser(); - ~IBrowser(); + IBrowser(void); + ~IBrowser(void); - void Draw(const char* title, bool* bDraw); - void CompMenu(); + void Draw(const char* pszTitle, bool* bDraw); + void CompMenu(void); - void ServerBrowserSection(); - void RefreshServerList(); - void GetServerList(); + void ServerBrowserSection(void); + void RefreshServerList(void); + void GetServerList(void); - void ConnectToServer(const std::string& ip, const std::string& port, const std::string& encKey); - void ConnectToServer(const std::string& connString, const std::string& encKey); + void ConnectToServer(const std::string& svIp, const std::string& svPort, const std::string& svNetKey); + void ConnectToServer(const std::string& svServer, const std::string& svNetKey); - void HiddenServersModal(); - void HostServerSection(); + void HiddenServersModal(void); + void HostServerSection(void); - void UpdateHostingStatus(); - void SendHostingPostRequest(); + void UpdateHostingStatus(void); + void SendHostingPostRequest(void); - void ProcessCommand(const char* command_line); - void LaunchServer(); + void ProcessCommand(const char* pszCommand); + void LaunchServer(void); - void SettingsSection(); - void RegenerateEncryptionKey(); - void ChangeEncryptionKeyTo(const std::string& str); + void SettingsSection(void); + void RegenerateEncryptionKey(void) const; + void ChangeEncryptionKeyTo(const std::string& svNetKey) const; - void SetStyleVar(); + void SetStyleVar(void); //////////////////// // Server Browser // @@ -119,7 +119,7 @@ public: int m_nLockedIconWidth = 0; int m_nLockedIconHeight = 0; - void SetSection(ESection section) + void SetSection(eSection section) { eCurrentSection = section; } diff --git a/r5dev/public/utility.cpp b/r5dev/public/utility.cpp index 73a2b517..9cccac81 100644 --- a/r5dev/public/utility.cpp +++ b/r5dev/public/utility.cpp @@ -35,13 +35,18 @@ MODULEINFO GetModuleInfo(const char* szModule) { MODULEINFO modinfo = { 0 }; - HMODULE hModule = GetModuleHandle(szModule); + wchar_t szWtext[256]{}; + mbstowcs(szWtext, szModule, strlen(szModule) + 1); + + HMODULE hModule = GetModuleHandle(szWtext); if (hModule == INVALID_HANDLE_VALUE) { return modinfo; } - - GetModuleInformation(GetCurrentProcess(), hModule, &modinfo, sizeof(MODULEINFO)); + if (hModule) + { + GetModuleInformation(GetCurrentProcess(), hModule, &modinfo, sizeof(MODULEINFO)); + } return modinfo; } @@ -129,8 +134,11 @@ void DbgPrint(LPCSTR sFormat, ...) int length = vsnprintf(sBuffer, sizeof(sBuffer), sFormat, sArgs); va_end(sArgs); + wchar_t szWtext[512]{}; // Convert to LPCWSTR. + mbstowcs(szWtext, sBuffer, strlen(sBuffer) + 1); + // Output the string to the debugger. - OutputDebugString(sBuffer); + OutputDebugString(szWtext); } /////////////////////////////////////////////////////////////////////////////// diff --git a/r5dev/tier0/completion.cpp b/r5dev/tier0/completion.cpp index 8ba47902..64afbe92 100644 --- a/r5dev/tier0/completion.cpp +++ b/r5dev/tier0/completion.cpp @@ -643,7 +643,7 @@ _NET_SetKey_f_CompletionFunc */ void _NET_SetKey_f_CompletionFunc(const CCommand& args) { - if (args.ArgC() < 2) // Do we atleast have 2 arguments? + if (args.ArgC() < 2) { return; } diff --git a/r5dev/tier1/NetAdr2.cpp b/r5dev/tier1/NetAdr2.cpp index 247df5e0..2385b0fb 100644 --- a/r5dev/tier1/NetAdr2.cpp +++ b/r5dev/tier1/NetAdr2.cpp @@ -37,7 +37,7 @@ CNetAdr2::CNetAdr2(std::string svInAdr, std::string svInPort) svInAdr = "127.0.0.1"; } - if (strstr(svInAdr.c_str(), "[")) + if (strstr(svInAdr.c_str(), "[") || strstr(svInAdr.c_str(), "]")) { svInAdr = GetBase(svInAdr); } @@ -256,10 +256,6 @@ std::string CNetAdr2::GetIP(bool bBaseOnly) const { return "loopback"; } - else if (GetType() == netadrtype_t::NA_BROADCAST) - { - return "broadcast"; - } else if (GetType() == netadrtype_t::NA_IP) { if (bBaseOnly) @@ -286,6 +282,10 @@ std::string CNetAdr2::GetPort(void) const static std::regex rx(".*\\]:"); svport = std::regex_replace(svport, rx, ""); + if (!IsValidPort(svport)) + { + return "37015"; + } return svport; } @@ -298,6 +298,10 @@ std::string CNetAdr2::GetPort(std::string svInPort) const static std::regex rx(".*\\]:"); svInPort = std::regex_replace(svInPort, rx, ""); + if (!IsValidPort(svInPort)) + { + return "37015"; + } return svInPort; } @@ -407,13 +411,7 @@ void CNetAdr2::ToSockadr(sockaddr_storage* pSadr) const { if (GetVersion() == netadrversion_t::NA_V4) { - if (GetType() == netadrtype_t::NA_BROADCAST) - { - reinterpret_cast(pSadr)->sin_family = AF_INET; - reinterpret_cast(pSadr)->sin_port = htons(stoi(GetPort())); - reinterpret_cast(pSadr)->sin_addr.s_addr = INADDR_BROADCAST; - } - else if (GetType() == netadrtype_t::NA_IP) + if (GetType() == netadrtype_t::NA_IP) { reinterpret_cast(pSadr)->sin_family = AF_INET; reinterpret_cast(pSadr)->sin_port = htons(stoi(GetPort())); @@ -461,11 +459,14 @@ void CNetAdr2::ToAdrinfo(addrinfo* pHint) const results = getaddrinfo(GetBase().c_str(), GetPort().c_str(), &hint, &pHint); if (results != 0) { + WCHAR* wszError = gai_strerror(results); + _bstr_t bStr(wszError); + const char* pszError = bStr; // TODO: Implement 'Warning(..)' instead! #ifndef NETCONSOLE - DevMsg(eDLL_T::ENGINE, "Address info translation failed (%s)\n", gai_strerror(results)); + DevMsg(eDLL_T::ENGINE, "Address info translation failed (%s)\n", pszError); #else - printf("Address info translation failed (%s)\n", gai_strerror(results)); + printf("Address info translation failed (%s)\n", pszError); #endif // !NETCONSOLE } } @@ -479,16 +480,34 @@ void CNetAdr2::ToAdrinfo(addrinfo* pHint) const results = getaddrinfo(GetBase().c_str(), GetPort().c_str(), &hint, &pHint); if (results != 0) { + WCHAR* wszError = gai_strerror(results); + _bstr_t bStr(wszError); + const char* pszError = bStr; // TODO: Implement 'Warning(..)' instead! #ifndef NETCONSOLE - DevMsg(eDLL_T::ENGINE, "Address info translation failed (%s)\n", gai_strerror(results)); + DevMsg(eDLL_T::ENGINE, "Address info translation failed (%s)\n", pszError); #else - printf("Address info translation failed (%s)\n", gai_strerror(results)); + printf("Address info translation failed (%s)\n", pszError); #endif // !NETCONSOLE } } } +//----------------------------------------------------------------------------- +// Purpose: returns true if this is a valid port string. +//----------------------------------------------------------------------------- +bool CNetAdr2::IsValidPort(const std::string& svInPort) const +{ + for (char const& c : svInPort) + { + if (std::isdigit(c) == 0) + { + return false; + } + } + return true; +} + //----------------------------------------------------------------------------- // Purpose: returns true if we are localhost. //----------------------------------------------------------------------------- @@ -551,11 +570,6 @@ bool CNetAdr2::CompareAdr(const CNetAdr2& netAdr2, bool bBaseOnly) const return true; } - if (GetType() == netadrtype_t::NA_BROADCAST) - { - return true; - } - if (GetType() == netadrtype_t::NA_IP) { if (!bBaseOnly && diff --git a/r5dev/tier1/NetAdr2.h b/r5dev/tier1/NetAdr2.h index 54353a68..4e9c3c16 100644 --- a/r5dev/tier1/NetAdr2.h +++ b/r5dev/tier1/NetAdr2.h @@ -29,7 +29,6 @@ enum class netadrtype_t { NA_NULL = 0, NA_LOOPBACK, - NA_BROADCAST, NA_IP, }; @@ -72,6 +71,7 @@ public: void ToSockadr(sockaddr_storage* pSadr) const; void ToAdrinfo(addrinfo* pHint) const; + bool IsValidPort(const std::string& svInPort) const; bool IsLocalhost(void) const; bool IsLoopback(void) const; bool IsReservedAdr(void) const; diff --git a/r5dev/tier2/socketcreator.cpp b/r5dev/tier2/socketcreator.cpp index e7251fbf..22c59710 100644 --- a/r5dev/tier2/socketcreator.cpp +++ b/r5dev/tier2/socketcreator.cpp @@ -93,9 +93,9 @@ bool CSocketCreator::ConfigureListenSocket(int iSocket) if (results == -1) { #ifndef NETCONSOLE - DevMsg(eDLL_T::ENGINE, "Socket accept 'ioctl(FIONBIO)' failed (%i)\n", WSAGetLastError()); + DevMsg(eDLL_T::ENGINE, "Socket accept 'ioctl(FIONBIO)' failed (%s)\n", NET_ErrorString(WSAGetLastError())); #else - printf("Socket accept 'ioctl(FIONBIO)' failed (%i)\n", WSAGetLastError()); + printf("Socket accept 'ioctl(FIONBIO)' failed (%s)\n", NET_ErrorString(WSAGetLastError())); #endif // !NETCONSOLE return false; } diff --git a/r5dev/vpklib/packedstore.cpp b/r5dev/vpklib/packedstore.cpp index be6fc8ab..a824bca0 100644 --- a/r5dev/vpklib/packedstore.cpp +++ b/r5dev/vpklib/packedstore.cpp @@ -1,11 +1,4 @@ -#include "core/stdafx.h" -#include "tier0/cvar.h" -#include "mathlib/adler32.h" -#include "mathlib/crc32.h" -#include "engine/sys_utils.h" -#include "vpklib/packedstore.h" - -/*********************************************************************** +/*********************************************************************** * ██████╗ ██████╗ ██╗ ██╗██████╗ ██╗ ██╗ ██╗ ██╗██████╗ * * ██╔══██╗╚════██╗ ██║ ██║██╔══██╗██║ ██╔╝ ██║ ██║██╔══██╗ * * ██████╔╝ █████╔╝ ██║ ██║██████╔╝█████╔╝ ██║ ██║██████╔╝ * @@ -14,6 +7,13 @@ * ╚═╝ ╚═╝╚══════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝╚═════╝ * ***********************************************************************/ +#include "core/stdafx.h" +#include "tier0/cvar.h" +#include "mathlib/adler32.h" +#include "mathlib/crc32.h" +#include "engine/sys_utils.h" +#include "vpklib/packedstore.h" + //----------------------------------------------------------------------------- // Purpose: initialize parameters for compression algorithm //----------------------------------------------------------------------------- diff --git a/r5dev/vproj/dedicated.vcxproj b/r5dev/vproj/dedicated.vcxproj index 8478ff2e..706d4dba 100644 --- a/r5dev/vproj/dedicated.vcxproj +++ b/r5dev/vproj/dedicated.vcxproj @@ -43,7 +43,7 @@ DynamicLibrary true v143 - MultiByte + Unicode Static @@ -51,7 +51,7 @@ false v143 true - MultiByte + Unicode Static @@ -126,7 +126,7 @@ true _DEBUG;_CONSOLE;%(PreprocessorDefinitions) true - /D DEDICATED %(AdditionalOptions) + /D DEDICATED /D _CRT_SECURE_NO_WARNINGS %(AdditionalOptions) Use core\stdafx.h stdcpp17 @@ -155,7 +155,7 @@ true NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true - /D DEDICATED %(AdditionalOptions) + /D DEDICATED /D _CRT_SECURE_NO_WARNINGS %(AdditionalOptions) Use core\stdafx.h stdcpp17 diff --git a/r5dev/vproj/gamesdk.vcxproj b/r5dev/vproj/gamesdk.vcxproj index 18f83abf..4391e283 100644 --- a/r5dev/vproj/gamesdk.vcxproj +++ b/r5dev/vproj/gamesdk.vcxproj @@ -388,7 +388,7 @@ DynamicLibrary true v143 - MultiByte + Unicode Static @@ -396,7 +396,7 @@ false v143 true - MultiByte + Unicode Static @@ -491,6 +491,7 @@ stdcpp17 stdc17 + /D _CRT_SECURE_NO_WARNINGS %(AdditionalOptions) Windows @@ -530,6 +531,7 @@ true + /D _CRT_SECURE_NO_WARNINGS %(AdditionalOptions) Windows diff --git a/r5dev/windows/console.cpp b/r5dev/windows/console.cpp index 0484f781..9492ee1c 100644 --- a/r5dev/windows/console.cpp +++ b/r5dev/windows/console.cpp @@ -70,7 +70,7 @@ void Console_Init() // Create the console window if (AllocConsole() == FALSE) { - OutputDebugString("Failed to create console window!\n"); + OutputDebugStringA("Failed to create console window!\n"); return; } @@ -87,7 +87,7 @@ void Console_Init() fclose(sBuildTxt); } } - SetConsoleTitle(sBuildBuf); + SetConsoleTitleA(sBuildBuf); //-- Open input/output streams FILE* fDummy; @@ -117,7 +117,7 @@ void Console_Init() if (!SetConsoleMode(hOutput, dwMode)) // Some editions of Windows have 'VirtualTerminalLevel' disabled by default. { // Warn the user if 'VirtualTerminalLevel' could not be set on users environment. - MessageBox(NULL, "Failed to set console mode 'VirtualTerminalLevel'.\nPlease omit the '-ansiclr' parameter and restart \nthe game if output logging appears distorted.", "SDK Warning", MB_ICONEXCLAMATION | MB_OK); + MessageBoxA(NULL, "Failed to set console mode 'VirtualTerminalLevel'.\nPlease omit the '-ansiclr' parameter and restart \nthe game if output logging appears distorted.", "SDK Warning", MB_ICONEXCLAMATION | MB_OK); } SetConsoleBackgroundColor(0x0000); AnsiColors_Init();