diff options
author | Alexander Harkness <me@bearbin.net> | 2020-04-08 22:35:08 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2020-04-10 15:07:16 +0200 |
commit | f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6 (patch) | |
tree | d96f25621ab462bf3af7ff7403acb54c01a70595 /src/Blocks/BlockChest.h | |
parent | Brewing stands do not have rotation (diff) | |
download | cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar.gz cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar.bz2 cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar.lz cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar.xz cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar.zst cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.zip |
Diffstat (limited to 'src/Blocks/BlockChest.h')
-rw-r--r-- | src/Blocks/BlockChest.h | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/src/Blocks/BlockChest.h b/src/Blocks/BlockChest.h index 0e277532e..2176bba96 100644 --- a/src/Blocks/BlockChest.h +++ b/src/Blocks/BlockChest.h @@ -11,9 +11,9 @@ class cBlockChestHandler : - public cMetaRotator<cContainerEntityHandler<cBlockEntityHandler>, 0x07, 0x02, 0x05, 0x03, 0x04> + public cYawRotator<cContainerEntityHandler<cBlockEntityHandler>> { - using super = cMetaRotator<cContainerEntityHandler<cBlockEntityHandler>, 0x07, 0x02, 0x05, 0x03, 0x04>; + using super = cYawRotator<cContainerEntityHandler<cBlockEntityHandler>>; public: @@ -33,8 +33,6 @@ public: BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta ) override { - a_BlockType = m_BlockType; - // Is there a doublechest already next to this block? if (!CanBeAt(a_ChunkInterface, a_BlockX, a_BlockY, a_BlockZ)) { @@ -42,12 +40,20 @@ public: return false; } - // Check if this forms a doublechest, if so, need to adjust the meta: + // Try to read double-chest information: cBlockArea Area; if (!Area.Read(a_ChunkInterface, a_BlockX - 1, a_BlockX + 1, a_BlockY, a_BlockY, a_BlockZ - 1, a_BlockZ + 1)) { return false; } + + // Get meta as if this was a single-chest: + if (!super::GetPlacementBlockTypeMeta(a_ChunkInterface, a_Player, a_BlockX, a_BlockY, a_BlockZ, a_BlockFace, a_CursorX, a_CursorY, a_CursorZ, a_BlockType, a_BlockMeta)) + { + return false; + } + + // Check if this forms a doublechest, if so, need to adjust the meta: double yaw = a_Player.GetYaw(); if ( (Area.GetRelBlockType(0, 0, 1) == m_BlockType) || @@ -58,17 +64,15 @@ public: return true; } if ( - (Area.GetRelBlockType(0, 0, 1) == m_BlockType) || - (Area.GetRelBlockType(2, 0, 1) == m_BlockType) + (Area.GetRelBlockType(1, 0, 0) == m_BlockType) || + (Area.GetRelBlockType(1, 0, 2) == m_BlockType) ) { - // FIXME: This is unreachable, as the condition is the same as the above one a_BlockMeta = (yaw < 0) ? 4 : 5; return true; } - // Single chest, get meta from rotation only - a_BlockMeta = PlayerYawToMetaData(yaw); + return true; } |