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

74 lines
1.4 KiB
C
Raw Normal View History

2014-06-16 22:40:35 +00:00
#pragma once
#include "BlockHandler.h"
class cBlockPressurePlateHandler :
public cBlockHandler
{
public:
cBlockPressurePlateHandler(BLOCKTYPE a_BlockType)
: cBlockHandler(a_BlockType)
{
}
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
{
2014-08-19 20:14:37 +00:00
// Reset meta to zero
2014-06-16 22:40:35 +00:00
a_Pickups.push_back(cItem(m_BlockType, 1, 0));
}
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
{
if (a_RelY - 1 <= 0)
2014-06-16 22:40:35 +00:00
{
return false;
}
// TODO: check if the block is upside-down slab or upside-down stairs
BLOCKTYPE Block = a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ);
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) override
{
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
} ;