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.
66 lines
2.4 KiB
C++
66 lines
2.4 KiB
C++
#include "../Packets/Actor/PacketActorList.hpp"
|
|
#include "../Packets/Actor/PacketActorAuthority.hpp"
|
|
#include "../Packets/Actor/PacketActorTest.hpp"
|
|
#include "../Packets/Actor/PacketActorAI.hpp"
|
|
#include "../Packets/Actor/PacketActorAnimFlags.hpp"
|
|
#include "../Packets/Actor/PacketActorAnimPlay.hpp"
|
|
#include "../Packets/Actor/PacketActorAttack.hpp"
|
|
#include "../Packets/Actor/PacketActorCellChange.hpp"
|
|
#include "../Packets/Actor/PacketActorDeath.hpp"
|
|
#include "../Packets/Actor/PacketActorEquipment.hpp"
|
|
#include "../Packets/Actor/PacketActorInteraction.hpp"
|
|
#include "../Packets/Actor/PacketActorPosition.hpp"
|
|
#include "../Packets/Actor/PacketActorStatsDynamic.hpp"
|
|
#include "../Packets/Actor/PacketActorSpeech.hpp"
|
|
|
|
|
|
#include "ActorPacketController.hpp"
|
|
|
|
template <typename T>
|
|
inline void AddPacket(mwmp::ActorPacketController::packets_t *packets, RakNet::RakPeerInterface *peer)
|
|
{
|
|
T *packet = new T(peer);
|
|
typedef mwmp::ActorPacketController::packets_t::value_type value_t;
|
|
packets->insert(value_t(packet->GetPacketID(), value_t::second_type(packet)));
|
|
}
|
|
|
|
mwmp::ActorPacketController::ActorPacketController(RakNet::RakPeerInterface *peer)
|
|
{
|
|
AddPacket<PacketActorList>(&packets, peer);
|
|
AddPacket<PacketActorAuthority>(&packets, peer);
|
|
AddPacket<PacketActorTest>(&packets, peer);
|
|
AddPacket<PacketActorAI>(&packets, peer);
|
|
AddPacket<PacketActorAnimFlags>(&packets, peer);
|
|
AddPacket<PacketActorAnimPlay>(&packets, peer);
|
|
AddPacket<PacketActorAttack>(&packets, peer);
|
|
AddPacket<PacketActorCellChange>(&packets, peer);
|
|
AddPacket<PacketActorDeath>(&packets, peer);
|
|
AddPacket<PacketActorEquipment>(&packets, peer);
|
|
AddPacket<PacketActorInteraction>(&packets, peer);
|
|
AddPacket<PacketActorPosition>(&packets, peer);
|
|
AddPacket<PacketActorSpeech>(&packets, peer);
|
|
AddPacket<PacketActorStatsDynamic>(&packets, peer);
|
|
}
|
|
|
|
|
|
mwmp::ActorPacket *mwmp::ActorPacketController::GetPacket(RakNet::MessageID id)
|
|
{
|
|
return packets[(unsigned char)id].get();
|
|
}
|
|
|
|
void mwmp::ActorPacketController::SetStream(RakNet::BitStream *inStream, RakNet::BitStream *outStream)
|
|
{
|
|
for(const auto &packet : packets)
|
|
packet.second->SetStreams(inStream, outStream);
|
|
}
|
|
|
|
bool mwmp::ActorPacketController::ContainsPacket(RakNet::MessageID id)
|
|
{
|
|
for(const auto &packet : packets)
|
|
{
|
|
if (packet.first == id)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|