You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
805 B
C++
32 lines
805 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])
|
|
{
|
|
Player *player = Players::getPlayer(packet.guid);
|
|
PlayerPacket *myPacket = Networking::get().getPlayerPacketController()->GetPacket(packet.data[0]);
|
|
myPacket->setPlayer(player);
|
|
|
|
if (!processor.second->avoidReading)
|
|
myPacket->Read();
|
|
|
|
processor.second->Do(*myPacket, *player);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|