10 #include "../ClientHandle.h"
17 Super(a_BlockType, a_BlockMeta, a_Pos, a_World),
18 m_BaseColor(a_BaseColor),
19 m_CustomName(
std::move(a_CustomName))
@ E_BLOCK_STANDING_BANNER
unsigned char NIBBLETYPE
The datatype used by nibbledata (meta, light, skylight)
unsigned char BLOCKTYPE
The datatype used by blockdata.
virtual bool UsedBy(cPlayer *a_Player) override
Called when a player uses this entity; should open the UI window.
virtual void SendTo(cClientHandle &a_Client) override
Sends the packet defining the block entity to the client specified.
virtual void CopyFrom(const cBlockEntity &a_Src) override
Copies all properties of a_Src into this entity, except for its m_World and location.
unsigned char GetBaseColor() const
cBannerEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld *a_World, unsigned char a_BaseColor=1, AString a_CustomName="")
virtual cItems ConvertToPickups() const override
Returns the contents of this block entity that it would drop if broken.
unsigned char m_BaseColor
BLOCKTYPE m_BlockType
The blocktype representing this particular instance in the world.
NIBBLETYPE m_BlockMeta
The block meta representing this particular instance in the world Mainly used for directional entitie...
Vector3i m_Pos
Position in absolute block coordinates.
virtual void CopyFrom(const cBlockEntity &a_Src)
Copies all properties of a_Src into this entity, except for its m_World and location.
void SendBlockChange(Vector3i a_BlockPos, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta)
void SendUpdateBlockEntity(cBlockEntity &a_BlockEntity)
This class bridges a vector of cItem for safe access via Lua.