diff options
author | mjagdis <mjagdis@eris-associates.co.uk> | 2024-11-01 23:16:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-01 23:16:53 +0100 |
commit | 65b7040c5e1df5c3b9778d9703bd4d12b001c28d (patch) | |
tree | c9d5929bdc29d5635eb0dfcc6fae230d11038be3 /src/Blocks/BlockWallBanner.h | |
parent | Uninitialised value fix (#5570) (diff) | |
download | cuberite-65b7040c5e1df5c3b9778d9703bd4d12b001c28d.tar cuberite-65b7040c5e1df5c3b9778d9703bd4d12b001c28d.tar.gz cuberite-65b7040c5e1df5c3b9778d9703bd4d12b001c28d.tar.bz2 cuberite-65b7040c5e1df5c3b9778d9703bd4d12b001c28d.tar.lz cuberite-65b7040c5e1df5c3b9778d9703bd4d12b001c28d.tar.xz cuberite-65b7040c5e1df5c3b9778d9703bd4d12b001c28d.tar.zst cuberite-65b7040c5e1df5c3b9778d9703bd4d12b001c28d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockWallBanner.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/Blocks/BlockWallBanner.h b/src/Blocks/BlockWallBanner.h new file mode 100644 index 000000000..e0ebb8eee --- /dev/null +++ b/src/Blocks/BlockWallBanner.h @@ -0,0 +1,64 @@ + +// BlockWallBanner.h + +#pragma once + +#include "../BlockInfo.h" +#include "BlockEntity.h" + + + + + +class cBlockWallBannerHandler final : + public cBlockEntityHandler +{ + using Super = cBlockEntityHandler; + +public: + + using Super::Super; + + virtual cItems ConvertToPickups(const NIBBLETYPE a_BlockMeta, const cItem * const a_Tool) const override + { + // Drops handled by the block entity: + return {}; + } + + + + + + virtual bool CanBeAt(const cChunk & a_Chunk, const Vector3i a_Position, const NIBBLETYPE a_Meta) const override + { + Vector3i Offset; + + switch (a_Meta) + { + case BLOCK_FACE_ZM: Offset = Vector3i( 0, 0, 1); break; + case BLOCK_FACE_ZP: Offset = Vector3i( 0, 0, -1); break; + case BLOCK_FACE_XM: Offset = Vector3i( 1, 0, 0); break; + case BLOCK_FACE_XP: Offset = Vector3i(-1, 0, 0); break; + default: return false; + } + + auto NeighborPos = a_Position + Offset; + BLOCKTYPE NeighborType; + if (!a_Chunk.UnboundedRelGetBlockType(NeighborPos, NeighborType)) + { + // The neighbour is not accessible (unloaded chunk), we'll allow it for now. + return true; + } + return cBlockInfo::IsSolid(NeighborType); + } + + + + + + virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override + { + UNUSED(a_Meta); + return 0; + } +} ; |