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/packet.cpp
maybegreat48 09a189eb4d
Force relay connections (#1813)
* feat(protections): add force relay servers
* feat(network): add support for non-direct connections
* feat(info): add helpful tooltip to prevent unnecessary bug reports
2023-07-23 18:47:25 +02:00

34 lines
949 B
C++

#include "packet.hpp"
#include "common.hpp"
#include "gta_util.hpp"
#include "services/players/player_service.hpp"
#include <network/Network.hpp>
#include <network/netConnection.hpp>
namespace big
{
packet::packet() :
m_buffer(m_data, 0x4000)
{
}
void packet::send(uint32_t msg_id)
{
g_pointers->m_gta
.m_queue_packet(gta_util::get_network()->m_game_session_ptr->m_net_connection_mgr, msg_id, m_data, (m_buffer.m_curBit + 7) >> 3, 1, nullptr);
}
void packet::send(player_ptr player, int connection_id)
{
send(player->get_session_player()->m_player_data.m_peer_id_2, connection_id);
}
void packet::send(int peer_id, int connection_id)
{
auto mgr = gta_util::get_network()->m_game_session_ptr->m_net_connection_mgr;
auto peer = g_pointers->m_gta.m_get_connection_peer(mgr, peer_id);
g_pointers->m_gta.m_send_packet(mgr, &peer->m_peer_address, connection_id, m_data, (m_buffer.m_curBit + 7) >> 3, 0x1000000);
}
}