first commit
This commit is contained in:
48
Minecraft.World/DisconnectPacket.cpp
Normal file
48
Minecraft.World/DisconnectPacket.cpp
Normal file
@@ -0,0 +1,48 @@
|
||||
#include "stdafx.h"
|
||||
#include <iostream>
|
||||
#include "InputOutputStream.h"
|
||||
#include "SharedConstants.h"
|
||||
#include "PacketListener.h"
|
||||
#include "DisconnectPacket.h"
|
||||
|
||||
|
||||
|
||||
DisconnectPacket::DisconnectPacket()
|
||||
{
|
||||
reason = eDisconnect_None;
|
||||
}
|
||||
|
||||
DisconnectPacket::DisconnectPacket(eDisconnectReason reason)
|
||||
{
|
||||
this->reason = reason;
|
||||
}
|
||||
|
||||
void DisconnectPacket::read(DataInputStream *dis) //throws IOException
|
||||
{
|
||||
reason = (eDisconnectReason)dis->readInt();
|
||||
}
|
||||
|
||||
void DisconnectPacket::write(DataOutputStream *dos) //throws IOException
|
||||
{
|
||||
dos->writeInt((int)reason);
|
||||
}
|
||||
|
||||
void DisconnectPacket::handle(PacketListener *listener)
|
||||
{
|
||||
listener->handleDisconnect(shared_from_this());
|
||||
}
|
||||
|
||||
int DisconnectPacket::getEstimatedSize()
|
||||
{
|
||||
return sizeof(eDisconnectReason);
|
||||
}
|
||||
|
||||
bool DisconnectPacket::canBeInvalidated()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool DisconnectPacket::isInvalidatedBy(shared_ptr<Packet> packet)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
Reference in New Issue
Block a user