mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
d81f392e61
* feat(Script): Ported BBv2 script classes * fix: Change hard tab indents to 4 width space indents
70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
class CNetRemoteComplaint
|
|
{
|
|
public:
|
|
uint64_t m_complainer_token; //0x0000
|
|
uint64_t m_complainee_token; //0x0008
|
|
uint32_t m_flags; //0x0010
|
|
uint32_t m_time; //0x0014
|
|
}; //Size: 0x0018
|
|
static_assert(sizeof(CNetRemoteComplaint) == 0x18);
|
|
|
|
class CNetComplaintMgr
|
|
{
|
|
public:
|
|
uint64_t m_host_token; //0x0000
|
|
uint32_t m_host_peer_id; //0x0008
|
|
char pad_000C[4]; //0x000C
|
|
void* m_net_connection_mgr; //0x0010
|
|
char pad_0018[64]; //0x0018
|
|
uint64_t m_host_tokens_in_scope[64]; //0x0058
|
|
uint32_t m_num_tokens_in_scope; //0x0258
|
|
char pad_025C[4]; //0x025C
|
|
class CNetRemoteComplaint m_remote_complaints[64]; //0x0260
|
|
uint32_t m_num_remote_complaints; //0x0860
|
|
char pad_0864[4]; //0x0864
|
|
uint64_t m_host_tokens_complained[64]; //0x0868
|
|
uint32_t m_num_tokens_complained; //0x0A68
|
|
char pad_0A6C[520]; //0x0A6C
|
|
uint32_t m_connection_identifier; //0x0C74
|
|
uint32_t m_last_resend_time; //0x0C78
|
|
char pad_0C7C[4]; //0x0C7C
|
|
uint32_t m_time_to_resend; //0x0C80
|
|
uint32_t m_flags; //0x0C84
|
|
char pad_0C88[16]; //0x0C88
|
|
|
|
inline bool has_local_complaint(uint64_t host_token)
|
|
{
|
|
for (std::uint32_t i = 0; i < m_num_tokens_complained; i++)
|
|
if (m_host_tokens_complained[i] == host_token)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
inline void raise_complaint(uint64_t host_token)
|
|
{
|
|
if (has_local_complaint(host_token))
|
|
return;
|
|
|
|
m_host_tokens_complained[m_num_tokens_complained++] = host_token;
|
|
|
|
// big::g_pointers->m_raise_network_complaint(this, host_token);
|
|
}
|
|
|
|
inline void remove_complaint(uint64_t host_token)
|
|
{
|
|
if (!has_local_complaint(host_token))
|
|
return;
|
|
|
|
for (std::uint32_t i = 0; i < m_num_tokens_complained; i++)
|
|
if (m_host_tokens_complained[i] == host_token)
|
|
m_host_tokens_complained[i] = m_host_tokens_complained[m_num_tokens_complained - 1];
|
|
|
|
m_num_tokens_complained--;
|
|
}
|
|
|
|
}; //Size: 0x0C98
|
|
static_assert(sizeof(CNetComplaintMgr) == 0xC98); |