Cuberite
A lightweight, fast and extensible game server for Minecraft
BannerEntity.cpp
Go to the documentation of this file.
1 
2 // BannerEntity.cpp
3 
4 // Implements the cBannerEntity class representing a banner block in the world
5 
6 #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
7 #include "BannerEntity.h"
8 
9 #include "../World.h"
10 #include "../ClientHandle.h"
11 
12 
13 
14 
15 
16 cBannerEntity::cBannerEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World, unsigned char a_BaseColor, AString a_CustomName):
17  Super(a_BlockType, a_BlockMeta, a_Pos, a_World),
18  m_BaseColor(a_BaseColor),
19  m_CustomName(std::move(a_CustomName))
20 {
21  ASSERT((a_BlockType == E_BLOCK_WALL_BANNER) || (a_BlockType == E_BLOCK_STANDING_BANNER));
22 }
23 
24 
25 
26 
27 
29 {
30  cItem Item(E_ITEM_BANNER, 1, static_cast<NIBBLETYPE>(GetBaseColor()));
31  Item.m_CustomName = m_CustomName;
32  return Item;
33 }
34 
35 
36 
37 
38 
40 {
41  Super::CopyFrom(a_Src);
42  auto & src = static_cast<const cBannerEntity &>(a_Src);
43  m_BaseColor = src.m_BaseColor;
44  m_CustomName = src.m_CustomName;
45 }
46 
47 
48 
49 
50 
52 {
54  a_Client.SendUpdateBlockEntity(*this);
55 }
56 
57 
58 
59 
60 
62 {
63  UNUSED(a_Player);
64  return false;
65 }
@ E_BLOCK_STANDING_BANNER
Definition: BlockType.h:195
@ E_BLOCK_WALL_BANNER
Definition: BlockType.h:196
@ E_ITEM_BANNER
Definition: BlockType.h:472
unsigned char NIBBLETYPE
The datatype used by nibbledata (meta, light, skylight)
Definition: ChunkDef.h:44
unsigned char BLOCKTYPE
The datatype used by blockdata.
Definition: ChunkDef.h:41
#define ASSERT(x)
Definition: Globals.h:276
#define UNUSED
Definition: Globals.h:72
Item
Definition: Items.h:4
std::string AString
Definition: StringUtils.h:11
Definition: FastNBT.h:132
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.
AString m_CustomName
Definition: BannerEntity.h:40
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
Definition: BannerEntity.h:30
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
Definition: BannerEntity.h:38
BLOCKTYPE m_BlockType
The blocktype representing this particular instance in the world.
Definition: BlockEntity.h:120
NIBBLETYPE m_BlockMeta
The block meta representing this particular instance in the world Mainly used for directional entitie...
Definition: BlockEntity.h:124
Vector3i m_Pos
Position in absolute block coordinates.
Definition: BlockEntity.h:113
virtual void CopyFrom(const cBlockEntity &a_Src)
Copies all properties of a_Src into this entity, except for its m_World and location.
Definition: BlockEntity.cpp:66
void SendBlockChange(Vector3i a_BlockPos, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta)
void SendUpdateBlockEntity(cBlockEntity &a_BlockEntity)
Definition: Player.h:29
Definition: Item.h:37
This class bridges a vector of cItem for safe access via Lua.
Definition: Item.h:215
Definition: World.h:53