diff --git a/r5dev/engine/client/cl_rcon.cpp b/r5dev/engine/client/cl_rcon.cpp index 67c860e6..8cce448d 100644 --- a/r5dev/engine/client/cl_rcon.cpp +++ b/r5dev/engine/client/cl_rcon.cpp @@ -285,7 +285,19 @@ void CRConClient::ProcessMessage(const sv_rcon::response& sv_response) const { case sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH: { - StringReplace(svOut, sDLL_T[7], ""); + if (!sv_response.responseval().empty()) + { + long i = strtol(sv_response.responseval().c_str(), NULL, NULL); + if (!i) // sv_rcon_sendlogs is not set. + { + if (cl_rcon_request_sendlogs->GetBool()) + { + string svLogQuery = this->Serialize("", "", cl_rcon::request_t::SERVERDATA_REQUEST_SEND_CONSOLE_LOG); + this->Send(svLogQuery); + } + } + } + DevMsg(eDLL_T::NETCON, "%s", svOut.c_str()); break; } diff --git a/r5dev/engine/server/sv_rcon.cpp b/r5dev/engine/server/sv_rcon.cpp index 11228911..a3e09bb3 100644 --- a/r5dev/engine/server/sv_rcon.cpp +++ b/r5dev/engine/server/sv_rcon.cpp @@ -245,7 +245,7 @@ void CRConServer::Recv(void) {////////////////////////////////////////////// if (this->CheckForBan(pData)) { - this->Send(pData->m_hSocket, this->Serialize(s_pszBannedMessage, "", sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH)); + this->Send(pData->m_hSocket, this->Serialize(s_pszBannedMessage, "", sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH, 7/*NETCON_S*/)); this->CloseConnection(); continue; } @@ -304,12 +304,13 @@ std::string CRConServer::Serialize(const std::string& svRspBuf, const std::strin case sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH: { sv_response.set_responsebuf(svRspBuf); + sv_response.set_responseval(svRspVal); break; } case sv_rcon::response_t::SERVERDATA_RESPONSE_CONSOLE_LOG: { sv_response.set_responsebuf(svRspBuf); - sv_response.set_responseval(""); + sv_response.set_responseval(svRspVal); break; } default: @@ -352,7 +353,7 @@ void CRConServer::Authenticate(const cl_rcon::request& cl_request, CConnectedNet m_pSocket->CloseListenSocket(); this->CloseNonAuthConnection(); - this->Send(pData->m_hSocket, this->Serialize(s_pszAuthMessage, "", sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH)); + this->Send(pData->m_hSocket, this->Serialize(s_pszAuthMessage, sv_rcon_sendlogs->GetString(), sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH, 7/*NETCON_S*/)); } else // Bad password. { @@ -362,7 +363,7 @@ void CRConServer::Authenticate(const cl_rcon::request& cl_request, CConnectedNet DevMsg(eDLL_T::SERVER, "Bad RCON password attempt from '%s'\n", netAdr2.GetIPAndPort().c_str()); } - this->Send(pData->m_hSocket, this->Serialize(s_pszWrongPwMessage, "", sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH)); + this->Send(pData->m_hSocket, this->Serialize(s_pszWrongPwMessage, "", sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH, 7/*NETCON_S*/)); pData->m_bAuthorized = false; pData->m_bValidated = false; @@ -474,7 +475,7 @@ void CRConServer::ProcessMessage(const cl_rcon::request& cl_request) && cl_request.requesttype() != cl_rcon::request_t::SERVERDATA_REQUEST_AUTH) { // Notify net console that authentication is required. - this->Send(pData->m_hSocket, this->Serialize(s_pszNoAuthMessage, "", sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH)); + this->Send(pData->m_hSocket, this->Serialize(s_pszNoAuthMessage, "", sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH, 7/*NETCON_S*/)); pData->m_bValidated = false; pData->m_nIgnoredMessage++; diff --git a/r5dev/netconsole/netconsole.cpp b/r5dev/netconsole/netconsole.cpp index ebb28e91..b856b438 100644 --- a/r5dev/netconsole/netconsole.cpp +++ b/r5dev/netconsole/netconsole.cpp @@ -398,6 +398,18 @@ void CNetCon::ProcessMessage(const sv_rcon::response& sv_response) const switch (sv_response.responsetype()) { case sv_rcon::response_t::SERVERDATA_RESPONSE_AUTH: + { + if (!sv_response.responseval().empty()) + { + long i = strtol(sv_response.responseval().c_str(), NULL, NULL); + if (!i) // sv_rcon_sendlogs is not set. + { + string svLogQuery = this->Serialize("", "", cl_rcon::request_t::SERVERDATA_REQUEST_SEND_CONSOLE_LOG); + this->Send(svLogQuery); + } + } + [[fallthrough]]; + } case sv_rcon::response_t::SERVERDATA_RESPONSE_CONSOLE_LOG: { std::string svOut = sv_response.responsebuf(); diff --git a/r5dev/tier0/dbg.cpp b/r5dev/tier0/dbg.cpp index 7b23eeef..e81371ea 100644 --- a/r5dev/tier0/dbg.cpp +++ b/r5dev/tier0/dbg.cpp @@ -105,6 +105,7 @@ void NetMsg(int context, const char* fmt, ...) static std::shared_ptr ntlogger = spdlog::get("net_con"); switch (context) { + case -4: case -3: case -2: case -1: @@ -151,7 +152,7 @@ void NetMsg(int context, const char* fmt, ...) color = ImVec4(0.59f, 0.48f, 0.53f, 1.00f); break; default: - color = ImVec4(0.59f, 0.58f, 0.63f, 1.00f); + color = ImVec4(0.59f, 0.59f, 0.59f, 1.00f); break; } } @@ -187,6 +188,8 @@ void NetMsg(int context, const char* fmt, ...) case 4: case 5: case 6: + case 7: + case 8: { s_LogMutex.lock(); {///////////////////////////// diff --git a/r5dev/tier0/dbg.h b/r5dev/tier0/dbg.h index e05f8d66..544d6d07 100644 --- a/r5dev/tier0/dbg.h +++ b/r5dev/tier0/dbg.h @@ -23,7 +23,7 @@ enum class eDLL_T : int RTECH = 5, // RTech API MS = 6, // Material System NETCON = 7, // Net Console - COMMON = 8 + COMMON = 8 }; const string sDLL_T[9] = diff --git a/r5dev/tier1/IConVar.cpp b/r5dev/tier1/IConVar.cpp index 5f00bc23..2828bfa2 100644 --- a/r5dev/tier1/IConVar.cpp +++ b/r5dev/tier1/IConVar.cpp @@ -117,6 +117,8 @@ void ConVar::Init(void) const //------------------------------------------------------------------------- // CLIENT | #ifndef DEDICATED + cl_rcon_request_sendlogs = ConVar::Create("cl_rcon_request_sendlogs", "1" , FCVAR_RELEASE, "Request the rcon server to send console logs on connect.", false, 0.f, false, 0.f, nullptr, nullptr); + cl_drawconsoleoverlay = ConVar::Create("cl_drawconsoleoverlay" , "0" , FCVAR_DEVELOPMENTONLY, "Draws the RUI console overlay at the top of the screen.", false, 0.f, false, 0.f, nullptr, nullptr); cl_consoleoverlay_lines = ConVar::Create("cl_consoleoverlay_lines" , "3" , FCVAR_DEVELOPMENTONLY, "Number of lines of console output to draw.", false, 0.f, false, 0.f, nullptr, nullptr); cl_consoleoverlay_invert_rect_x = ConVar::Create("cl_consoleoverlay_invert_rect_x", "0" , FCVAR_DEVELOPMENTONLY, "Inverts the X rect for RUI console overlay.", false, 0.f, false, 0.f, nullptr, nullptr); diff --git a/r5dev/tier1/cvar.cpp b/r5dev/tier1/cvar.cpp index a3ee0209..c625ad46 100644 --- a/r5dev/tier1/cvar.cpp +++ b/r5dev/tier1/cvar.cpp @@ -83,6 +83,8 @@ ConVar* bhit_abs_origin = nullptr; //----------------------------------------------------------------------------- // CLIENT | #ifndef DEDICATED +ConVar* cl_rcon_request_sendlogs = nullptr; + ConVar* cl_drawconsoleoverlay = nullptr; ConVar* cl_consoleoverlay_lines = nullptr; ConVar* cl_consoleoverlay_invert_rect_x = nullptr; diff --git a/r5dev/tier1/cvar.h b/r5dev/tier1/cvar.h index a8bd414c..ba68c60b 100644 --- a/r5dev/tier1/cvar.h +++ b/r5dev/tier1/cvar.h @@ -78,6 +78,8 @@ extern ConVar* bhit_abs_origin; //------------------------------------------------------------------------- // CLIENT | #ifndef DEDICATED +extern ConVar* cl_rcon_request_sendlogs; + extern ConVar* cl_drawconsoleoverlay; extern ConVar* cl_consoleoverlay_lines; extern ConVar* cl_consoleoverlay_invert_rect_x;