Added script_local implemented by gir489.

Added sanity checks to premake to see if the user did a proper recursive pull, and to warn them if they didn't.
This commit is contained in:
gir489
2020-02-22 20:47:17 -05:00
parent 01d48cd314
commit fc3e5ab791
4 changed files with 67 additions and 11 deletions

View File

@ -0,0 +1,31 @@
#include "common.hpp"
#include "pointers.hpp"
#include "script_local.hpp"
#include "gta\script_thread.hpp"
namespace big
{
script_local::script_local(rage::scrThread* thread, std::size_t index) :
m_index(index), m_stack(thread->m_stack)
{
}
script_local::script_local(PVOID stack, std::size_t index) :
m_index(index), m_stack(stack)
{
}
script_local script_local::at(std::ptrdiff_t index)
{
return script_local(m_stack, m_index + index);
}
script_local script_local::at(std::ptrdiff_t index, std::size_t size)
{
return script_local(m_stack, m_index + 1 + (index * size));
}
void *script_local::get()
{
return reinterpret_cast<uintptr_t*>((uintptr_t)m_stack + (m_index * sizeof(uintptr_t)));
}
}

View File

@ -0,0 +1,31 @@
#pragma once
#include "common.hpp"
namespace big
{
class script_local
{
public:
explicit script_local(rage::scrThread* thread, std::size_t index);
explicit script_local(PVOID stack, std::size_t index);
script_local at(std::ptrdiff_t index);
script_local at(std::ptrdiff_t index, std::size_t size);
template <typename T>
std::enable_if_t<std::is_pointer_v<T>, T> as()
{
return static_cast<T>(get());
}
template <typename T>
std::enable_if_t<std::is_lvalue_reference_v<T>, T> as()
{
return *static_cast<std::add_pointer_t<std::remove_reference_t<T>>>(get());
}
private:
void *get();
std::size_t m_index;
PVOID m_stack;
};
}