eb3ed1aec1
Also changed cItem::m_ItemID into m_ItemType of type short. Easier handling. m_ItemID kept for compatibility reasons (Lua-interface etc.) git-svn-id: http://mc-server.googlecode.com/svn/trunk@756 0a769ca7-a7f5-676a-18bf-c427514a06d6
241 lines
5.4 KiB
C++
241 lines
5.4 KiB
C++
|
|
// cPacket_Player.cpp
|
|
|
|
/* Implements the player-related packets:
|
|
- PlayerAbilities (0xca)
|
|
- PlayerListItem (0xc9)
|
|
- PlayerLook (0x0c)
|
|
- PlayerMoveLook (0x0d)
|
|
- PlayerPosition (0x0b)
|
|
*/
|
|
|
|
#include "Globals.h"
|
|
|
|
#include "cPacket_Player.h"
|
|
#include "../cPlayer.h"
|
|
#include "../cChatColor.h"
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// cPacket_PlayerAbilities:
|
|
|
|
int cPacket_PlayerAbilities::Parse(cByteBuffer & a_Buffer)
|
|
{
|
|
int TotalBytes = 0;
|
|
HANDLE_PACKET_READ(ReadBool, m_Invulnerable, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBool, m_IsFlying, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBool, m_CanFly, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBool, m_InstaMine, TotalBytes);
|
|
return TotalBytes;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cPacket_PlayerAbilities::Serialize(AString & a_Data) const
|
|
{
|
|
char Data[5];
|
|
Data[0] = m_PacketID;
|
|
Data[1] = (char)m_Invulnerable;
|
|
Data[2] = (char)m_IsFlying;
|
|
Data[3] = (char)m_CanFly;
|
|
Data[4] = (char)m_InstaMine;
|
|
a_Data.append(Data, 5);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// cPacket_PlayerListItem:
|
|
|
|
cPacket_PlayerListItem::cPacket_PlayerListItem(const AString & a_PlayerName, bool a_Online, short a_Ping)
|
|
{
|
|
m_PacketID = E_PLAYER_LIST_ITEM;
|
|
m_PlayerName = a_PlayerName;
|
|
m_Online = a_Online;
|
|
m_Ping = a_Ping;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int cPacket_PlayerListItem::Parse(cByteBuffer & a_Buffer)
|
|
{
|
|
int TotalBytes = 0;
|
|
HANDLE_PACKET_READ(ReadBEUTF16String16, m_PlayerName, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBool, m_Online, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEShort, m_Ping, TotalBytes);
|
|
return TotalBytes;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cPacket_PlayerListItem::Serialize(AString & a_Data) const
|
|
{
|
|
AString PlayerName(m_PlayerName);
|
|
if (PlayerName.length() > 16)
|
|
{
|
|
PlayerName.erase(16);
|
|
}
|
|
else if (PlayerName.length() <= 14)
|
|
{
|
|
PlayerName += cChatColor::White;
|
|
}
|
|
|
|
AppendByte (a_Data, m_PacketID);
|
|
AppendString16(a_Data, PlayerName);
|
|
AppendBool (a_Data, m_Online);
|
|
AppendShort (a_Data, m_Ping);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// cPacket_PlayerLook:
|
|
|
|
cPacket_PlayerLook::cPacket_PlayerLook( cPlayer* a_Player )
|
|
{
|
|
m_PacketID = E_PLAYERLOOK;
|
|
m_Rotation = a_Player->GetRotation();
|
|
m_Pitch = a_Player->GetPitch();
|
|
m_IsOnGround = a_Player->IsOnGround();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int cPacket_PlayerLook::Parse(cByteBuffer & a_Buffer)
|
|
{
|
|
int TotalBytes = 0;
|
|
HANDLE_PACKET_READ(ReadBEFloat, m_Rotation, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEFloat, m_Pitch, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBool, m_IsOnGround, TotalBytes);
|
|
return TotalBytes;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cPacket_PlayerLook::Serialize(AString & a_Data) const
|
|
{
|
|
AppendByte (a_Data, m_PacketID);
|
|
AppendFloat (a_Data, m_Rotation);
|
|
AppendFloat (a_Data, m_Pitch);
|
|
AppendBool (a_Data, m_IsOnGround);
|
|
}
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// cPacket_PlayerMoveLook:
|
|
|
|
cPacket_PlayerMoveLook::cPacket_PlayerMoveLook( cPlayer* a_Player )
|
|
{
|
|
m_PacketID = E_PLAYERMOVELOOK;
|
|
m_PosX = a_Player->GetPosX();
|
|
m_PosY = a_Player->GetPosY() + 1.65;
|
|
m_PosZ = a_Player->GetPosZ();
|
|
m_Stance = a_Player->GetStance();
|
|
m_Rotation = a_Player->GetRotation();
|
|
m_Pitch = a_Player->GetPitch();
|
|
m_IsOnGround = a_Player->IsOnGround();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int cPacket_PlayerMoveLook::Parse(cByteBuffer & a_Buffer)
|
|
{
|
|
int TotalBytes = 0;
|
|
HANDLE_PACKET_READ(ReadBEDouble, m_PosX, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEDouble, m_PosY, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEDouble, m_Stance, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEDouble, m_PosZ, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEFloat, m_Rotation, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEFloat, m_Pitch, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBool, m_IsOnGround, TotalBytes);
|
|
return TotalBytes;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cPacket_PlayerMoveLook::Serialize(AString & a_Data) const
|
|
{
|
|
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);
|
|
AppendFloat (a_Data, m_Rotation);
|
|
AppendFloat (a_Data, m_Pitch);
|
|
AppendBool (a_Data, m_IsOnGround);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// cPacket_PlayerPosition:
|
|
|
|
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_IsOnGround = a_Player->IsOnGround();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int cPacket_PlayerPosition::Parse(cByteBuffer & a_Buffer)
|
|
{
|
|
int TotalBytes = 0;
|
|
HANDLE_PACKET_READ(ReadBEDouble, m_PosX, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEDouble, m_PosY, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEDouble, m_Stance, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEDouble, m_PosZ, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBool, m_IsOnGround, TotalBytes);
|
|
return TotalBytes;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cPacket_PlayerPosition::Serialize(AString & a_Data) const
|
|
{
|
|
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_IsOnGround);
|
|
}
|
|
|
|
|
|
|
|
|