2017-04-18 05:53:02 +00:00
|
|
|
//
|
|
|
|
// Created by koncord on 18.04.17.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef OPENMW_ACTORPROCESSOR_HPP
|
|
|
|
#define OPENMW_ACTORPROCESSOR_HPP
|
|
|
|
|
|
|
|
#include <components/openmw-mp/Log.hpp>
|
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
|
2017-06-06 16:06:10 +00:00
|
|
|
#include "../WorldEvent.hpp"
|
|
|
|
#include "../ActorList.hpp"
|
2017-04-18 07:05:32 +00:00
|
|
|
#include "BaseClientPacketProcessor.hpp"
|
2017-04-18 05:53:02 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-06-30 12:09:05 +00:00
|
|
|
class ActorProcessor : public BasePacketProcessor<ActorProcessor>, public BaseClientPacketProcessor
|
2017-04-18 05:53:02 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void Do(ActorPacket &packet, ActorList &actorList) = 0;
|
|
|
|
|
|
|
|
static bool Process(RakNet::Packet &packet, ActorList &actorList);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif //OPENMW_ACTORPROCESSOR_HPP
|