2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "BlockHandler.h"
|
2014-03-25 17:26:13 -04:00
|
|
|
#include "MetaRotator.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockFenceGateHandler :
|
2014-03-25 17:26:13 -04:00
|
|
|
public cMetaRotator<cBlockHandler, 0x03, 0x02, 0x03, 0x00, 0x01, true>
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cBlockFenceGateHandler(BLOCKTYPE a_BlockType) :
|
2014-03-25 17:26:13 -04:00
|
|
|
cMetaRotator<cBlockHandler, 0x03, 0x02, 0x03, 0x00, 0x01, true>(a_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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-07-29 07:13:03 -04:00
|
|
|
int a_CursorX, int a_CursorY, int a_CursorZ,
|
|
|
|
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
|
|
|
|
) override
|
|
|
|
{
|
|
|
|
a_BlockType = m_BlockType;
|
2014-01-17 05:11:17 -05:00
|
|
|
a_BlockMeta = PlayerYawToMetaData(a_Player->GetYaw());
|
2013-07-29 07:13:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-07-29 07:13:03 -04:00
|
|
|
{
|
2014-02-01 08:06:32 -05:00
|
|
|
NIBBLETYPE OldMetaData = a_ChunkInterface.GetBlockMeta(a_BlockX, a_BlockY, a_BlockZ);
|
2014-01-17 05:11:17 -05:00
|
|
|
NIBBLETYPE NewMetaData = PlayerYawToMetaData(a_Player->GetYaw());
|
2013-07-29 07:13:03 -04:00
|
|
|
OldMetaData ^= 4; // Toggle the gate
|
|
|
|
if ((OldMetaData & 1) == (NewMetaData & 1))
|
|
|
|
{
|
|
|
|
// Standing in front of the gate - apply new direction
|
2014-02-01 08:06:32 -05:00
|
|
|
a_ChunkInterface.SetBlockMeta(a_BlockX, a_BlockY, a_BlockZ, (OldMetaData & 4) | (NewMetaData & 3));
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Standing aside - use last direction
|
2014-02-01 08:06:32 -05:00
|
|
|
a_ChunkInterface.SetBlockMeta(a_BlockX, a_BlockY, a_BlockZ, OldMetaData);
|
2013-07-29 07:13:03 -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
|
|
|
a_WorldInterface.SendBlockTo(a_BlockX, a_BlockY, a_BlockZ, a_Player);
|
2014-03-05 09:10:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual bool IsUseable(void) override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2013-09-09 04:49:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
/// Converts the player's yaw to placed gate's blockmeta
|
|
|
|
inline static NIBBLETYPE PlayerYawToMetaData(double a_Yaw)
|
|
|
|
{
|
|
|
|
ASSERT((a_Yaw >= -180) && (a_Yaw < 180));
|
|
|
|
|
|
|
|
a_Yaw += 360 + 45;
|
|
|
|
if (a_Yaw > 360)
|
|
|
|
{
|
|
|
|
a_Yaw -= 360;
|
|
|
|
}
|
|
|
|
if ((a_Yaw >= 0) && (a_Yaw < 90))
|
|
|
|
{
|
|
|
|
return 0x0;
|
|
|
|
}
|
|
|
|
else if ((a_Yaw >= 180) && (a_Yaw < 270))
|
|
|
|
{
|
|
|
|
return 0x2;
|
|
|
|
}
|
|
|
|
else if ((a_Yaw >= 90) && (a_Yaw < 180))
|
|
|
|
{
|
|
|
|
return 0x1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0x3;
|
|
|
|
}
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|