forked from teamnwah/openmw-tes3coop
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.
28 lines
751 B
C++
28 lines
751 B
C++
#ifndef OPENMW_WORLDSTATEPACKETCONTROLLER_HPP
|
|
#define OPENMW_WORLDSTATEPACKETCONTROLLER_HPP
|
|
|
|
|
|
#include <RakPeerInterface.h>
|
|
#include "../Packets/Worldstate/WorldstatePacket.hpp"
|
|
#include <unordered_map>
|
|
#include <memory>
|
|
|
|
namespace mwmp
|
|
{
|
|
class WorldstatePacketController
|
|
{
|
|
public:
|
|
WorldstatePacketController(RakNet::RakPeerInterface *peer);
|
|
WorldstatePacket *GetPacket(RakNet::MessageID id);
|
|
void SetStream(RakNet::BitStream *inStream, RakNet::BitStream *outStream);
|
|
|
|
bool ContainsPacket(RakNet::MessageID id);
|
|
|
|
typedef std::unordered_map<unsigned char, std::unique_ptr<WorldstatePacket> > packets_t;
|
|
private:
|
|
packets_t packets;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_WORLDSTATEPACKETCONTROLLER_HPP
|