Files
cuberite-2a/src/Blocks/BlockRedstoneRepeater.h
T

154 lines
3.7 KiB
C++
Raw Normal View History

2013-07-29 12:13:03 +01:00
#pragma once
#include "BlockHandler.h"
2014-02-01 06:01:13 -08:00
#include "Chunk.h"
#include "MetaRotator.h"
2014-09-26 18:13:19 +01:00
#include "ChunkInterface.h"
2014-10-19 15:01:01 +02:00
#include "BlockSlab.h"
2013-07-29 12:13:03 +01:00
class cBlockRedstoneRepeaterHandler :
public cMetaRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03, true>
2013-07-29 12:13:03 +01:00
{
public:
2013-11-29 22:25:07 +00:00
cBlockRedstoneRepeaterHandler(BLOCKTYPE a_BlockType)
: cMetaRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03, true>(a_BlockType)
2013-11-29 22:25:07 +00:00
{
}
virtual bool GetPlacementBlockTypeMeta(
2017-07-31 21:17:52 +01: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-11-29 22:25:07 +00:00
int a_CursorX, int a_CursorY, int a_CursorZ,
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
2014-08-19 22:14:37 +02:00
) override
2013-11-29 22:25:07 +00:00
{
a_BlockType = m_BlockType;
2017-07-31 21:17:52 +01:00
a_BlockMeta = RepeaterRotationToMetaData(a_Player.GetYaw());
2013-11-29 22:25:07 +00:00
return true;
}
2017-07-31 21:17:52 +01:00
virtual bool 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
{
a_ChunkInterface.SetBlockMeta(a_BlockX, a_BlockY, a_BlockZ, ((a_ChunkInterface.GetBlockMeta({a_BlockX, a_BlockY, a_BlockZ}) + 0x04) & 0x0f));
return true;
2013-11-29 22:25:07 +00:00
}
2013-07-29 12:13:03 +01:00
2017-07-31 21:17:52 +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);
2017-07-31 21:17:52 +01:00
a_WorldInterface.SendBlockTo(a_BlockX, a_BlockY, a_BlockZ, a_Player);
}
2013-07-29 12:13:03 +01:00
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
{
2014-08-19 22:14:37 +02:00
// Reset meta to zero
2013-07-29 12:13:03 +01:00
a_Pickups.push_back(cItem(E_ITEM_REDSTONE_REPEATER, 1, 0));
}
virtual bool IsUseable(void) override
{
return true;
}
2016-02-05 23:45:45 +02:00
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-07-29 12:13:03 +01:00
{
2014-10-19 15:01:01 +02:00
if (a_RelY <= 0)
{
return false;
}
BLOCKTYPE BelowBlock;
NIBBLETYPE BelowBlockMeta;
a_Chunk.GetBlockTypeMeta(a_RelX, a_RelY - 1, a_RelZ, BelowBlock, BelowBlockMeta);
if (cBlockInfo::FullyOccupiesVoxel(BelowBlock))
{
return true;
}
else if (cBlockSlabHandler::IsAnySlabType(BelowBlock))
{
// Check if the slab is turned up side down
if ((BelowBlockMeta & 0x08) == 0x08)
{
return true;
}
}
return false;
2013-07-29 12:13:03 +01:00
}
2013-09-18 00:01:20 +01:00
2013-11-18 22:30:34 +00:00
inline static NIBBLETYPE RepeaterRotationToMetaData(double a_Rotation)
{
2014-07-17 22:15:34 +02:00
a_Rotation += 90 + 45; // So its not aligned with axis
2013-11-18 22:30:34 +00:00
if (a_Rotation > 360)
{
a_Rotation -= 360;
}
if ((a_Rotation >= 0) && (a_Rotation < 90))
{
return 0x1;
}
else if ((a_Rotation >= 180) && (a_Rotation < 270))
{
return 0x3;
}
else if ((a_Rotation >= 90) && (a_Rotation < 180))
{
return 0x2;
}
else
{
return 0x0;
}
}
2015-06-30 15:50:15 +01:00
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
{
UNUSED(a_Meta);
return 11;
}
2015-06-26 17:24:51 -05:00
inline static Vector3i GetRearCoordinateOffset(NIBBLETYPE a_Meta)
{
switch (a_Meta & 0x3) // We only want the direction (bottom) bits
{
case 0x0: return {0, 0, 1};
case 0x1: return {-1, 0, 0};
case 0x2: return {0, 0, -1};
case 0x3: return {1, 0, 0};
default:
{
LOGWARNING("%s: Unknown metadata: %d", __FUNCTION__, a_Meta);
ASSERT(!"Unknown metadata while determining orientation of repeater!");
return {0, 0, 0};
}
}
}
inline static Vector3i GetFrontCoordinateOffset(NIBBLETYPE a_Meta)
{
switch (a_Meta & 0x3) // We only want the direction (bottom) bits
{
case 0x0: return {0, 0, -1};
case 0x1: return {1, 0, 0};
case 0x2: return {0, 0, 1};
case 0x3: return {-1, 0, 0};
default:
{
LOGWARNING("%s: Unknown metadata: %d", __FUNCTION__, a_Meta);
ASSERT(!"Unknown metadata while determining orientation of repeater!");
return {0, 0, 0};
}
}
}
2013-07-29 12:13:03 +01:00
} ;