1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-20 14:23:51 +00:00
openmw-tes3mp/apps/openmw-mp/processors/PlayerProcessor.cpp

33 lines
953 B
C++

//
// Created by koncord on 31.03.17.
//
#include "PlayerProcessor.hpp"
#include "Networking.hpp"
using namespace mwmp;
template<class T>
typename BasePacketProcessor<T>::processors_t BasePacketProcessor<T>::processors;
bool PlayerProcessor::Process(RakNet::Packet &packet) noexcept
{
for (auto &processor : processors)
{
if (processor.first == packet.data[0])
{
auto player = Players::getPlayerByGUID(packet.guid);
PlayerPacket *myPacket = Networking::get().getPlayerPacketController()->GetPacket(packet.data[0]);
myPacket->setPlayer(player.get());
LOG_MESSAGE_SIMPLE(Log::LOG_TRACE, "Processing %s from %s", processor.second->strPacketID.c_str(), player->npc.mName.c_str());
if (!processor.second->avoidReading)
myPacket->Read();
processor.second->Do(*myPacket, player);
return true;
}
}
return false;
}