2017-04-16 06:58:40 +00:00
|
|
|
//
|
|
|
|
// Created by koncord on 03.04.17.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef OPENMW_PLAYERPROCESSOR_HPP
|
|
|
|
#define OPENMW_PLAYERPROCESSOR_HPP
|
|
|
|
|
|
|
|
#include <components/openmw-mp/Log.hpp>
|
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
2017-06-06 16:06:10 +00:00
|
|
|
#include "../LocalPlayer.hpp"
|
|
|
|
#include "../DedicatedPlayer.hpp"
|
|
|
|
#include "../PlayerList.hpp"
|
2017-04-18 07:05:32 +00:00
|
|
|
#include "BaseClientPacketProcessor.hpp"
|
2017-04-16 06:58:40 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-06-30 12:09:05 +00:00
|
|
|
class PlayerProcessor : public BasePacketProcessor<PlayerProcessor>, public BaseClientPacketProcessor
|
2017-04-16 06:58:40 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void Do(PlayerPacket &packet, BasePlayer *player) = 0;
|
|
|
|
|
|
|
|
static bool Process(RakNet::Packet &packet);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //OPENMW_PLAYERPROCESSOR_HPP
|