diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-04-09 02:15:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-09 02:15:26 +0100 |
commit | e070b8b610de10401d62fdeee1037c4d451d40dc (patch) | |
tree | 24e3216b8806a198e14d6a89c589c59ec2d5f9ce /NorthstarDedicatedTest/clientruihooks.cpp | |
parent | 1de9ea495fbe0a73db670ee73c23fad844364b8b (diff) | |
download | NorthstarLauncher-e070b8b610de10401d62fdeee1037c4d451d40dc.tar.gz NorthstarLauncher-e070b8b610de10401d62fdeee1037c4d451d40dc.zip |
add rui_drawEnable (#134)
* add rui_drawEnable
* oops forgot to push vcxproj changes to branch
* format clientruihooks.cpp
Diffstat (limited to 'NorthstarDedicatedTest/clientruihooks.cpp')
-rw-r--r-- | NorthstarDedicatedTest/clientruihooks.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/clientruihooks.cpp b/NorthstarDedicatedTest/clientruihooks.cpp new file mode 100644 index 00000000..bc6c7aa7 --- /dev/null +++ b/NorthstarDedicatedTest/clientruihooks.cpp @@ -0,0 +1,24 @@ +#include "pch.h" +#include "clientruihooks.h" +#include "convar.h" + +ConVar* Cvar_rui_drawEnable; + +typedef char (*DrawRUIFuncType)(void* a1, float* a2); +DrawRUIFuncType DrawRUIFunc; + +char DrawRUIFuncHook(void* a1, float* a2) +{ + if (!Cvar_rui_drawEnable->GetBool()) + return 0; + + return DrawRUIFunc(a1, a2); +} + +void InitialiseEngineClientRUIHooks(HMODULE baseAddress) +{ + Cvar_rui_drawEnable = new ConVar("rui_drawEnable", "1", FCVAR_CLIENTDLL, "Controls whether RUI should be drawn"); + + HookEnabler hook; + ENABLER_CREATEHOOK(hook, (char*)baseAddress + 0xFC500, &DrawRUIFuncHook, reinterpret_cast<LPVOID*>(&DrawRUIFunc)); +}
\ No newline at end of file |