2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
|
|
#include "cPacket_BlockPlace.h"
|
|
|
|
#include "cPacket_ItemData.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-17 06:18:07 -04:00
|
|
|
int cPacket_BlockPlace::Parse(cByteBuffer & a_Buffer)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
int TotalBytes = 0;
|
2012-08-17 06:18:07 -04:00
|
|
|
HANDLE_PACKET_READ(ReadBEInt, m_PosX, TotalBytes);
|
|
|
|
HANDLE_PACKET_READ(ReadByte, m_PosY, TotalBytes);
|
|
|
|
HANDLE_PACKET_READ(ReadBEInt, m_PosZ, TotalBytes);
|
|
|
|
HANDLE_PACKET_READ(ReadChar, m_Direction, TotalBytes);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-08-18 05:56:28 -04:00
|
|
|
cPacket_ItemData Item(m_HeldItem);
|
2012-08-17 06:18:07 -04:00
|
|
|
int res = Item.Parse(a_Buffer);
|
2012-06-14 09:06:06 -04:00
|
|
|
if (res < 0)
|
|
|
|
{
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
TotalBytes += res;
|
|
|
|
return TotalBytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|