Added the ability to disable rUI drawing. By @r-ex.

This commit is contained in:
PixieCore 2022-03-23 23:28:12 +01:00
parent bc3d42d0be
commit ef5abb16ea
15 changed files with 134 additions and 23 deletions

View File

@ -44,7 +44,10 @@
#include "squirrel/sqvm.h"
#include "studiorender/studiorendercontext.h"
#include "rtech/rtech_game.h"
#include "rtech/stryder.h"
#include "rtech/stryder/stryder.h"
#ifndef DEDICATED
#include "rtech/rui/rui.h"
#endif // !DEDICATED
#include "engine/baseclient.h"
#include "engine/common.h"
#include "engine/cmodel_bsp.h"
@ -152,6 +155,9 @@ void Systems_Init()
SQVM_Attach();
RTech_Game_Attach();
#ifndef DEDICATED
Rui_Attach();
#endif // !DEDICATED
SysDll_Attach();
SysUtils_Attach();
@ -249,6 +255,9 @@ void Systems_Shutdown()
SQVM_Detach();
RTech_Game_Detach();
#ifndef DEDICATED
Rui_Detach();
#endif // !DEDICATED
SysDll_Detach();
SysUtils_Detach();

View File

@ -71,8 +71,8 @@ enum class RPakStatus_t : std::int32_t
};
const std::map<RPakStatus_t, std::string> RPakStatusToString {
{ RPakStatus_t::PAK_STATUS_FREED, "PAK_STATUS_FREED" },
{ RPakStatus_t::PAK_STATUS_LOAD_PENDING, "PAK_STATUS_LOAD_PENDING" },
{ RPakStatus_t::PAK_STATUS_FREED, "PAK_STATUS_FREED" },
{ RPakStatus_t::PAK_STATUS_LOAD_PENDING, "PAK_STATUS_LOAD_PENDING" },
{ RPakStatus_t::PAK_STATUS_REPAK_RUNNING, "PAK_STATUS_REPAK_RUNNING" },
{ RPakStatus_t::PAK_STATUS_REPAK_DONE, "PAK_STATUS_REPAK_DONE" },
{ RPakStatus_t::PAK_STATUS_LOAD_STARTING, "PAK_STATUS_LOAD_STARTING" },

35
r5dev/rtech/rui/rui.cpp Normal file
View File

@ -0,0 +1,35 @@
//=============================================================================//
//
// Purpose: rUI Utilities
//
//=============================================================================//
#include "core/stdafx.h"
#ifndef DEDICATED
#include "rui.h"
#include <tier0/cvar.h>
//-----------------------------------------------------------------------------
// Purpose: Probably responsible to decide if rUI is allowed to draw.
//-----------------------------------------------------------------------------
bool __fastcall HRuiDraw(__int64* a1, __m128* a2, const __m128i* a3, __int64 a4, __m128* a5)
{
if (!rui_drawEnable->GetBool())
return false;
return RuiDraw(a1, a2, a3, a4, a5);
}
void Rui_Attach()
{
DetourAttach((LPVOID*)&RuiDraw, &HRuiDraw);
}
void Rui_Detach()
{
DetourDetach((LPVOID*)&RuiDraw, &HRuiDraw);
}
#endif // !DEDICATED

28
r5dev/rtech/rui/rui.h Normal file
View File

@ -0,0 +1,28 @@
#pragma once
#ifndef DEDICATED
namespace
{
/* ==== RUI ====================================================================================================================================================== */
ADDRESS p_RuiDraw = g_mGameDll.FindPatternSIMD((std::uint8_t*)"\x40\x53\x48\x83\xEC\x40\x4C\x8B\x5A\x18", "xxxxxxxxxx");
bool (__fastcall* RuiDraw)(__int64* a1, __m128* a2, const __m128i* a3, __int64 a4, __m128* a5) = (bool (__fastcall*)(__int64*, __m128*, const __m128i*, __int64, __m128*))p_RuiDraw.GetPtr(); /* 40 53 48 83 EC 40 4C 8B 5A 18 */
}
void Rui_Attach();
void Rui_Detach();
///////////////////////////////////////////////////////////////////////////////
class HRui : public IDetour
{
virtual void debugp()
{
std::cout << "| FUN: RuiDraw : 0x" << std::hex << std::uppercase << p_RuiDraw.GetPtr() << std::setw(npad) << " |" << std::endl;
std::cout << "+----------------------------------------------------------------+" << std::endl;
}
};
///////////////////////////////////////////////////////////////////////////////
REGISTER(HRui);
#endif // !DEDICATED

View File

@ -1,3 +0,0 @@
#include "core/stdafx.h"
#include "rtech/stryder.h"
//TODO

View File

@ -0,0 +1,3 @@
#include "core/stdafx.h"
#include "rtech/stryder/stryder.h"
//TODO

View File

@ -138,6 +138,14 @@ void ConVar::Init(void) const
net_userandomkey = new ConVar("net_userandomkey" , "1" , FCVAR_RELEASE , "If set to 1, the netchannel generates and sets a random base64 netkey.", false, 0.f, false, 0.f, nullptr, nullptr);
r5net_matchmaking_hostname = new ConVar("r5net_matchmaking_hostname", "r5a-comp-sv.herokuapp.com", FCVAR_RELEASE , "Holds the R5Net matchmaking hostname.", false, 0.f, false, 0.f, nullptr, nullptr);
r5net_show_debug = new ConVar("r5net_show_debug" , "1" , FCVAR_DEVELOPMENTONLY, "Shows debug output for R5Net.", false, 0.f, false, 0.f, nullptr, nullptr);
//-------------------------------------------------------------------------
// RTECH API |
// RUI |
#ifndef DEDICATED
rui_drawEnable = new ConVar("rui_drawEnable", "1", FCVAR_RELEASE, "Draws the rUI, 1 = Draw, 0 = No Draw.", false, 0.f, false, 0.f, nullptr, nullptr);
#endif // !DEDICATED
//-------------------------------------------------------------------------
}
//-----------------------------------------------------------------------------

