aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/pch.h
diff options
context:
space:
mode:
authorKawe Mazidjatari <48657826+Mauler125@users.noreply.github.com>2022-03-27 10:54:09 +0200
committerGitHub <noreply@github.com>2022-03-27 10:54:09 +0200
commitf1a8ce9337ce84f25fc1a78458f43377c7b36f4d (patch)
treebb5ea746c277f6b6c720deac8e6dadcd682440f7 /NorthstarDedicatedTest/pch.h
parentb5405b462656b83a37bf1eb41b049b0913980a13 (diff)
parent379cbc8bc251307777a14b901e5617e834398485 (diff)
downloadNorthstarLauncher-f1a8ce9337ce84f25fc1a78458f43377c7b36f4d.tar.gz
NorthstarLauncher-f1a8ce9337ce84f25fc1a78458f43377c7b36f4d.zip
Merge branch 'main' into NetCon
Diffstat (limited to 'NorthstarDedicatedTest/pch.h')
-rw-r--r--NorthstarDedicatedTest/pch.h15
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