2017-04-18 05:53:02 +00:00
|
|
|
#ifndef OPENMW_ACTORPROCESSOR_HPP
|
|
|
|
#define OPENMW_ACTORPROCESSOR_HPP
|
|
|
|
|
2019-08-19 18:39:33 +00:00
|
|
|
#include <components/openmw-mp/TimedLog.hpp>
|
2017-04-18 05:53:02 +00:00
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
|
2018-05-12 21:42:24 +00:00
|
|
|
#include "../ObjectList.hpp"
|
2017-06-06 16:06:10 +00:00
|
|
|
#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
|