2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
#include "cPacket_PlayerPosition.h"
|
2012-01-27 09:04:28 -05:00
|
|
|
#include "../cPlayer.h"
|
2011-10-03 14:41:19 -04:00
|
|
|
|
2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
cPacket_PlayerPosition::cPacket_PlayerPosition( cPlayer* a_Player )
|
|
|
|
{
|
|
|
|
m_PacketID = E_PLAYERPOS;
|
|
|
|
|
|
|
|
m_PosX = a_Player->GetPosX();
|
|
|
|
m_PosY = a_Player->GetPosY() + 1.65;
|
|
|
|
m_PosZ = a_Player->GetPosZ();
|
|
|
|
m_Stance = a_Player->GetStance();
|
|
|
|
m_bFlying = a_Player->GetFlying();
|
|
|
|
}
|
|
|
|
|
2012-02-07 15:49:52 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int cPacket_PlayerPosition::Parse(const char * a_Data, int a_Size)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-07 15:49:52 -05:00
|
|
|
int TotalBytes = 0;
|
|
|
|
HANDLE_PACKET_READ(ReadDouble, m_PosX, TotalBytes);
|
|
|
|
HANDLE_PACKET_READ(ReadDouble, m_PosY, TotalBytes);
|
|
|
|
HANDLE_PACKET_READ(ReadDouble, m_Stance, TotalBytes);
|
|
|
|
HANDLE_PACKET_READ(ReadDouble, m_PosZ, TotalBytes);
|
|
|
|
HANDLE_PACKET_READ(ReadBool, m_bFlying, TotalBytes);
|
|
|
|
return TotalBytes;
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-02-07 15:49:52 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cPacket_PlayerPosition::Serialize(AString & a_Data) const
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2012-02-07 15:49:52 -05:00
|
|
|
AppendByte (a_Data, m_PacketID);
|
|
|
|
AppendDouble (a_Data, m_PosX);
|
|
|
|
AppendDouble (a_Data, m_PosY);
|
|
|
|
AppendDouble (a_Data, m_Stance);
|
|
|
|
AppendDouble (a_Data, m_PosZ);
|
|
|
|
AppendBool (a_Data, m_bFlying);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|