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