1
0
Fork 0
cuberite-2a/src/Blocks/BlockPressurePlate.h

74 lines
1.3 KiB
C
Raw Normal View History

2014-06-16 22:40:35 +00:00
#pragma once
#include "BlockHandler.h"
class cBlockPressurePlateHandler :
public cClearMetaOnDrop<cBlockHandler>
2014-06-16 22:40:35 +00:00
{
2020-04-13 16:38:06 +00:00
using Super = cClearMetaOnDrop<cBlockHandler>;
2014-06-16 22:40:35 +00:00
public:
using Super::Super;
private:
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, const Vector3i a_RelPos, const cChunk & a_Chunk) const override
2014-06-16 22:40:35 +00:00
{
if (a_RelPos.y <= 1)
2014-06-16 22:40:35 +00:00
{
return false;
}
// TODO: check if the block is upside-down slab or upside-down stairs
auto Block = a_Chunk.GetBlock(a_RelPos.addedY(-1));
switch (Block)
{
case E_BLOCK_ACACIA_FENCE:
case E_BLOCK_BIRCH_FENCE:
case E_BLOCK_DARK_OAK_FENCE:
case E_BLOCK_FENCE:
case E_BLOCK_HOPPER:
case E_BLOCK_JUNGLE_FENCE:
case E_BLOCK_NETHER_BRICK_FENCE:
case E_BLOCK_SPRUCE_FENCE:
{
return true;
}
default:
{
return (!cBlockInfo::IsTransparent(Block));
}
}
2014-06-16 22:40:35 +00:00
}
2015-06-30 14:50:15 +00:00
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
2015-06-30 14:50:15 +00:00
{
UNUSED(a_Meta);
switch (m_BlockType)
{
case E_BLOCK_STONE_PRESSURE_PLATE: return 11;
case E_BLOCK_WOODEN_PRESSURE_PLATE: return 13;
case E_BLOCK_HEAVY_WEIGHTED_PRESSURE_PLATE: return 6;
case E_BLOCK_LIGHT_WEIGHTED_PRESSURE_PLATE: return 30;
default:
{
ASSERT(!"Unhandled blocktype in pressure plate handler!");
return 0;
}
}
}
2014-06-16 22:41:31 +00:00
} ;