2012-06-14 06:06:06 -07: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 03:18:07 -07:00
|
|
|
int cPacket_BlockPlace::Parse(cByteBuffer & a_Buffer)
|
2012-06-14 06:06:06 -07:00
|
|
|
{
|
|
|
|
int TotalBytes = 0;
|
2012-08-17 03:18:07 -07: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 06:06:06 -07:00
|
|
|
|
|
|
|
cPacket_ItemData Item;
|
2012-08-17 03:18:07 -07:00
|
|
|
int res = Item.Parse(a_Buffer);
|
2012-06-14 06:06:06 -07:00
|
|
|
if (res < 0)
|
|
|
|
{
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
TotalBytes += res;
|
|
|
|
|
|
|
|
m_ItemType = Item.m_ItemID;
|
|
|
|
m_Count = Item.m_ItemCount;
|
|
|
|
m_Uses = Item.m_ItemUses;
|
|
|
|
|
|
|
|
return TotalBytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|