From 243083e01a4b6b496ca4c0ed0a4a33499cd41936 Mon Sep 17 00:00:00 2001 From: 12xx12 <44411062+12xx12@users.noreply.github.com> Date: Mon, 15 Mar 2021 03:47:55 +0100 Subject: Adding basic Banner functionality (#4806) + Added item and block for banners Co-authored-by: 12xx12 <12xx12100@gmail.com> Co-authored-by: Tiger Wang --- src/BlockEntities/BannerEntity.h | 43 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/BlockEntities/BannerEntity.h (limited to 'src/BlockEntities/BannerEntity.h') diff --git a/src/BlockEntities/BannerEntity.h b/src/BlockEntities/BannerEntity.h new file mode 100644 index 000000000..d265f3279 --- /dev/null +++ b/src/BlockEntities/BannerEntity.h @@ -0,0 +1,43 @@ + +// BannerEntity.h + +// Declares the cBannerEntity class representing a single banner in the world + + + + + +#pragma once + +#include "BlockEntity.h" + + + + + +// tolua_begin +class cBannerEntity : + public cBlockEntity +{ + // tolua_end + + using Super = cBlockEntity; + +public: + + cBannerEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World); + cBannerEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World, unsigned char a_BaseColor); + + unsigned char GetBaseColor() const; + void SetBaseColor(unsigned char a_Color); + +private: + + unsigned char m_BaseColor; + + // cBlockEntity overrides: + virtual cItems ConvertToPickups() const override; + virtual void CopyFrom(const cBlockEntity & a_Src) override; + virtual void SendTo(cClientHandle & a_Client) override; + virtual bool UsedBy(cPlayer * a_Player) override { return true; } +} ; // tolua_export -- cgit v1.2.3