2021-11-29 07:26:53 -05:00
|
|
|
#include "STDInclude.hpp"
|
|
|
|
|
|
|
|
namespace Components
|
|
|
|
{
|
2021-11-29 12:16:18 -05:00
|
|
|
Game::dvar_t* Elevators::SV_DisableElevators;
|
2021-11-29 07:26:53 -05:00
|
|
|
|
2021-11-29 12:16:18 -05:00
|
|
|
__declspec(naked) void Elevators::PM_GroundTraceStub()
|
|
|
|
{
|
|
|
|
__asm
|
|
|
|
{
|
|
|
|
push eax
|
|
|
|
mov eax, Elevators::SV_DisableElevators
|
|
|
|
cmp byte ptr [eax + 16], 1
|
|
|
|
pop eax
|
|
|
|
|
|
|
|
// Always skip PM_CorrectAllSolid if SV_DisableElevators is set to 1
|
|
|
|
je noElevators
|
|
|
|
|
|
|
|
// Original code
|
|
|
|
cmp byte ptr [esp + 0x50], 0
|
|
|
|
rep movsd
|
|
|
|
mov esi, [esp + 0x58]
|
|
|
|
|
|
|
|
// Original code flow
|
|
|
|
push 0x573694
|
|
|
|
retn
|
|
|
|
|
|
|
|
noElevators:
|
|
|
|
|
|
|
|
// Original code
|
|
|
|
rep movsd
|
|
|
|
mov esi, [esp + 0x58]
|
|
|
|
|
|
|
|
// Jump over call to PM_CorrectAllSolid
|
|
|
|
push 0x5736AE
|
|
|
|
retn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-29 07:26:53 -05:00
|
|
|
Elevators::Elevators()
|
|
|
|
{
|
|
|
|
Dvar::OnInit([]
|
|
|
|
{
|
2021-11-29 12:16:18 -05:00
|
|
|
Elevators::SV_DisableElevators = Game::Dvar_RegisterBool("sv_disableElevators",
|
2021-11-29 13:36:23 -05:00
|
|
|
false, Game::DVAR_FLAG_REPLICATED, "Disable elevators");
|
2021-11-29 07:26:53 -05:00
|
|
|
});
|
|
|
|
|
2021-11-29 12:16:18 -05:00
|
|
|
// Hook PM_GroundTrace so me way skip PM_CorrectAllSolid (disable elevators)
|
|
|
|
Utils::Hook(0x573689, Elevators::PM_GroundTraceStub, HOOK_JUMP).install()->quick();
|
2021-11-29 07:26:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Elevators::~Elevators()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|