2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "BlockHandler.h"
|
2018-08-28 20:51:25 -04:00
|
|
|
#include "../Chunk.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-10-05 06:27:14 -04:00
|
|
|
class cBlockSignPostHandler final :
|
2013-07-29 07:13:03 -04:00
|
|
|
public cBlockHandler
|
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
using Super = cBlockHandler;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
public:
|
2019-10-16 04:06:34 -04:00
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
using Super::Super;
|
|
|
|
|
|
|
|
/** Converts the (player) rotation to placed-signpost block meta. */
|
|
|
|
static NIBBLETYPE RotationToMetaData(double a_Rotation)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2020-09-20 09:50:52 -04:00
|
|
|
a_Rotation += 180 + (180 / 16); // So it's not aligned with axis
|
|
|
|
if (a_Rotation > 360)
|
|
|
|
{
|
|
|
|
a_Rotation -= 360;
|
|
|
|
}
|
2014-07-17 20:19:30 -04:00
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
a_Rotation = (a_Rotation / 360) * 16;
|
2019-10-16 04:06:34 -04:00
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
return (static_cast<char>(a_Rotation)) % 16;
|
|
|
|
}
|
2019-10-16 04:06:34 -04:00
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
private:
|
2019-10-16 04:06:34 -04:00
|
|
|
|
2020-09-23 11:06:27 -04:00
|
|
|
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, const cEntity * a_Digger, const cItem * a_Tool) const override
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2019-10-16 04:06:34 -04:00
|
|
|
return cItem(E_ITEM_SIGN, 1, 0);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
2014-07-17 20:19:30 -04:00
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, const Vector3i a_RelPos, const cChunk & a_Chunk) const override
|
2014-07-17 20:19:30 -04:00
|
|
|
{
|
2020-04-21 16:19:22 -04:00
|
|
|
if (a_RelPos.y <= 0)
|
2014-07-17 20:19:30 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2020-04-21 16:19:22 -04:00
|
|
|
BLOCKTYPE Type = a_Chunk.GetBlock(a_RelPos.addedY(-1));
|
2014-10-23 03:07:20 -04:00
|
|
|
return ((Type == E_BLOCK_SIGN_POST) || (Type == E_BLOCK_WALLSIGN) || cBlockInfo::IsSolid(Type));
|
2014-07-17 20:19:30 -04:00
|
|
|
}
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual NIBBLETYPE MetaRotateCW(NIBBLETYPE a_Meta) const override
|
2014-03-25 17:17:05 -04:00
|
|
|
{
|
2014-06-22 15:51:34 -04:00
|
|
|
return (a_Meta + 4) & 0x0f;
|
2014-03-25 17:17:05 -04:00
|
|
|
}
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual NIBBLETYPE MetaRotateCCW(NIBBLETYPE a_Meta) const override
|
2014-03-25 17:17:05 -04:00
|
|
|
{
|
2014-06-22 15:51:34 -04:00
|
|
|
return (a_Meta + 12) & 0x0f;
|
2014-03-25 17:17:05 -04:00
|
|
|
}
|
2014-03-29 10:00:44 -04:00
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual NIBBLETYPE MetaMirrorXY(NIBBLETYPE a_Meta) const override
|
2014-03-29 10:00:44 -04:00
|
|
|
{
|
2014-07-18 16:41:48 -04:00
|
|
|
// Mirrors signs over the XY plane (North-South Mirroring)
|
2014-03-29 10:00:44 -04:00
|
|
|
|
2014-07-18 16:41:48 -04:00
|
|
|
// There are 16 meta values which correspond to different directions.
|
|
|
|
// These values are equated to angles on a circle; 0x08 = 180 degrees.
|
2015-05-16 11:58:43 -04:00
|
|
|
return (a_Meta < 0x08) ? (0x08 - a_Meta) : (0x18 - a_Meta);
|
2014-03-29 10:00:44 -04:00
|
|
|
}
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual NIBBLETYPE MetaMirrorYZ(NIBBLETYPE a_Meta) const override
|
2014-03-29 10:00:44 -04:00
|
|
|
{
|
2014-07-18 16:41:48 -04:00
|
|
|
// Mirrors signs over the YZ plane (East-West Mirroring)
|
2014-03-29 10:00:44 -04:00
|
|
|
|
2014-07-18 16:41:48 -04:00
|
|
|
// There are 16 meta values which correspond to different directions.
|
|
|
|
// These values are equated to angles on a circle; 0x10 = 360 degrees.
|
2015-05-16 11:49:47 -04:00
|
|
|
return 0x0f - a_Meta;
|
2014-03-29 10:00:44 -04:00
|
|
|
}
|
2015-06-30 10:50:15 -04:00
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
|
2015-06-30 10:50:15 -04:00
|
|
|
{
|
|
|
|
UNUSED(a_Meta);
|
|
|
|
return 13;
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|