From 684f950509569133b274914b337273b4ce67d1fb Mon Sep 17 00:00:00 2001 From: 8dcc <8dcc.git@gmail.com> Date: Tue, 25 Jul 2023 23:03:04 +0200 Subject: [PATCH] Clean hooks.c Organize includes Add comments Rename clmove_data -> detour_data_clmove Rename clmove_t -> clmove_type_t --- src/hooks.c | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/src/hooks.c b/src/hooks.c index 9456dbc..e1ff338 100644 --- a/src/hooks.c +++ b/src/hooks.c @@ -4,22 +4,24 @@ #include "include/globals.h" #include "include/util.h" #include "include/cvars.h" -#include "include/detour.h" /* 8dcc/detour-lib */ - -/* bhop(), esp(), etc. */ -#include "features/features.h" +#include "include/detour.h" /* 8dcc/detour-lib */ +#include "features/features.h" /* bhop(), esp(), etc. */ +/* Normal VMT hooks */ DECL_HOOK(CL_CreateMove); DECL_HOOK(HUD_Redraw); DECL_HOOK(StudioRenderModel); +/* OpenGL hooks */ DECL_HOOK(glColor4f); -/* For detour hooking CL_Move */ -static detour_data_t clmove_data; -DECL_DETOUR_TYPE(void, clmove); +/* Detour hooks */ +static detour_data_t detour_data_clmove; +DECL_DETOUR_TYPE(void, clmove_type); DECL_HOOK(CL_Move); +/*----------------------------------------------------------------------------*/ + bool hooks_init(void) { HOOK(i_client, CL_CreateMove); HOOK(i_client, HUD_Redraw); @@ -31,15 +33,15 @@ bool hooks_init(void) { if (!clmove_ptr) return false; - /* Initialize clmove_data struct for detour, and add the hook */ - detour_init(&clmove_data, clmove_ptr, (void*)h_CL_Move); - detour_add(&clmove_data); + /* Initialize detour_data_clmove struct for detour, and add the hook */ + detour_init(&detour_data_clmove, clmove_ptr, (void*)h_CL_Move); + detour_add(&detour_data_clmove); return true; } void hooks_restore(void) { - detour_del(&clmove_data); + detour_del(&detour_data_clmove); } /*----------------------------------------------------------------------------*/ @@ -110,8 +112,8 @@ void h_glColor4f(GLfloat r, GLfloat g, GLfloat b, GLfloat a) { void h_CL_Move() { if (cv_clmove->value != 0) { for (int i = 0; i < (int)cv_clmove->value; i++) - CALL_ORIGINAL(clmove_data, clmove); + CALL_ORIGINAL(detour_data_clmove, clmove_type); } - CALL_ORIGINAL(clmove_data, clmove); + CALL_ORIGINAL(detour_data_clmove, clmove_type); }