goldberg_emulator/overlay_experimental/Base_Hook.cpp

53 lines
952 B
C++
Raw Normal View History

#include "Base_Hook.h"
2019-08-27 14:29:20 +00:00
#include "Hook_Manager.h"
#ifndef NO_OVERLAY
#include <algorithm>
#include "../detours/detours.h"
2019-08-16 08:28:23 +00:00
Base_Hook::Base_Hook():
_library(nullptr)
2019-08-16 08:28:23 +00: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();
}
}
const char* Base_Hook::get_lib_name() const
{
return "<no_name>";
}
2019-08-01 15:04:49 +00:00
void Base_Hook::HookFunc(std::pair<void**, void*> hook)
{
2019-07-31 20:20:27 +00:00
if( DetourAttach(hook.first, hook.second) == 0 )
_hooked_funcs.emplace_back(hook);
}
#endif//NO_OVERLAY