2017-01-20 08:36:52 -05:00
|
|
|
#pragma once
|
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
namespace Utils
|
|
|
|
{
|
|
|
|
class Library
|
|
|
|
{
|
|
|
|
public:
|
2021-07-21 12:44:58 -04:00
|
|
|
static Library Load(const std::string& name);
|
|
|
|
static Library Load(const std::filesystem::path& path);
|
|
|
|
static Library GetByAddress(void* address);
|
2021-07-18 12:11:20 -04:00
|
|
|
|
2020-12-09 14:13:34 -05:00
|
|
|
Library() : _module(nullptr), freeOnDestroy(false) {};
|
2021-07-18 12:11:20 -04:00
|
|
|
Library(const std::string& buffer, bool freeOnDestroy);
|
|
|
|
explicit Library(const std::string& name);
|
|
|
|
explicit Library(HMODULE handle);
|
2017-01-19 16:23:59 -05:00
|
|
|
~Library();
|
|
|
|
|
2021-08-19 05:45:40 -04:00
|
|
|
bool isValid() const;
|
|
|
|
HMODULE getModule();
|
2017-01-19 16:23:59 -05:00
|
|
|
|
|
|
|
template <typename T>
|
2021-08-19 05:45:40 -04:00
|
|
|
T getProc(const std::string& process) const
|
2017-01-19 16:23:59 -05:00
|
|
|
{
|
2021-08-19 05:45:40 -04:00
|
|
|
if (!this->isValid()) T{};
|
2021-07-18 11:36:01 -04:00
|
|
|
return reinterpret_cast<T>(GetProcAddress(this->_module, process.data()));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2021-08-19 05:45:40 -04:00
|
|
|
std::function<T> get(const std::string& process) const
|
2021-07-18 11:36:01 -04:00
|
|
|
{
|
2021-08-19 05:45:40 -04:00
|
|
|
if (!this->isValid()) return std::function<T>();
|
|
|
|
return static_cast<T*>(this->getProc<void*>(process));
|
2021-07-18 11:36:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename... Args>
|
2021-08-19 05:45:40 -04:00
|
|
|
T invoke(const std::string& process, Args ... args) const
|
2021-07-18 11:36:01 -04:00
|
|
|
{
|
2021-08-19 05:45:40 -04:00
|
|
|
auto method = this->get<T(__cdecl)(Args ...)>(process);
|
2021-07-18 11:36:01 -04:00
|
|
|
if (method) return method(args...);
|
|
|
|
return T();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename... Args>
|
2021-08-19 05:45:40 -04:00
|
|
|
T invokePascal(const std::string& process, Args ... args) const
|
2021-07-18 11:36:01 -04:00
|
|
|
{
|
2021-08-19 05:45:40 -04:00
|
|
|
auto method = this->get<T(__stdcall)(Args ...)>(process);
|
2021-07-18 11:36:01 -04:00
|
|
|
if (method) return method(args...);
|
|
|
|
return T();
|
|
|
|
}
|
2017-01-19 16:23:59 -05:00
|
|
|
|
2021-07-18 11:36:01 -04:00
|
|
|
template <typename T, typename... Args>
|
2021-08-19 05:45:40 -04:00
|
|
|
T invokeThis(const std::string& process, void* this_ptr, Args ... args) const
|
2021-07-18 11:36:01 -04:00
|
|
|
{
|
2021-08-19 05:45:40 -04:00
|
|
|
auto method = this->get<T(__thiscall)(void*, Args ...)>(this_ptr, process);
|
2021-07-18 11:36:01 -04:00
|
|
|
if (method) return method(args...);
|
|
|
|
return T();
|
2017-01-19 16:23:59 -05:00
|
|
|
}
|
|
|
|
|
2021-08-19 05:45:40 -04:00
|
|
|
void free();
|
2017-03-26 12:00:06 -04:00
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
private:
|
2020-12-09 14:13:34 -05:00
|
|
|
HMODULE _module;
|
2017-01-19 16:23:59 -05:00
|
|
|
bool freeOnDestroy;
|
|
|
|
};
|
|
|
|
}
|