2013-09-18 18:27:21 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "BlockHandler.h"
|
2013-11-29 22:25:07 +00:00
|
|
|
#include "BlockRedstoneRepeater.h"
|
2014-03-25 17:26:13 -04:00
|
|
|
#include "MetaRotator.h"
|
2013-09-18 18:27:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockComparatorHandler :
|
2014-03-25 17:26:13 -04:00
|
|
|
public cMetaRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03, true>
|
2013-09-18 18:27:21 +01:00
|
|
|
{
|
|
|
|
public:
|
2013-11-29 22:25:07 +00:00
|
|
|
cBlockComparatorHandler(BLOCKTYPE a_BlockType)
|
2014-03-25 17:26:13 -04:00
|
|
|
: cMetaRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03, true>(a_BlockType)
|
2013-11-29 22:25:07 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-09-18 18:27:21 +01:00
|
|
|
|
2014-02-04 10:59:05 -08:00
|
|
|
virtual void OnUse(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ) override
|
2013-11-29 22:25:07 +00:00
|
|
|
{
|
2014-02-01 05:06:32 -08:00
|
|
|
NIBBLETYPE Meta = a_ChunkInterface.GetBlockMeta(a_BlockX, a_BlockY, a_BlockZ);
|
2015-05-09 09:25:09 +02:00
|
|
|
Meta ^= 0x04; // Toggle 3rd (addition / subtraction) bit with XOR
|
2014-02-01 05:06:32 -08:00
|
|
|
a_ChunkInterface.SetBlockMeta(a_BlockX, a_BlockY, a_BlockZ, Meta);
|
2013-11-29 22:25:07 +00:00
|
|
|
}
|
2013-09-18 18:27:21 +01:00
|
|
|
|
|
|
|
|
2014-03-05 15:10:20 +01:00
|
|
|
virtual void OnCancelRightClick(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace) override
|
|
|
|
{
|
2014-03-05 19:33:43 +01:00
|
|
|
UNUSED(a_ChunkInterface);
|
|
|
|
a_WorldInterface.SendBlockTo(a_BlockX, a_BlockY, a_BlockZ, a_Player);
|
2014-03-05 15:10:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-18 18:27:21 +01:00
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
|
|
|
{
|
|
|
|
// Reset meta to 0
|
|
|
|
a_Pickups.push_back(cItem(E_ITEM_COMPARATOR, 1, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
virtual bool IsUseable(void) override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-01 05:06:32 -08:00
|
|
|
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
|
2013-09-18 18:27:21 +01:00
|
|
|
{
|
|
|
|
return ((a_RelY > 0) && (a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ) != E_BLOCK_AIR));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
virtual bool GetPlacementBlockTypeMeta(
|
2014-02-01 05:06:32 -08:00
|
|
|
cChunkInterface & a_ChunkInterface, cPlayer * a_Player,
|
2014-02-04 10:59:05 -08:00
|
|
|
int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace,
|
2013-09-18 18:27:21 +01:00
|
|
|
int a_CursorX, int a_CursorY, int a_CursorZ,
|
|
|
|
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
|
2013-11-29 22:25:07 +00:00
|
|
|
) override
|
|
|
|
{
|
|
|
|
a_BlockType = m_BlockType;
|
2014-01-17 11:11:17 +01:00
|
|
|
a_BlockMeta = cBlockRedstoneRepeaterHandler::RepeaterRotationToMetaData(a_Player->GetYaw());
|
2013-11-29 22:25:07 +00:00
|
|
|
return true;
|
|
|
|
}
|
2013-09-18 18:27:21 +01:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|