2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "BlockHandler.h"
|
2013-08-19 05:39:13 -04:00
|
|
|
#include "../Entities/Player.h"
|
2018-08-28 20:51:25 -04:00
|
|
|
#include "../Chunk.h"
|
2014-03-25 17:26:13 -04:00
|
|
|
#include "MetaRotator.h"
|
2014-09-26 13:13:19 -04:00
|
|
|
#include "ChunkInterface.h"
|
2015-04-07 11:51:38 -04:00
|
|
|
#include "BlockSlab.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockDoorHandler :
|
2014-03-25 17:26:13 -04:00
|
|
|
public cMetaRotator<cBlockHandler, 0x03, 0x01, 0x02, 0x03, 0x00, true>
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-03-25 17:26:13 -04:00
|
|
|
typedef cMetaRotator<cBlockHandler, 0x03, 0x01, 0x02, 0x03, 0x00, true> super;
|
2013-07-29 07:13:03 -04:00
|
|
|
public:
|
|
|
|
cBlockDoorHandler(BLOCKTYPE a_BlockType);
|
|
|
|
|
2014-02-01 08:06:32 -05:00
|
|
|
virtual void OnDestroyed(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ) override;
|
2017-07-31 16:17:52 -04: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;
|
|
|
|
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-05-29 13:21:56 -04:00
|
|
|
|
2014-03-23 22:11:01 -04:00
|
|
|
virtual NIBBLETYPE MetaRotateCCW(NIBBLETYPE a_Meta) override;
|
|
|
|
virtual NIBBLETYPE MetaRotateCW(NIBBLETYPE a_Meta) override;
|
|
|
|
virtual NIBBLETYPE MetaMirrorXY(NIBBLETYPE a_Meta) override;
|
|
|
|
virtual NIBBLETYPE MetaMirrorYZ(NIBBLETYPE a_Meta) override;
|
2014-05-29 13:21:56 -04:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual bool GetPlacementBlockTypeMeta(
|
2017-07-31 16:17:52 -04:00
|
|
|
cChunkInterface & a_ChunkInterface, cPlayer & a_Player,
|
2014-07-17 16:50:58 -04: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
|
|
|
|
{
|
|
|
|
// If clicking a bottom face, place the door one block lower:
|
|
|
|
if (a_BlockFace == BLOCK_FACE_BOTTOM)
|
|
|
|
{
|
|
|
|
a_BlockY--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
2017-11-20 06:13:11 -05:00
|
|
|
!CanReplaceBlock(a_ChunkInterface.GetBlock({a_BlockX, a_BlockY, a_BlockZ})) ||
|
|
|
|
!CanReplaceBlock(a_ChunkInterface.GetBlock({a_BlockX, a_BlockY + 1, a_BlockZ}))
|
2013-07-29 07:13:03 -04:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
a_BlockType = m_BlockType;
|
2017-07-31 16:17:52 -04:00
|
|
|
a_BlockMeta = PlayerYawToMetaData(a_Player.GetYaw());
|
2013-07-29 07:13:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-07-28 12:59:21 -04:00
|
|
|
virtual cBoundingBox GetPlacementCollisionBox(BLOCKTYPE a_XM, BLOCKTYPE a_XP, BLOCKTYPE a_YM, BLOCKTYPE a_YP, BLOCKTYPE a_ZM, BLOCKTYPE a_ZP) override;
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
|
|
|
{
|
2015-07-13 19:09:05 -04:00
|
|
|
if ((a_BlockMeta & 0x08) != 0) // is top part of door
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-09-27 08:19:45 -04:00
|
|
|
switch (m_BlockType)
|
|
|
|
{
|
2015-06-30 10:50:15 -04:00
|
|
|
case E_BLOCK_OAK_DOOR:
|
2014-09-27 08:19:45 -04:00
|
|
|
{
|
|
|
|
a_Pickups.Add(E_ITEM_WOODEN_DOOR);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_BLOCK_ACACIA_DOOR:
|
|
|
|
{
|
|
|
|
a_Pickups.Add(E_ITEM_ACACIA_DOOR);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_BLOCK_BIRCH_DOOR:
|
|
|
|
{
|
|
|
|
a_Pickups.Add(E_ITEM_BIRCH_DOOR);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_BLOCK_DARK_OAK_DOOR:
|
|
|
|
{
|
|
|
|
a_Pickups.Add(E_ITEM_DARK_OAK_DOOR);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_BLOCK_JUNGLE_DOOR:
|
|
|
|
{
|
|
|
|
a_Pickups.Add(E_ITEM_JUNGLE_DOOR);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_BLOCK_SPRUCE_DOOR:
|
|
|
|
{
|
|
|
|
a_Pickups.Add(E_ITEM_SPRUCE_DOOR);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_BLOCK_IRON_DOOR:
|
|
|
|
{
|
|
|
|
a_Pickups.Add(E_ITEM_IRON_DOOR);
|
|
|
|
break;
|
|
|
|
}
|
2014-09-27 09:11:35 -04:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
ASSERT(!"Unhandled door type!");
|
|
|
|
break;
|
|
|
|
}
|
2014-09-27 08:19:45 -04:00
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool IsUseable(void) override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-01 08:06:32 -05:00
|
|
|
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2015-04-07 11:51:38 -04:00
|
|
|
return ((a_RelY > 0) && CanBeOn(a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ), a_Chunk.GetMeta(a_RelX, a_RelY - 1, a_RelZ)));
|
2014-12-24 01:20:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns true if door can be placed on the specified block type. */
|
2015-04-07 11:51:38 -04:00
|
|
|
static bool CanBeOn(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta)
|
2014-12-24 01:20:17 -05:00
|
|
|
{
|
2015-04-07 11:51:38 -04:00
|
|
|
// Vanilla refuses to place doors on transparent blocks, except top-half slabs and other doors
|
2014-12-24 19:00:51 -05:00
|
|
|
// We need to keep the door compatible with itself, otherwise the top half drops while the bottom half stays
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2015-04-07 11:51:38 -04:00
|
|
|
// Doors can be placed on upside-down slabs
|
|
|
|
if (cBlockSlabHandler::IsAnySlabType(a_BlockType) && ((a_BlockMeta & 0x08) != 0))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Doors can also be placed on other doors
|
|
|
|
else if (IsDoorBlockType(a_BlockType))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Doors can not be placed on transparent blocks, but on any other block
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return !cBlockInfo::IsTransparent(a_BlockType);
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
2014-05-29 13:21:56 -04:00
|
|
|
|
2014-12-24 01:20:17 -05:00
|
|
|
static bool CanReplaceBlock(BLOCKTYPE a_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
switch (a_BlockType)
|
|
|
|
{
|
|
|
|
case E_BLOCK_AIR:
|
|
|
|
case E_BLOCK_TALL_GRASS:
|
|
|
|
case E_BLOCK_WATER:
|
|
|
|
case E_BLOCK_STATIONARY_WATER:
|
|
|
|
case E_BLOCK_LAVA:
|
|
|
|
case E_BLOCK_STATIONARY_LAVA:
|
|
|
|
case E_BLOCK_SNOW:
|
|
|
|
case E_BLOCK_FIRE:
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-09 04:49:52 -04:00
|
|
|
|
2014-05-29 13:21:56 -04:00
|
|
|
/** Converts the player's yaw to placed door's blockmeta */
|
2013-09-09 04:49:52 -04:00
|
|
|
inline static NIBBLETYPE PlayerYawToMetaData(double a_Yaw)
|
|
|
|
{
|
|
|
|
ASSERT((a_Yaw >= -180) && (a_Yaw < 180));
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-09-09 04:49:52 -04:00
|
|
|
a_Yaw += 90 + 45;
|
|
|
|
if (a_Yaw > 360)
|
|
|
|
{
|
|
|
|
a_Yaw -= 360;
|
|
|
|
}
|
|
|
|
if ((a_Yaw >= 0) && (a_Yaw < 90))
|
|
|
|
{
|
2014-06-09 15:35:46 -04:00
|
|
|
return 0x00;
|
2013-09-09 04:49:52 -04:00
|
|
|
}
|
|
|
|
else if ((a_Yaw >= 180) && (a_Yaw < 270))
|
|
|
|
{
|
2014-06-09 15:35:46 -04:00
|
|
|
return 0x02;
|
2013-09-09 04:49:52 -04:00
|
|
|
}
|
|
|
|
else if ((a_Yaw >= 90) && (a_Yaw < 180))
|
|
|
|
{
|
2014-06-09 15:35:46 -04:00
|
|
|
return 0x01;
|
2013-09-09 04:49:52 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-06-09 15:35:46 -04:00
|
|
|
return 0x03;
|
2013-09-09 04:49:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-24 01:20:17 -05:00
|
|
|
/** Returns a vector pointing one block in the direction the door is facing (where the outside is). */
|
|
|
|
inline static Vector3i GetRelativeDirectionToOutside(NIBBLETYPE a_BlockMeta)
|
|
|
|
{
|
|
|
|
switch (a_BlockMeta & 0x03)
|
|
|
|
{
|
|
|
|
case 0: return Vector3i(-1, 0, 0); // Facing West / XM
|
|
|
|
case 1: return Vector3i( 0, 0, -1); // Facing North / ZM
|
|
|
|
case 2: return Vector3i( 1, 0, 0); // Facing East / XP
|
|
|
|
default: return Vector3i( 0, 0, 1); // Facing South / ZP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-29 13:21:56 -04:00
|
|
|
/** Returns true if the specified blocktype is any kind of door */
|
2014-12-24 01:20:17 -05:00
|
|
|
inline static bool IsDoorBlockType(BLOCKTYPE a_Block)
|
2013-09-09 04:49:52 -04:00
|
|
|
{
|
2014-09-30 13:49:42 -04:00
|
|
|
switch (a_Block)
|
|
|
|
{
|
|
|
|
case E_BLOCK_ACACIA_DOOR:
|
|
|
|
case E_BLOCK_BIRCH_DOOR:
|
|
|
|
case E_BLOCK_DARK_OAK_DOOR:
|
|
|
|
case E_BLOCK_IRON_DOOR:
|
|
|
|
case E_BLOCK_JUNGLE_DOOR:
|
|
|
|
case E_BLOCK_SPRUCE_DOOR:
|
2015-06-30 10:50:15 -04:00
|
|
|
case E_BLOCK_OAK_DOOR:
|
2014-09-30 13:49:42 -04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2014-09-30 14:59:59 -04:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-09-30 13:49:42 -04:00
|
|
|
}
|
2013-09-09 04:49:52 -04:00
|
|
|
}
|
|
|
|
|
2014-12-24 01:20:17 -05:00
|
|
|
/** Returns true iff the door at the specified coords is open.
|
|
|
|
The coords may point to either the top part or the bottom part of the door. */
|
2014-05-30 16:22:42 -04:00
|
|
|
static NIBBLETYPE IsOpen(cChunkInterface & a_ChunkInterface, int a_BlockX, int a_BlockY, int a_BlockZ)
|
2013-09-09 04:49:52 -04:00
|
|
|
{
|
2014-06-09 15:35:46 -04:00
|
|
|
NIBBLETYPE Meta = GetCompleteDoorMeta(a_ChunkInterface, a_BlockX, a_BlockY, a_BlockZ);
|
|
|
|
return ((Meta & 0x04) != 0);
|
2013-09-09 04:49:52 -04:00
|
|
|
}
|
|
|
|
|
2014-06-09 15:35:46 -04:00
|
|
|
/** Returns the complete meta composed from the both parts of the door as (TopMeta << 4) | BottomMeta
|
|
|
|
The coords may point to either part of the door.
|
|
|
|
The returned value has bit 3 (0x08) set iff the coords point to the top part of the door.
|
|
|
|
Fails gracefully for (invalid) doors on the world's top and bottom. */
|
|
|
|
static NIBBLETYPE GetCompleteDoorMeta(cChunkInterface & a_ChunkInterface, int a_BlockX, int a_BlockY, int a_BlockZ)
|
2014-05-29 13:21:56 -04:00
|
|
|
{
|
2017-11-20 06:13:11 -05:00
|
|
|
NIBBLETYPE Meta = a_ChunkInterface.GetBlockMeta({a_BlockX, a_BlockY, a_BlockZ});
|
2014-05-29 13:21:56 -04:00
|
|
|
|
2014-06-09 15:35:46 -04:00
|
|
|
if ((Meta & 0x08) != 0)
|
2014-05-29 13:21:56 -04:00
|
|
|
{
|
2014-06-09 15:35:46 -04:00
|
|
|
// The coords are pointing at the top part of the door
|
2015-06-13 09:00:20 -04:00
|
|
|
if (a_BlockY > 0)
|
2014-06-09 15:35:46 -04:00
|
|
|
{
|
2017-11-20 06:13:11 -05:00
|
|
|
NIBBLETYPE DownMeta = a_ChunkInterface.GetBlockMeta({a_BlockX, a_BlockY - 1, a_BlockZ});
|
2015-05-24 07:56:56 -04:00
|
|
|
return static_cast<NIBBLETYPE>((DownMeta & 0x07) | 0x08 | (Meta << 4));
|
2014-06-09 15:35:46 -04:00
|
|
|
}
|
|
|
|
// This is the top part of the door at the bottommost layer of the world, there's no bottom:
|
2015-05-24 07:56:56 -04:00
|
|
|
return static_cast<NIBBLETYPE>(0x08 | (Meta << 4));
|
2014-05-30 16:22:42 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-06-09 15:35:46 -04:00
|
|
|
// The coords are pointing at the bottom part of the door
|
|
|
|
if (a_BlockY < cChunkDef::Height - 1)
|
|
|
|
{
|
2017-11-20 06:13:11 -05:00
|
|
|
NIBBLETYPE UpMeta = a_ChunkInterface.GetBlockMeta({a_BlockX, a_BlockY + 1, a_BlockZ});
|
2015-05-24 07:56:56 -04:00
|
|
|
return static_cast<NIBBLETYPE>(Meta | (UpMeta << 4));
|
2014-06-09 15:35:46 -04:00
|
|
|
}
|
|
|
|
// This is the bottom part of the door at the topmost layer of the world, there's no top:
|
|
|
|
return Meta;
|
2014-05-29 13:21:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-09 15:35:46 -04:00
|
|
|
/** Sets the door to the specified state. If the door is already in that state, does nothing. */
|
2014-05-29 13:21:56 -04:00
|
|
|
static void SetOpen(cChunkInterface & a_ChunkInterface, int a_BlockX, int a_BlockY, int a_BlockZ, bool a_Open)
|
|
|
|
{
|
2017-11-20 06:13:11 -05:00
|
|
|
BLOCKTYPE Block = a_ChunkInterface.GetBlock({a_BlockX, a_BlockY, a_BlockZ});
|
2014-12-24 01:20:17 -05:00
|
|
|
if (!IsDoorBlockType(Block))
|
2014-05-29 13:21:56 -04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-06-09 15:35:46 -04:00
|
|
|
NIBBLETYPE Meta = GetCompleteDoorMeta(a_ChunkInterface, a_BlockX, a_BlockY, a_BlockZ);
|
|
|
|
bool IsOpened = ((Meta & 0x04) != 0);
|
|
|
|
if (IsOpened == a_Open)
|
2014-05-29 13:21:56 -04:00
|
|
|
{
|
2014-05-30 16:22:42 -04:00
|
|
|
return;
|
2014-05-29 13:21:56 -04:00
|
|
|
}
|
|
|
|
|
2014-05-30 16:22:42 -04:00
|
|
|
// Change the door
|
2014-06-09 15:35:46 -04:00
|
|
|
NIBBLETYPE NewMeta = (Meta & 0x07) ^ 0x04; // Flip the "IsOpen" bit (0x04)
|
|
|
|
if ((Meta & 0x08) == 0)
|
2014-05-29 13:21:56 -04:00
|
|
|
{
|
2014-06-09 15:35:46 -04:00
|
|
|
// The block is the bottom part of the door
|
2014-05-30 16:22:42 -04:00
|
|
|
a_ChunkInterface.SetBlockMeta(a_BlockX, a_BlockY, a_BlockZ, NewMeta);
|
2014-05-29 13:21:56 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-06-09 15:35:46 -04:00
|
|
|
// The block is the top part of the door, set the meta to the corresponding top part
|
|
|
|
if (a_BlockY > 0)
|
|
|
|
{
|
|
|
|
a_ChunkInterface.SetBlockMeta(a_BlockX, a_BlockY - 1, a_BlockZ, NewMeta);
|
|
|
|
}
|
2014-05-29 13:21:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Changes the door at the specified coords from open to close or vice versa */
|
2014-05-30 16:22:42 -04:00
|
|
|
static void ChangeDoor(cChunkInterface & a_ChunkInterface, int a_BlockX, int a_BlockY, int a_BlockZ)
|
2013-09-09 04:49:52 -04:00
|
|
|
{
|
2014-05-30 16:22:42 -04:00
|
|
|
SetOpen(a_ChunkInterface, a_BlockX, a_BlockY, a_BlockZ, !IsOpen(a_ChunkInterface, a_BlockX, a_BlockY, a_BlockZ));
|
2013-09-09 04:49:52 -04:00
|
|
|
}
|
2015-06-30 10:50:15 -04:00
|
|
|
|
|
|
|
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
|
|
|
|
{
|
|
|
|
UNUSED(a_Meta);
|
|
|
|
switch (m_BlockType)
|
|
|
|
{
|
|
|
|
case E_BLOCK_OAK_DOOR: return 13;
|
|
|
|
case E_BLOCK_SPRUCE_DOOR: return 34;
|
|
|
|
case E_BLOCK_BIRCH_DOOR: return 2;
|
|
|
|
case E_BLOCK_JUNGLE_DOOR: return 10;
|
|
|
|
case E_BLOCK_DARK_OAK_DOOR: return 26;
|
|
|
|
case E_BLOCK_ACACIA_DOOR: return 15;
|
|
|
|
case E_BLOCK_IRON_DOOR: return 6;
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
ASSERT(!"Unhandled blocktype in door handler!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|