goldberg_emulator/overlay_experimental/Base_Hook.cpp

88 lines
1.2 KiB
C++
Raw Normal View History

#include "Base_Hook.h"
#include <algorithm>
#ifdef EMU_OVERLAY
2019-08-31 18:49:46 +00:00
#ifdef STEAM_WIN32
2019-08-16 08:28:23 +00:00
2019-08-31 18:49:46 +00:00
#include "../detours/detours.h"
2019-09-01 18:53:16 +00:00
Base_Hook::Base_Hook():
_library(nullptr)
{}
Base_Hook::~Base_Hook()
2019-08-31 18:49:46 +00:00
{
2019-09-01 18:53:16 +00:00
UnhookAll();
2019-08-31 18:49:46 +00:00
}
2019-09-01 18:53:16 +00:00
const char* Base_Hook::get_lib_name() const
{
2019-09-01 18:53:16 +00:00
return "<no_name>";
}
2019-08-31 18:49:46 +00:00
void Base_Hook::BeginHook()
{
DetourTransactionBegin();
DetourUpdateThread(GetCurrentThread());
2019-08-31 18:49:46 +00:00
}
void Base_Hook::EndHook()
{
DetourTransactionCommit();
}
2019-08-01 15:04:49 +00:00
void Base_Hook::HookFunc(std::pair<void**, void*> hook)
{
if( DetourAttach(hook.first, hook.second) == 0 )
2019-07-31 20:20:27 +00:00
_hooked_funcs.emplace_back(hook);
}
2019-08-31 18:49:46 +00:00
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);
2019-08-31 18:49:46 +00:00
});
EndHook();
_hooked_funcs.clear();
}
}
#else
Base_Hook::Base_Hook():
_library(nullptr)
{}
Base_Hook::~Base_Hook()
{
}
const char* Base_Hook::get_lib_name() const
{
return "<no_name>";
}
void Base_Hook::BeginHook()
{
}
void Base_Hook::EndHook()
{
}
void Base_Hook::HookFunc(std::pair<void**, void*> hook)
{
}
void Base_Hook::UnhookAll()
{
}
#endif
#endif//EMU_OVERLAY