Temp-Classes/script/tlsContext.hpp

38 lines
980 B
C++
Raw Normal View History

#pragma once
#include "../rage/sysMemAllocator.hpp"
#include "scrThread.hpp"
2022-11-16 07:39:24 +08:00
#if _WIN32
#include <intrin.h>
#endif
namespace rage
{
2022-11-16 07:39:24 +08:00
#pragma pack(push, 1)
class tlsContext
{
public:
2024-12-14 09:40:29 +08:00
char gap0[8884];
std::uint8_t m_unk_byte; // 0x22B4
2022-11-16 07:39:24 +08:00
char gapB5[3];
2024-12-14 09:40:29 +08:00
sysMemAllocator *m_allocator; // 0x22B8
sysMemAllocator *m_allocator2; // 0x22C0 - Same as 0x22B8
sysMemAllocator *m_allocator3; // 0x22C8 - Same as 0x22B8
uint32_t m_console_smth; // 0x22D0
2022-11-16 07:39:24 +08:00
char gapD4[188];
2024-12-14 09:40:29 +08:00
uint64_t m_unk; // 0x2390
char gap198[1720];
rage::scrThread* m_script_thread; // 0x2A50
bool m_is_script_thread_active; // 0x2A58
2022-11-16 07:39:24 +08:00
#if _WIN32
static tlsContext* get()
{
constexpr std::uint32_t TlsIndex = 0x0;
return *reinterpret_cast<tlsContext**>(__readgsqword(0x58) + TlsIndex);
}
#endif
};
2024-12-14 09:40:29 +08:00
static_assert(sizeof(tlsContext) == 0x2A59);
2022-11-16 07:39:24 +08:00
#pragma pack(pop)
}