h2-mod/src/client/component/patches.cpp

121 lines
2.9 KiB
C++
Raw Normal View History

2021-09-06 18:40:37 -04:00
#include <std_include.hpp>
#include "loader/component_loader.hpp"
#include "game/game.hpp"
2021-04-26 16:34:43 -04:00
#include "game/dvars.hpp"
#include <utils/hook.hpp>
2022-01-06 17:13:23 -05:00
#include <utils/string.hpp>
namespace patches
{
namespace
{
2022-01-06 17:13:23 -05:00
utils::hook::detour gscr_set_save_dvar_hook;
utils::hook::detour dvar_register_float_hook;
2021-09-06 18:40:37 -04:00
void* sub_46148()
{
2022-03-18 17:02:44 -04:00
static uint64_t off_11C52460 = 0x140AD0C58;
2021-09-06 18:40:37 -04:00
return &off_11C52460;
}
2021-12-27 22:25:14 -05:00
2021-12-28 11:14:47 -05:00
DECLSPEC_NORETURN void quit_stub()
2021-12-27 22:25:14 -05:00
{
component_loader::pre_destroy();
exit(0);
}
2022-01-06 17:13:23 -05:00
void gscr_set_save_dvar_stub()
{
2022-03-18 17:02:44 -04:00
const auto string = utils::string::to_lower(utils::hook::invoke<const char*>(0x1405C7C20, 0));
2022-01-06 17:13:23 -05:00
if (string == "cg_fov" || string == "cg_fovscale")
{
return;
}
gscr_set_save_dvar_hook.invoke<void>();
}
2022-02-17 14:01:13 -05:00
game::dvar_t* cg_fov = nullptr;
game::dvar_t* cg_fovScale = nullptr;
2022-01-06 17:13:23 -05:00
game::dvar_t* dvar_register_float_stub(int hash, const char* dvarName, float value, float min, float max, unsigned int flags)
{
static const auto cg_fov_hash = game::generateHashValue("cg_fov");
static const auto cg_fov_scale_hash = game::generateHashValue("cg_fovscale");
2022-02-17 14:01:13 -05:00
if (hash == cg_fov_hash)
{
return cg_fov;
}
if (hash == cg_fov_scale_hash)
2022-01-06 17:13:23 -05:00
{
2022-02-17 14:01:13 -05:00
return cg_fovScale;
2022-01-06 17:13:23 -05:00
}
return dvar_register_float_hook.invoke<game::dvar_t*>(hash, dvarName, value, min, max, flags);
}
2022-08-16 21:06:56 -04:00
void free_lui_memory()
{
utils::hook::invoke<void>(0x14032A540); // properly free lui memory
}
void vid_restart_stub_1()
{
free_lui_memory();
utils::hook::invoke<void>(0x1405A6480);
}
void vid_restart_stub_2()
{
free_lui_memory();
utils::hook::invoke<void>(0x1406B5290);
}
}
class component final : public component_interface
{
public:
void post_unpack() override
{
2021-12-28 11:14:47 -05:00
// Fix startup crashes
2022-03-18 17:02:44 -04:00
utils::hook::set(0x140633080, 0xC301B0);
utils::hook::set(0x140272F70, 0xC301B0);
utils::hook::jump(0x140046148, sub_46148, true);
2021-09-06 18:40:37 -04:00
2022-03-18 17:02:44 -04:00
utils::hook::jump(0x14064EF10, quit_stub, true);
2021-12-27 22:25:14 -05:00
// Unlock fps in main menu
2022-03-18 17:02:44 -04:00
utils::hook::set<BYTE>(0x1403D8E1B, 0xEB);
// Disable battle net popup
2022-03-18 17:02:44 -04:00
utils::hook::nop(0x1405F4496, 5);
2022-01-06 17:13:23 -05:00
2022-01-06 17:14:01 -05:00
// Allow kbam input when gamepad is enabled
2022-03-18 17:02:44 -04:00
utils::hook::nop(0x1403D2F8E, 2);
utils::hook::nop(0x1403D0C9C, 6);
2022-01-06 17:14:01 -05:00
2022-01-06 17:13:23 -05:00
// Prevent game from overriding cg_fov and cg_fovscale values
2022-03-18 17:02:44 -04:00
gscr_set_save_dvar_hook.create(0x140504C60, &gscr_set_save_dvar_stub);
2022-02-17 14:01:13 -05:00
2022-01-06 17:13:23 -05:00
// Make cg_fov and cg_fovscale saved dvars
2022-02-17 14:01:13 -05:00
cg_fov = dvars::register_float("cg_fov", 65.f, 40.f, 200.f,
game::DVAR_FLAG_SAVED, "The field of view angle in degrees for client 0");
cg_fovScale = dvars::register_float("cg_fovScale", 1.f, 0.1f, 2.f,
game::DVAR_FLAG_SAVED, "Scale applied to the field of view");
2022-02-17 14:01:13 -05:00
2022-01-06 17:13:23 -05:00
dvar_register_float_hook.create(game::Dvar_RegisterFloat.get(), dvar_register_float_stub);
2022-08-16 21:06:56 -04:00
// fix vid_restart crashing
utils::hook::call(0x1403D7413, vid_restart_stub_1);
utils::hook::jump(0x1403D7402, vid_restart_stub_2);
}
};
}
REGISTER_COMPONENT(patches::component)