This repository was archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.hpp
61 lines (50 loc) · 1.52 KB
/
interface.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef INTERFACE_HPP
#define INTERFACE_HPP
#include "memory.hpp"
class Interface {
public:
uintptr_t** baseclass;
uintptr_t* vtable;
int vtableSize;
private:
bool isHooked;
std::unique_ptr<uintptr_t[]> copy;
public:
Interface();
Interface(void* baseclass, bool copyVtable = true, bool autoHook = true);
~Interface();
void CopyVtable();
void EnableHooks();
void DisableHooks();
template <typename T = uintptr_t> T Original(int index, bool readJmp = false) {
if(readJmp) {
auto source = this->vtable[index] + 1;
auto rel = *reinterpret_cast<uintptr_t*>(source);
return (T)(source + rel + sizeof(rel));
}
return (T)this->vtable[index];
}
template <typename T = uintptr_t, typename U = void*> bool Hook(T detour, U& original, int index) {
if(index >= 0 && index < this->vtableSize) {
this->copy[index + 1] = reinterpret_cast<uintptr_t>(detour);
original = this->Original<U>(index);
return true;
}
return false;
}
bool Unhook(int index) {
if(index >= 0 && index < this->vtableSize) {
this->copy[index + 1] = this->vtable[index];
return true;
}
return false;
}
inline void* ThisPtr() {
return reinterpret_cast<void*>(this->baseclass);
}
static Interface* Create(void* ptr, bool copyVtable = true, bool autoHook = true);
static Interface* Create(const char* filename, const char* interfaceSymbol, bool copyVtable = true, bool autoHook = true);
static void Delete(Interface* ptr);
static void* GetPtr(const char* filename, const char* interfaceSymbol);
};
#endif // INTERFACE_HPP