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
715 B
C++
28 lines
715 B
C++
#ifndef OPENMW_SYSTEMPACKETCONTROLLER_HPP
|
|
#define OPENMW_SYSTEMPACKETCONTROLLER_HPP
|
|
|
|
|
|
#include <RakPeerInterface.h>
|
|
#include "../Packets/System/SystemPacket.hpp"
|
|
#include <unordered_map>
|
|
#include <memory>
|
|
|
|
namespace mwmp
|
|
{
|
|
class SystemPacketController
|
|
{
|
|
public:
|
|
SystemPacketController(RakNet::RakPeerInterface *peer);
|
|
SystemPacket *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<SystemPacket> > packets_t;
|
|
private:
|
|
packets_t packets;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_SYSTEMPACKETCONTROLLER_HPP
|