forked from teamnwah/openmw-tes3coop
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
#include <boost/shared_ptr.hpp>
|
|
#include <boost/foreach.hpp>
|
|
#include <boost/make_shared.hpp>
|
|
|
|
#include "../Packets/World/PacketObjectPlace.hpp"
|
|
#include "../Packets/World/PacketObjectDelete.hpp"
|
|
|
|
#include "WorldPacketController.hpp"
|
|
|
|
template <typename T>
|
|
inline void AddPacket(mwmp::WorldPacketController::packets_t *packets, RakNet::RakPeerInterface *peer)
|
|
{
|
|
T *packet = new T(peer);
|
|
typedef mwmp::WorldPacketController::packets_t::value_type value_t;
|
|
packets->insert(value_t(packet->GetPacketID(), value_t::second_type(packet)));
|
|
}
|
|
|
|
mwmp::WorldPacketController::WorldPacketController(RakNet::RakPeerInterface *peer)
|
|
{
|
|
AddPacket<PacketObjectPlace>(&packets, peer);
|
|
AddPacket<PacketObjectDelete>(&packets, peer);
|
|
}
|
|
|
|
|
|
mwmp::WorldPacket *mwmp::WorldPacketController::GetPacket(RakNet::MessageID id)
|
|
{
|
|
return packets[(unsigned char)id].get();
|
|
}
|
|
|
|
void mwmp::WorldPacketController::SetStream(RakNet::BitStream *inStream, RakNet::BitStream *outStream)
|
|
{
|
|
BOOST_FOREACH( packets_t::value_type &packet, packets )
|
|
packet.second->SetStreams(inStream, outStream);
|
|
}
|
|
|
|
bool mwmp::WorldPacketController::ContainsPacket(RakNet::MessageID id)
|
|
{
|
|
BOOST_FOREACH(packets_t::value_type &packet, packets) {
|
|
if (packet.first == id)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|