2017-04-16 06:58:40 +00:00
|
|
|
//
|
|
|
|
// Created by koncord on 16.04.17.
|
|
|
|
//
|
|
|
|
|
2017-04-18 03:35:50 +00:00
|
|
|
#include "WorldProcessor.hpp"
|
2017-06-06 16:06:10 +00:00
|
|
|
#include "../Main.hpp"
|
|
|
|
#include "../Networking.hpp"
|
2017-04-16 06:58:40 +00:00
|
|
|
|
|
|
|
using namespace mwmp;
|
|
|
|
|
2017-06-30 12:09:05 +00:00
|
|
|
template<class T>
|
|
|
|
typename BasePacketProcessor<T>::processors_t BasePacketProcessor<T>::processors;
|
2017-04-16 06:58:40 +00:00
|
|
|
|
2017-04-18 03:35:50 +00:00
|
|
|
bool WorldProcessor::Process(RakNet::Packet &packet, WorldEvent &event)
|
2017-04-16 06:58:40 +00:00
|
|
|
{
|
|
|
|
RakNet::BitStream bsIn(&packet.data[1], packet.length, false);
|
|
|
|
bsIn.Read(guid);
|
2018-03-21 04:08:04 +00:00
|
|
|
event.guid = guid;
|
2017-04-16 06:58:40 +00:00
|
|
|
|
|
|
|
WorldPacket *myPacket = Main::get().getNetworking()->getWorldPacket(packet.data[0]);
|
|
|
|
|
|
|
|
myPacket->setEvent(&event);
|
|
|
|
myPacket->SetReadStream(&bsIn);
|
|
|
|
|
2017-06-27 14:27:02 +00:00
|
|
|
for (auto &processor: processors)
|
2017-04-16 06:58:40 +00:00
|
|
|
{
|
2017-05-02 19:47:58 +00:00
|
|
|
if (processor.first == packet.data[0])
|
2017-04-16 06:58:40 +00:00
|
|
|
{
|
2017-04-18 07:05:32 +00:00
|
|
|
myGuid = Main::get().getLocalPlayer()->guid;
|
2017-04-16 06:58:40 +00:00
|
|
|
request = packet.length == myPacket->headerSize();
|
|
|
|
|
2017-05-14 17:24:06 +00:00
|
|
|
event.isValid = true;
|
|
|
|
|
2017-05-02 19:47:58 +00:00
|
|
|
if (!request && !processor.second->avoidReading)
|
2017-04-16 06:58:40 +00:00
|
|
|
myPacket->Read();
|
|
|
|
|
2017-05-14 17:24:06 +00:00
|
|
|
if (event.isValid)
|
|
|
|
processor.second->Do(*myPacket, event);
|
|
|
|
else
|
|
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_ERROR, "Received %s that failed integrity check and was ignored!", processor.second->strPacketID.c_str());
|
2017-04-16 06:58:40 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|