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_EntityLook.h"
|
|
|
|
|
2012-01-27 09:04:28 -05:00
|
|
|
#include "../cEntity.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_EntityLook::cPacket_EntityLook(cEntity* a_Entity)
|
|
|
|
{
|
|
|
|
m_PacketID = E_ENT_LOOK;
|
|
|
|
|
|
|
|
m_UniqueID = a_Entity->GetUniqueID();
|
2012-02-07 15:49:52 -05:00
|
|
|
m_Rotation = (char)((a_Entity->GetRotation() / 360.f) * 256);
|
|
|
|
m_Pitch = (char)((a_Entity->GetPitch() / 360.f) * 256);
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
2012-02-07 15:49:52 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cPacket_EntityLook::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);
|
|
|
|
AppendInteger(a_Data, m_UniqueID);
|
|
|
|
AppendByte (a_Data, m_Rotation);
|
|
|
|
AppendByte (a_Data, m_Pitch);
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
2012-02-07 15:49:52 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|