mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-16 17:41:29 +00:00
76 lines
2.1 KiB
C++
76 lines
2.1 KiB
C++
#include "world_connection.h"
|
|
#include "eqemu_config.h"
|
|
#include "string_util.h"
|
|
|
|
EQ::WorldConnection::WorldConnection(const std::string &type) {
|
|
auto config = EQEmuConfig::get();
|
|
|
|
m_connection.reset(new EQ::Net::ServertalkClient(config->WorldIP, config->WorldTCPPort, false, type, config->SharedKey));
|
|
m_connection->OnConnect([this](EQ::Net::ServertalkClient *client) {
|
|
if (m_on_connected) {
|
|
m_on_connected();
|
|
}
|
|
});
|
|
|
|
m_connection->OnMessage(std::bind(&WorldConnection::_HandleMessage, this, std::placeholders::_1, std::placeholders::_2));
|
|
m_connection->OnMessage(ServerOP_RouteTo, std::bind(&WorldConnection::_HandleRoutedMessage, this, std::placeholders::_1, std::placeholders::_2));
|
|
}
|
|
|
|
EQ::WorldConnection::~WorldConnection() {
|
|
|
|
}
|
|
|
|
void EQ::WorldConnection::SendPacket(ServerPacket* pack) {
|
|
m_connection->SendPacket(pack);
|
|
}
|
|
|
|
std::string EQ::WorldConnection::GetIP() const {
|
|
return m_connection->Handle()->RemoteIP();
|
|
}
|
|
|
|
uint16 EQ::WorldConnection::GetPort() const {
|
|
return m_connection->Handle()->RemotePort();
|
|
}
|
|
|
|
bool EQ::WorldConnection::Connected() const {
|
|
return m_connection->Connected();
|
|
}
|
|
|
|
void EQ::WorldConnection::RouteMessage(const std::string &filter, const std::string &id, const EQ::Net::Packet& payload)
|
|
{
|
|
if (!m_connection->Connected()) {
|
|
return;
|
|
}
|
|
|
|
auto identifier = m_connection->GetIdentifier();
|
|
|
|
RouteToMessage msg;
|
|
strn0cpy(msg.filter, filter.c_str(), 32);
|
|
strn0cpy(msg.identifier, identifier.c_str(), 32);
|
|
strn0cpy(msg.id, id.c_str(), 32);
|
|
|
|
EQ::Net::DynamicPacket out;
|
|
out.Reserve(sizeof(RouteToMessage) + payload.Length());
|
|
out.PutData(0, &msg, sizeof(RouteToMessage));
|
|
out.PutPacket(sizeof(RouteToMessage), payload);
|
|
|
|
m_connection->Send(ServerOP_RouteTo, out);
|
|
}
|
|
|
|
void EQ::WorldConnection::_HandleMessage(uint16 opcode, const EQ::Net::Packet &p)
|
|
{
|
|
if (m_on_message) {
|
|
m_on_message(opcode, p);
|
|
}
|
|
}
|
|
|
|
void EQ::WorldConnection::_HandleRoutedMessage(uint16 opcode, const EQ::Net::Packet &p)
|
|
{
|
|
if (m_on_routed_message) {
|
|
auto msg = (RouteToMessage*)p.Data();
|
|
auto payload = p.GetPacket(sizeof(RouteToMessage), p.Length() - sizeof(RouteToMessage));
|
|
|
|
m_on_routed_message(msg->filter, msg->identifier, msg->id, payload);
|
|
}
|
|
}
|