View File

@ -95,6 +95,13 @@ ConVar* sq_showvmwarning = nullptr;
ConVar* net_userandomkey = nullptr;
ConVar* r5net_matchmaking_hostname = nullptr;
ConVar* r5net_show_debug = nullptr;
//-----------------------------------------------------------------------------
// RTECH API |
// RUI |
#ifndef DEDICATED
ConVar* rui_drawEnable = nullptr;
#endif // !DEDICATED
//-----------------------------------------------------------------------------
// Purpose: finds base commands.

View File

@ -105,6 +105,13 @@ extern ConVar* sq_showvmwarning;
extern ConVar* net_userandomkey;
extern ConVar* r5net_matchmaking_hostname;
extern ConVar* r5net_show_debug;
//-----------------------------------------------------------------------------
// RTECH API |
// RUI |
#ifndef DEDICATED
extern ConVar* rui_drawEnable;
#endif // !DEDICATED
class CCVarIteratorInternal // Fully reversed table, just look at the virtual function table and rename the function.
{

View File

@ -1,6 +1,6 @@
#include "core/stdafx.h"
#include "vpc/keyvalues.h"
#include "rtech/stryder.h"
#include "rtech/stryder/stryder.h"
#include "engine/sys_dll2.h"
///////////////////////////////////////////////////////////////////////////////

View File

@ -189,7 +189,7 @@
<ClInclude Include="..\public\include\utility.h" />
<ClInclude Include="..\rtech\rtech_utils.h" />
<ClInclude Include="..\rtech\rtech_game.h" />
<ClInclude Include="..\rtech\stryder.h" />
<ClInclude Include="..\rtech\stryder\stryder.h" />
<ClInclude Include="..\server\IVEngineServer.h" />
<ClInclude Include="..\server\server.h" />
<ClInclude Include="..\squirrel\sqapi.h" />
@ -398,7 +398,7 @@
<ClCompile Include="..\public\utility.cpp" />
<ClCompile Include="..\rtech\rtech_utils.cpp" />
<ClCompile Include="..\rtech\rtech_game.cpp" />
<ClCompile Include="..\rtech\stryder.cpp" />
<ClCompile Include="..\rtech\stryder\stryder.cpp" />
<ClCompile Include="..\server\IVEngineServer.cpp" />
<ClCompile Include="..\server\server.cpp" />
<ClCompile Include="..\squirrel\sqapi.cpp" />

View File

@ -130,6 +130,9 @@
<Filter Include="thirdparty\lzham\lzhamdecomp\include">
<UniqueIdentifier>{40c41a94-4e9d-439f-9b16-68531ecc03a8}</UniqueIdentifier>
</Filter>
<Filter Include="sdk\rtech\stryder">
<UniqueIdentifier>{07362c29-d064-4bdb-97a6-6e3dbcdc8c02}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\client\client.h">
@ -204,9 +207,6 @@
<ClInclude Include="..\public\include\bansystem.h">
<Filter>sdk\public\include</Filter>
</ClInclude>
<ClInclude Include="..\rtech\stryder.h">
<Filter>sdk\rtech</Filter>
</ClInclude>
<ClInclude Include="..\rtech\rtech_utils.h">
<Filter>sdk\rtech</Filter>
</ClInclude>
@ -804,6 +804,9 @@
<ClInclude Include="..\tier0\fasttimer.h">
<Filter>sdk\tier0</Filter>
</ClInclude>
<ClInclude Include="..\rtech\stryder\stryder.h">
<Filter>sdk\rtech\stryder</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\client\IVEngineClient.cpp">
@ -854,9 +857,6 @@
<ClCompile Include="..\public\bansystem.cpp">
<Filter>sdk\public</Filter>
</ClCompile>
<ClCompile Include="..\rtech\stryder.cpp">
<Filter>sdk\rtech</Filter>
</ClCompile>
<ClCompile Include="..\rtech\rtech_utils.cpp">
<Filter>sdk\rtech</Filter>
</ClCompile>
@ -1007,6 +1007,9 @@
<ClCompile Include="..\tier0\fasttimer.cpp">
<Filter>sdk\tier0</Filter>
</ClCompile>
<ClCompile Include="..\rtech\stryder\stryder.cpp">
<Filter>sdk\rtech\stryder</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<None Include="..\Dedicated.def" />

View File

@ -71,7 +71,8 @@
<ClCompile Include="..\public\utility.cpp" />
<ClCompile Include="..\rtech\rtech_utils.cpp" />
<ClCompile Include="..\rtech\rtech_game.cpp" />
<ClCompile Include="..\rtech\stryder.cpp" />
<ClCompile Include="..\rtech\rui\rui.cpp" />
<ClCompile Include="..\rtech\stryder\stryder.cpp" />
<ClCompile Include="..\server\IVEngineServer.cpp" />
<ClCompile Include="..\server\server.cpp" />
<ClCompile Include="..\squirrel\sqapi.cpp" />
@ -184,7 +185,8 @@
<ClInclude Include="..\core\resource.h" />
<ClInclude Include="..\rtech\rtech_utils.h" />
<ClInclude Include="..\rtech\rtech_game.h" />
<ClInclude Include="..\rtech\stryder.h" />
<ClInclude Include="..\rtech\rui\rui.h" />
<ClInclude Include="..\rtech\stryder\stryder.h" />
<ClInclude Include="..\server\IVEngineServer.h" />
<ClInclude Include="..\server\server.h" />
<ClInclude Include="..\squirrel\sqapi.h" />

View File

@ -160,6 +160,12 @@
<Filter Include="thirdparty\lzham\lzhamdecomp\include">
<UniqueIdentifier>{3446634c-a632-4281-a500-459a56668a6b}</UniqueIdentifier>
</Filter>
<Filter Include="sdk\rtech\rui">
<UniqueIdentifier>{3f399cbb-a487-4562-b651-f8ce846e5f94}</UniqueIdentifier>
</Filter>
<Filter Include="sdk\rtech\stryder">
<UniqueIdentifier>{2535a97c-967a-40af-bb52-02033747b4f0}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\client\client.cpp">
@ -210,9 +216,6 @@
<ClCompile Include="..\rtech\rtech_utils.cpp">
<Filter>sdk\rtech</Filter>
</ClCompile>
<ClCompile Include="..\rtech\stryder.cpp">
<Filter>sdk\rtech</Filter>
</ClCompile>
<ClCompile Include="..\inputsystem\inputsystem.cpp">
<Filter>sdk\inputsystem</Filter>
</ClCompile>
@ -408,6 +411,12 @@
<ClCompile Include="..\tier0\fasttimer.cpp">
<Filter>sdk\tier0</Filter>
</ClCompile>
<ClCompile Include="..\rtech\rui\rui.cpp">
<Filter>sdk\rtech\rui</Filter>
</ClCompile>
<ClCompile Include="..\rtech\stryder\stryder.cpp">
<Filter>sdk\rtech\stryder</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\client\cdll_engine_int.h">
@ -470,9 +479,6 @@
<ClInclude Include="..\rtech\rtech_utils.h">
<Filter>sdk\rtech</Filter>
</ClInclude>
<ClInclude Include="..\rtech\stryder.h">
<Filter>sdk\rtech</Filter>
</ClInclude>
<ClInclude Include="..\inputsystem\inputsystem.h">
<Filter>sdk\inputsystem</Filter>
</ClInclude>
@ -1166,6 +1172,12 @@
<ClInclude Include="..\tier0\cpu.h">
<Filter>sdk\tier0</Filter>
</ClInclude>
<ClInclude Include="..\rtech\rui\rui.h">
<Filter>sdk\rtech\rui</Filter>
</ClInclude>
<ClInclude Include="..\rtech\stryder\stryder.h">
<Filter>sdk\rtech\stryder</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Image Include="..\shared\resource\lockedserver.png">