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

38 lines
640 B
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 <= 0)
{
return false;
}
2014-10-24 23:22:31 +00:00
return (cBlockInfo::FullyOccupiesVoxel(a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ)));
2014-06-16 22:40:35 +00:00
}
2014-06-16 22:41:31 +00:00
} ;