1
0
Fork 0
cuberite-2a/src/BlockEntities/MobHeadEntity.cpp

110 lines
1.9 KiB
C++
Raw Normal View History

2014-02-19 13:45:09 +00:00
// MobHeadEntity.cpp
// Implements the cMobHeadEntity class representing a single skull / head in the world
2014-02-19 13:45:09 +00:00
#include "Globals.h"
#include "MobHeadEntity.h"
#include "../Entities/Player.h"
cMobHeadEntity::cMobHeadEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World) :
super(E_BLOCK_HEAD, a_BlockX, a_BlockY, a_BlockZ, a_World),
m_Type(SKULL_TYPE_SKELETON),
m_Rotation(SKULL_ROTATION_NORTH)
2014-02-19 13:45:09 +00:00
{
}
bool cMobHeadEntity::UsedBy(cPlayer * a_Player)
2014-02-19 13:45:09 +00:00
{
UNUSED(a_Player);
return true;
2014-02-19 13:45:09 +00:00
}
void cMobHeadEntity::SetType(const eMobHeadType & a_Type)
{
if ((!m_OwnerName.empty()) && (a_Type != SKULL_TYPE_PLAYER))
2014-02-19 13:45:09 +00:00
{
m_OwnerName = m_OwnerUUID = m_OwnerTexture = m_OwnerTextureSignature = "";
2014-02-19 13:45:09 +00:00
}
m_Type = a_Type;
}
void cMobHeadEntity::SetRotation(eMobHeadRotation a_Rotation)
{
m_Rotation = a_Rotation;
}
void cMobHeadEntity::SetOwner(const cPlayer & a_Owner)
2014-02-19 13:45:09 +00:00
{
if (m_Type != SKULL_TYPE_PLAYER)
2014-02-19 13:45:09 +00:00
{
return;
}
m_OwnerName = a_Owner.GetName();
m_OwnerUUID = a_Owner.GetUUID();
const Json::Value & Properties = a_Owner.GetClientHandle()->GetProperties();
for (auto & Node : Properties)
{
if (Node.get("name", "").asString() == "textures")
{
m_OwnerTexture = Node.get("value", "").asString();
m_OwnerTextureSignature = Node.get("signature", "").asString();
break;
}
}
}
void cMobHeadEntity::SetOwner(const AString & a_OwnerUUID, const AString & a_OwnerName, const AString & a_OwnerTexture, const AString & a_OwnerTextureSignature)
{
if (m_Type != SKULL_TYPE_PLAYER)
{
return;
}
m_OwnerUUID = a_OwnerUUID;
m_OwnerName = a_OwnerName;
m_OwnerTexture = a_OwnerTexture;
m_OwnerTextureSignature = a_OwnerTextureSignature;
2014-02-19 13:45:09 +00:00
}
void cMobHeadEntity::SendTo(cClientHandle & a_Client)
{
2014-05-28 17:32:20 +00:00
cWorld * World = a_Client.GetPlayer()->GetWorld();
a_Client.SendBlockChange(m_PosX, m_PosY, m_PosZ, m_BlockType, World->GetBlockMeta(m_PosX, m_PosY, m_PosZ));
2014-02-19 13:45:09 +00:00
a_Client.SendUpdateBlockEntity(*this);
}