From c52f299e724bf893944553ac3aeedf7bf0a58241 Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Sun, 2 Jan 2022 11:56:36 +0000 Subject: Handlers: update item and block handlers (#5371) + Resend blocks when server rejects placement because in a block * Fix chest handler not invoked, fixes #5367 * Fix comparator handler not invoked * Update some naming --- src/Blocks/BlockRedstone.h | 70 ---------------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 src/Blocks/BlockRedstone.h (limited to 'src/Blocks/BlockRedstone.h') diff --git a/src/Blocks/BlockRedstone.h b/src/Blocks/BlockRedstone.h deleted file mode 100644 index d77ff151a..000000000 --- a/src/Blocks/BlockRedstone.h +++ /dev/null @@ -1,70 +0,0 @@ - -#pragma once - -#include "BlockHandler.h" -#include "BlockSlab.h" - - - - - -class cBlockRedstoneHandler final : - public cBlockHandler -{ - using Super = cBlockHandler; - -public: - - using Super::Super; - -private: - - virtual bool CanBeAt(const cChunk & a_Chunk, const Vector3i a_Position, const NIBBLETYPE a_Meta) const override - { - if (a_Position.y <= 0) - { - return false; - } - - BLOCKTYPE BelowBlock; - NIBBLETYPE BelowBlockMeta; - a_Chunk.GetBlockTypeMeta(a_Position.addedY(-1), BelowBlock, BelowBlockMeta); - - if (cBlockInfo::FullyOccupiesVoxel(BelowBlock)) - { - return true; - } - else if (cBlockSlabHandler::IsAnySlabType(BelowBlock)) - { - // Check if the slab is turned up side down - if ((BelowBlockMeta & 0x08) == 0x08) - { - return true; - } - } - return false; - } - - - - - - virtual cItems ConvertToPickups(const NIBBLETYPE a_BlockMeta, const cItem * const a_Tool) const override - { - return cItem(E_ITEM_REDSTONE_DUST, 1, 0); - } - - - - - - virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override - { - UNUSED(a_Meta); - return 0; - } -} ; - - - - -- cgit v1.2.3