mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
added external class
This commit is contained in:
35
include/omath/rev_eng/external_rev_object.hpp
Normal file
35
include/omath/rev_eng/external_rev_object.hpp
Normal file
@@ -0,0 +1,35 @@
|
||||
//
|
||||
// Created by Vlad on 10/4/2025.
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
namespace omath::rev_eng
|
||||
{
|
||||
template<class ExternalMemoryManagementTrait>
|
||||
class ExternalReverseEngineeredObject
|
||||
{
|
||||
public:
|
||||
explicit ExternalReverseEngineeredObject(const std::uintptr_t addr): m_object_address(addr)
|
||||
{
|
||||
}
|
||||
private:
|
||||
std::uintptr_t m_object_address{};
|
||||
|
||||
protected:
|
||||
template<class Type>
|
||||
[[nodiscard]]
|
||||
Type get_by_offset(const std::ptrdiff_t offset) const
|
||||
{
|
||||
return ExternalMemoryManagementTrait::read_memory(m_object_address+offset);
|
||||
}
|
||||
|
||||
template<class Type>
|
||||
void set_by_offset(const std::ptrdiff_t offset, const Type& value) const
|
||||
{
|
||||
return ExternalMemoryManagementTrait::write_memory(m_object_address+offset, value);
|
||||
}
|
||||
};
|
||||
} // namespace omath::rev_eng
|
||||
33
include/omath/rev_eng/internal_rev_object.hpp
Normal file
33
include/omath/rev_eng/internal_rev_object.hpp
Normal file
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// Created by Vlad on 8/8/2025.
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
namespace omath::rev_eng
|
||||
{
|
||||
class InternalReverseEngineeredObject
|
||||
{
|
||||
protected:
|
||||
template<class Type>
|
||||
[[nodiscard]] Type& get_by_offset(const std::ptrdiff_t offset)
|
||||
{
|
||||
return *reinterpret_cast<Type*>(reinterpret_cast<std::uintptr_t>(this) + offset);
|
||||
}
|
||||
|
||||
template<class Type>
|
||||
[[nodiscard]] const Type& get_by_offset(const std::ptrdiff_t offset) const
|
||||
{
|
||||
return *reinterpret_cast<Type*>(reinterpret_cast<std::uintptr_t>(this) + offset);
|
||||
}
|
||||
|
||||
template<std::size_t id, class ReturnType>
|
||||
ReturnType call_virtual_method(auto&&... arg_list)
|
||||
{
|
||||
using VirtualMethodType = ReturnType(__thiscall*)(void*, decltype(arg_list)...);
|
||||
return (*static_cast<VirtualMethodType**>(this))[id](this, arg_list...);
|
||||
}
|
||||
};
|
||||
} // namespace omath::rev_eng
|
||||
@@ -1,27 +0,0 @@
|
||||
//
|
||||
// Created by Vlad on 8/8/2025.
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
namespace omath::rev_eng
|
||||
{
|
||||
class ReverseEngineeredObject
|
||||
{
|
||||
protected:
|
||||
template<class Type>
|
||||
[[nodiscard]] Type& get_by_offset(const std::ptrdiff_t offset) const
|
||||
{
|
||||
return *reinterpret_cast<Type*>(reinterpret_cast<std::uintptr_t>(this) + offset);
|
||||
}
|
||||
|
||||
template<size_t id, class ReturnType>
|
||||
ReturnType call_virtual_method(auto... arg_list)
|
||||
{
|
||||
using Func = ReturnType(__thiscall*)(void*, decltype(arg_list)...);
|
||||
return (*static_cast<Func**>(this))[id](this, arg_list...);
|
||||
}
|
||||
};
|
||||
} // namespace orev
|
||||
Reference in New Issue
Block a user