2019-07-26 05:21:03 +08:00
|
|
|
#include "Base_Hook.h"
|
|
|
|
|
2019-08-14 21:09:57 +08:00
|
|
|
#ifndef NO_OVERLAY
|
|
|
|
|
2019-07-26 05:21:03 +08:00
|
|
|
#include <algorithm>
|
|
|
|
#include "Hook_Manager.h"
|
|
|
|
|
|
|
|
#include "../detours/detours.h"
|
|
|
|
|
2019-08-18 22:19:28 +08:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#define VC_EXTRALEAN
|
|
|
|
#include <Windows.h>
|
|
|
|
|
2019-08-16 16:28:23 +08:00
|
|
|
Base_Hook::Base_Hook():
|
2019-08-26 03:22:25 +08:00
|
|
|
_library(nullptr),
|
2019-08-16 16:28:23 +08:00
|
|
|
_hooked(false)
|
|
|
|
{}
|
|
|
|
|
2019-07-26 05:21:03 +08:00
|
|
|
Base_Hook::~Base_Hook()
|
|
|
|
{
|
|
|
|
UnhookAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Base_Hook::BeginHook()
|
|
|
|
{
|
|
|
|
DetourTransactionBegin();
|
|
|
|
DetourUpdateThread(GetCurrentThread());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Base_Hook::EndHook()
|
|
|
|
{
|
|
|
|
DetourTransactionCommit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Base_Hook::UnhookAll()
|
|
|
|
{
|
|
|
|
if (_hooked_funcs.size())
|
|
|
|
{
|
|
|
|
BeginHook();
|
|
|
|
std::for_each(_hooked_funcs.begin(), _hooked_funcs.end(), [](std::pair<void**, void*>& hook) {
|
|
|
|
DetourDetach(hook.first, hook.second);
|
|
|
|
});
|
|
|
|
EndHook();
|
|
|
|
_hooked_funcs.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 22:38:01 +08:00
|
|
|
const char* Base_Hook::get_lib_name() const
|
|
|
|
{
|
|
|
|
return "<no_name>";
|
|
|
|
}
|
|
|
|
|
2019-08-01 23:04:49 +08:00
|
|
|
void Base_Hook::HookFunc(std::pair<void**, void*> hook)
|
2019-07-26 05:21:03 +08:00
|
|
|
{
|
2019-08-01 04:20:27 +08:00
|
|
|
if( DetourAttach(hook.first, hook.second) == 0 )
|
|
|
|
_hooked_funcs.emplace_back(hook);
|
2019-08-14 21:09:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif//NO_OVERLAY
|