This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/hooks/protections/received_clone_create.cpp
2024-05-19 20:26:44 +02:00

49 lines
1.7 KiB
C++

#include "hooking/hooking.hpp"
#include "services/players/player_service.hpp"
#include "util/notify.hpp"
#include "gta/pools.hpp"
namespace big
{
void hooks::received_clone_create(CNetworkObjectMgr* mgr, CNetGamePlayer* src, CNetGamePlayer* dst, eNetObjType object_type, int32_t object_id, int32_t object_flag, rage::datBitBuffer* buffer, int32_t timestamp)
{
if (object_type < eNetObjType::NET_OBJ_TYPE_AUTOMOBILE || object_type > eNetObjType::NET_OBJ_TYPE_TRAIN) [[unlikely]]
{
notify::crash_blocked(src, "out of bounds object type");
return;
}
switch (object_type)
{
case eNetObjType::NET_OBJ_TYPE_AUTOMOBILE:
case eNetObjType::NET_OBJ_TYPE_BIKE:
case eNetObjType::NET_OBJ_TYPE_BOAT:
case eNetObjType::NET_OBJ_TYPE_HELI:
case eNetObjType::NET_OBJ_TYPE_PLANE:
case eNetObjType::NET_OBJ_TYPE_SUBMARINE:
case eNetObjType::NET_OBJ_TYPE_TRAILER:
case eNetObjType::NET_OBJ_TYPE_TRAIN:
if ((*g_pointers->m_gta.m_vehicle_allocator)->m_size < 10) [[unlikely]]
{
// We don't have enough memory to handle this
g_notification_service.push_warning("Protections", "Low vehicle allocator size");
return;
}
}
auto plyr = g_player_service->get_by_id(src->m_player_id);
if (plyr && plyr->block_clone_create) [[unlikely]]
return;
g.m_syncing_player = src;
g.m_syncing_object_type = object_type;
g.debug.fuzzer.thread_id = GetCurrentThreadId();
if (g.debug.fuzzer.enabled_object_types[(int)object_type]) [[unlikely]]
g.debug.fuzzer.active = true;
g.debug.fuzzer.syncing_object_id = object_id;
g_hooking->get_original<hooks::received_clone_create>()(mgr, src, dst, object_type, object_id, object_flag, buffer, timestamp);
g.debug.fuzzer.active = false;
}
}