diff options
Diffstat (limited to 'NorthstarDedicatedTest/pch.h')
-rw-r--r-- | NorthstarDedicatedTest/pch.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/pch.h b/NorthstarDedicatedTest/pch.h index a6410b07..bcf2f53c 100644 --- a/NorthstarDedicatedTest/pch.h +++ b/NorthstarDedicatedTest/pch.h @@ -23,6 +23,7 @@ #include <Windows.h> #include <Psapi.h> +#include "version.h" #include <comdef.h> #include <filesystem> #include <iostream> @@ -31,6 +32,7 @@ #include <cstring> #include <regex> #include <thread> +#include <map> #include <set> #include "logging.h" @@ -44,4 +46,17 @@ template <typename ReturnType, typename... Args> ReturnType CallVFunc(int index, return (*reinterpret_cast<ReturnType(__fastcall***)(void*, Args...)>(thisPtr))[index](thisPtr, args...); } +template <typename T, size_t index, typename ...Args> constexpr T CallVFunc_Alt(void* classBase, Args... args) noexcept { + return ((*(T(__thiscall***)(void*, Args...))(classBase))[index])(classBase, args...); +} + + +#define STR_HASH(s) (std::hash<std::string>()(s)) + +// Example usage: M_VMETHOD(int, GetEntityIndex, 8, (CBaseEntity* ent), (this, ent)) +#define M_VMETHOD(returnType, name, index, args, argsRaw) \ +FORCEINLINE returnType name args noexcept { \ + return CallVFunc_Alt<returnType, index> argsRaw; \ +} + #endif
\ No newline at end of file |