2014-02-19 08:45:09 -05:00
|
|
|
|
|
|
|
// MobHeadEntity.cpp
|
|
|
|
|
|
|
|
// Implements the cMobHeadEntity class representing a single skull/head in the world
|
|
|
|
|
|
|
|
#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),
|
2014-04-26 18:32:14 -04:00
|
|
|
m_Type(SKULL_TYPE_SKELETON),
|
|
|
|
m_Rotation(SKULL_ROTATION_NORTH),
|
2014-02-19 08:45:09 -05:00
|
|
|
m_Owner("")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMobHeadEntity::UsedBy(cPlayer * a_Player)
|
|
|
|
{
|
|
|
|
UNUSED(a_Player);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMobHeadEntity::SetType(const eMobHeadType & a_Type)
|
|
|
|
{
|
|
|
|
if ((!m_Owner.empty()) && (a_Type != SKULL_TYPE_PLAYER))
|
|
|
|
{
|
|
|
|
m_Owner = "";
|
|
|
|
}
|
|
|
|
m_Type = a_Type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMobHeadEntity::SetRotation(eMobHeadRotation a_Rotation)
|
|
|
|
{
|
|
|
|
m_Rotation = a_Rotation;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMobHeadEntity::SetOwner(const AString & a_Owner)
|
|
|
|
{
|
|
|
|
if ((a_Owner.length() > 16) || (m_Type != SKULL_TYPE_PLAYER))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_Owner = a_Owner;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMobHeadEntity::SendTo(cClientHandle & a_Client)
|
|
|
|
{
|
2014-05-28 13:32:20 -04: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 08:45:09 -05:00
|
|
|
a_Client.SendUpdateBlockEntity(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|