2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2013-08-05 04:43:43 -04:00
|
|
|
#include "../BlockArea.h"
|
2013-08-19 05:39:13 -04:00
|
|
|
#include "../Entities/Player.h"
|
2019-10-16 04:06:34 -04:00
|
|
|
#include "Mixins.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-10-05 06:27:14 -04:00
|
|
|
class cBlockChestHandler final :
|
2020-09-23 11:06:27 -04:00
|
|
|
public cYawRotator<cClearMetaOnDrop<cBlockEntityHandler>, 0x07, 0x03, 0x04, 0x02, 0x05>
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2020-09-23 11:06:27 -04:00
|
|
|
using Super = cYawRotator<cClearMetaOnDrop<cBlockEntityHandler>, 0x07, 0x03, 0x04, 0x02, 0x05>;
|
2019-10-16 04:06:34 -04: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;
|
2019-10-16 04:06:34 -04:00
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
/** Translates player yaw when placing a chest into the chest block metadata. Valid for single chests only */
|
|
|
|
static NIBBLETYPE PlayerYawToMetaData(double a_Yaw)
|
|
|
|
{
|
|
|
|
a_Yaw += 90 + 45; // So its not aligned with axis
|
2019-10-16 04:06:34 -04:00
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
if (a_Yaw > 360.f)
|
|
|
|
{
|
|
|
|
a_Yaw -= 360.f;
|
|
|
|
}
|
|
|
|
if ((a_Yaw >= 0.f) && (a_Yaw < 90.f))
|
|
|
|
{
|
|
|
|
return 0x04;
|
|
|
|
}
|
|
|
|
else if ((a_Yaw >= 180) && (a_Yaw < 270))
|
|
|
|
{
|
|
|
|
return 0x05;
|
|
|
|
}
|
|
|
|
else if ((a_Yaw >= 90) && (a_Yaw < 180))
|
|
|
|
{
|
|
|
|
return 0x02;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0x03;
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual bool GetPlacementBlockTypeMeta(
|
2020-04-21 16:19:22 -04:00
|
|
|
cChunkInterface & a_ChunkInterface,
|
|
|
|
cPlayer & a_Player,
|
|
|
|
const Vector3i a_PlacedBlockPos,
|
|
|
|
eBlockFace a_ClickedBlockFace,
|
|
|
|
const Vector3i a_CursorPos,
|
2013-07-29 07:13:03 -04:00
|
|
|
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
|
2020-09-20 09:50:52 -04:00
|
|
|
) const override
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2020-04-21 16:19:22 -04:00
|
|
|
// Cannot place right next to double-chest:
|
|
|
|
if (!CanBeAt(a_ChunkInterface, a_PlacedBlockPos))
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
// Yup, cannot form a triple-chest, refuse:
|
|
|
|
return false;
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2020-04-08 16:35:08 -04:00
|
|
|
// Try to read double-chest information:
|
2013-07-29 07:13:03 -04:00
|
|
|
cBlockArea Area;
|
2020-04-21 16:19:22 -04:00
|
|
|
if (!Area.Read(a_ChunkInterface, a_PlacedBlockPos - Vector3i(1, 0, 1), a_PlacedBlockPos + Vector3i(1, 0, 1)))
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2020-04-08 16:35:08 -04:00
|
|
|
|
|
|
|
// Get meta as if this was a single-chest:
|
2020-04-21 16:19:22 -04:00
|
|
|
if (!Super::GetPlacementBlockTypeMeta(a_ChunkInterface, a_Player, a_PlacedBlockPos, a_ClickedBlockFace, a_CursorPos, a_BlockType, a_BlockMeta))
|
2020-04-08 16:35:08 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if this forms a doublechest, if so, need to adjust the meta:
|
2017-07-31 16:17:52 -04:00
|
|
|
double yaw = a_Player.GetYaw();
|
2013-07-29 07:13:03 -04:00
|
|
|
if (
|
2014-07-06 18:50:22 -04:00
|
|
|
(Area.GetRelBlockType(0, 0, 1) == m_BlockType) ||
|
|
|
|
(Area.GetRelBlockType(2, 0, 1) == m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
)
|
|
|
|
{
|
2014-01-17 05:11:17 -05:00
|
|
|
a_BlockMeta = ((yaw >= -90) && (yaw < 90)) ? 2 : 3;
|
2013-07-29 07:13:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (
|
2020-04-08 16:35:08 -04:00
|
|
|
(Area.GetRelBlockType(1, 0, 0) == m_BlockType) ||
|
|
|
|
(Area.GetRelBlockType(1, 0, 2) == m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
)
|
|
|
|
{
|
2014-01-17 05:11:17 -05:00
|
|
|
a_BlockMeta = (yaw < 0) ? 4 : 5;
|
2013-07-29 07:13:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2020-04-08 16:35:08 -04:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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-01-31 18:17:41 -05:00
|
|
|
{
|
2020-04-21 16:19:22 -04:00
|
|
|
auto BlockPos = a_Chunk.RelativeToAbsolute(a_RelPos);
|
|
|
|
return CanBeAt(a_ChunkInterface, BlockPos);
|
2014-01-31 18:17:41 -05:00
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
bool CanBeAt(cChunkInterface & a_ChunkInterface, const Vector3i a_BlockPos) const
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
cBlockArea Area;
|
2020-04-21 16:19:22 -04:00
|
|
|
if (!Area.Read(a_ChunkInterface, a_BlockPos - Vector3i(2, 0, 2), a_BlockPos + Vector3i(2, 0, 2)))
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
// Cannot read the surroundings, probably at the edge of loaded chunks. Disallow.
|
|
|
|
return false;
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
int NumChestNeighbors = 0;
|
2014-07-06 18:50:22 -04:00
|
|
|
if (Area.GetRelBlockType(1, 0, 2) == m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
if (
|
2014-07-06 18:50:22 -04:00
|
|
|
(Area.GetRelBlockType(0, 0, 2) == m_BlockType) ||
|
|
|
|
(Area.GetRelBlockType(1, 0, 1) == m_BlockType) ||
|
|
|
|
(Area.GetRelBlockType(1, 0, 3) == m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
)
|
|
|
|
{
|
|
|
|
// Already a doublechest neighbor, disallow:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
NumChestNeighbors += 1;
|
|
|
|
}
|
2014-07-06 18:50:22 -04:00
|
|
|
if (Area.GetRelBlockType(3, 0, 2) == m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
if (
|
2014-07-06 18:50:22 -04:00
|
|
|
(Area.GetRelBlockType(4, 0, 2) == m_BlockType) ||
|
|
|
|
(Area.GetRelBlockType(3, 0, 1) == m_BlockType) ||
|
|
|
|
(Area.GetRelBlockType(3, 0, 3) == m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
)
|
|
|
|
{
|
|
|
|
// Already a doublechest neighbor, disallow:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
NumChestNeighbors += 1;
|
|
|
|
}
|
2014-07-06 18:50:22 -04:00
|
|
|
if (Area.GetRelBlockType(2, 0, 1) == m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
if (
|
2014-07-06 18:50:22 -04:00
|
|
|
(Area.GetRelBlockType(2, 0, 0) == m_BlockType) ||
|
|
|
|
(Area.GetRelBlockType(1, 0, 1) == m_BlockType) ||
|
|
|
|
(Area.GetRelBlockType(3, 0, 1) == m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
)
|
|
|
|
{
|
|
|
|
// Already a doublechest neighbor, disallow:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
NumChestNeighbors += 1;
|
|
|
|
}
|
2014-07-06 18:50:22 -04:00
|
|
|
if (Area.GetRelBlockType(2, 0, 3) == m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
if (
|
2014-07-06 18:50:22 -04:00
|
|
|
(Area.GetRelBlockType(2, 0, 4) == m_BlockType) ||
|
|
|
|
(Area.GetRelBlockType(1, 0, 3) == m_BlockType) ||
|
|
|
|
(Area.GetRelBlockType(3, 0, 3) == m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
)
|
|
|
|
{
|
|
|
|
// Already a doublechest neighbor, disallow:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
NumChestNeighbors += 1;
|
|
|
|
}
|
|
|
|
return (NumChestNeighbors < 2);
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-30 10:50:15 -04:00
|
|
|
/** If there's a chest in the a_Area in the specified coords, modifies its meta to a_NewMeta and returns true. */
|
2020-09-20 09:50:52 -04:00
|
|
|
bool CheckAndAdjustNeighbor(cChunkInterface & a_ChunkInterface, const cBlockArea & a_Area, int a_RelX, int a_RelZ, NIBBLETYPE a_NewMeta) const
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-07-06 18:50:22 -04:00
|
|
|
if (a_Area.GetRelBlockType(a_RelX, 0, a_RelZ) != m_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-01 08:06:32 -05:00
|
|
|
a_ChunkInterface.SetBlockMeta(a_Area.GetOriginX() + a_RelX, a_Area.GetOriginY(), a_Area.GetOriginZ() + a_RelZ, a_NewMeta);
|
2013-07-29 07:13:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
2014-02-02 17:08:57 -05:00
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-30 10:50:15 -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
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|