2012-08-09 04:43:26 -04:00
|
|
|
|
|
2012-07-15 16:36:34 -04:00
|
|
|
|
#pragma once
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
|
#include "BlockHandler.h"
|
|
|
|
|
#include "../Torch.h"
|
|
|
|
|
#include "../World.h"
|
2012-07-15 16:36:34 -04:00
|
|
|
|
|
|
|
|
|
|
2012-08-09 04:43:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
class cBlockTorchHandler :
|
|
|
|
|
public cBlockHandler
|
2012-07-15 16:36:34 -04:00
|
|
|
|
{
|
|
|
|
|
public:
|
2012-10-03 04:52:11 -04:00
|
|
|
|
cBlockTorchHandler(BLOCKTYPE a_BlockType)
|
|
|
|
|
: cBlockHandler(a_BlockType)
|
2012-07-16 15:20:37 -04:00
|
|
|
|
{
|
|
|
|
|
}
|
2012-07-15 16:36:34 -04:00
|
|
|
|
|
2012-08-09 04:43:26 -04:00
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
virtual bool GetPlacementBlockTypeMeta(
|
|
|
|
|
cWorld * a_World, cPlayer * a_Player,
|
|
|
|
|
int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace,
|
|
|
|
|
int a_CursorX, int a_CursorY, int a_CursorZ,
|
|
|
|
|
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
|
|
|
|
|
) override
|
2012-07-16 15:20:37 -04:00
|
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
|
// Find proper placement. Use the player-supplied one as the default, but fix if not okay:
|
|
|
|
|
if (!TorchCanBePlacedAt(a_World, a_BlockX, a_BlockY, a_BlockZ, a_BlockFace))
|
2012-08-29 16:40:08 -04:00
|
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
|
a_BlockFace = FindSuitableFace(a_World, a_BlockX, a_BlockY, a_BlockZ);
|
2012-09-01 17:21:17 -04:00
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
if (a_BlockFace == BLOCK_FACE_BOTTOM)
|
2012-10-01 17:08:15 -04:00
|
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
|
return false;
|
2012-10-01 17:08:15 -04:00
|
|
|
|
}
|
2012-08-29 16:40:08 -04:00
|
|
|
|
}
|
2013-01-11 23:46:01 -05:00
|
|
|
|
a_BlockType = m_BlockType;
|
|
|
|
|
a_BlockMeta = cTorch::DirectionToMetaData(a_BlockFace);
|
|
|
|
|
return true;
|
2012-07-16 15:20:37 -04:00
|
|
|
|
}
|
2012-07-15 16:36:34 -04:00
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
virtual bool DoesAllowBlockOnTop(void) override
|
2012-07-15 16:36:34 -04:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-09 04:43:26 -04:00
|
|
|
|
|
|
|
|
|
static bool CanBePlacedOn(BLOCKTYPE a_BlockType, char a_Direction)
|
2012-07-15 16:36:34 -04:00
|
|
|
|
{
|
2012-08-09 04:43:26 -04:00
|
|
|
|
switch (a_BlockType)
|
|
|
|
|
{
|
|
|
|
|
case E_BLOCK_GLASS:
|
|
|
|
|
case E_BLOCK_FENCE:
|
|
|
|
|
case E_BLOCK_NETHER_BRICK_FENCE:
|
|
|
|
|
{
|
|
|
|
|
return (a_Direction == 0x1); // allow only direction "standing on floor"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
{
|
2012-10-23 14:13:37 -04:00
|
|
|
|
return g_BlockIsSolid[a_BlockType];
|
2012-08-09 04:43:26 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
static bool TorchCanBePlacedAt(cWorld * a_World, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace)
|
2012-08-09 04:43:26 -04:00
|
|
|
|
{
|
|
|
|
|
// TODO: If placing a torch from below, check all 4 XZ neighbors, place it on that neighbor instead
|
|
|
|
|
// How to propagate that change up?
|
2012-09-01 17:21:17 -04:00
|
|
|
|
// Simon: The easiest way is to calculate the position two times, shouldn<64>t cost much cpu power :)
|
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
if (a_BlockFace == BLOCK_FACE_BOTTOM)
|
2012-10-01 17:08:15 -04:00
|
|
|
|
{
|
2012-09-01 17:21:17 -04:00
|
|
|
|
return false;
|
2012-10-01 17:08:15 -04:00
|
|
|
|
}
|
2012-09-01 17:21:17 -04:00
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
AddFaceDirection(a_BlockX, a_BlockY, a_BlockZ, a_BlockFace, true);
|
2012-09-01 17:21:17 -04:00
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
return CanBePlacedOn(a_World->GetBlock(a_BlockX, a_BlockY, a_BlockZ), a_BlockFace);
|
2012-08-09 04:43:26 -04:00
|
|
|
|
}
|
2012-09-01 17:21:17 -04:00
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
/// Finds a suitable Face for the Torch. Returns BLOCK_FACE_BOTTOM on failure
|
|
|
|
|
static char FindSuitableFace(cWorld * a_World, int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-09-01 17:21:17 -04:00
|
|
|
|
{
|
2012-10-01 17:08:15 -04:00
|
|
|
|
for (int i = 1; i <= 5; i++)
|
2012-09-01 17:21:17 -04:00
|
|
|
|
{
|
2012-10-03 04:52:11 -04:00
|
|
|
|
if (TorchCanBePlacedAt(a_World, a_BlockX, a_BlockY, a_BlockZ, i))
|
2012-10-01 17:08:15 -04:00
|
|
|
|
{
|
2012-09-01 17:21:17 -04:00
|
|
|
|
return i;
|
2012-10-01 17:08:15 -04:00
|
|
|
|
}
|
2012-09-01 17:21:17 -04:00
|
|
|
|
}
|
|
|
|
|
return BLOCK_FACE_BOTTOM;
|
|
|
|
|
}
|
2012-08-09 04:43:26 -04:00
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
2013-03-15 16:18:11 -04:00
|
|
|
|
/*
|
2013-01-11 23:46:01 -05:00
|
|
|
|
virtual bool CanBePlacedAt(cWorld * a_World, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace) override
|
2012-08-09 04:43:26 -04:00
|
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
|
if (TorchCanBePlacedAt(a_World, a_BlockX, a_BlockY, a_BlockZ, a_BlockFace))
|
|
|
|
|
{
|
2012-09-01 17:21:17 -04:00
|
|
|
|
return true;
|
2013-01-11 23:46:01 -05:00
|
|
|
|
}
|
2012-09-01 17:21:17 -04:00
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
return (FindSuitableFace(a_World, a_BlockX, a_BlockY, a_BlockZ) != BLOCK_FACE_BOTTOM);
|
2012-07-15 16:36:34 -04:00
|
|
|
|
}
|
2013-03-15 16:18:11 -04:00
|
|
|
|
*/
|
2012-07-16 09:30:33 -04:00
|
|
|
|
|
|
|
|
|
|
2013-03-15 16:18:11 -04:00
|
|
|
|
virtual bool CanBeAt(int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
|
2012-07-16 09:30:33 -04:00
|
|
|
|
{
|
2013-03-15 16:18:11 -04:00
|
|
|
|
// TODO: Use cTorch::AdjustCoordsByMeta(), then cChunk::UnboundedRelGetBlock() and finally some comparison
|
|
|
|
|
char Face = cTorch::MetaDataToDirection(a_Chunk.GetMeta(a_RelX, a_RelY, a_RelZ));
|
|
|
|
|
int BlockX = a_RelX + a_Chunk.GetPosX() * cChunkDef::Width;
|
|
|
|
|
int BlockZ = a_RelZ + a_Chunk.GetPosZ() * cChunkDef::Width;
|
|
|
|
|
return TorchCanBePlacedAt(a_Chunk.GetWorld(), BlockX, a_RelY, BlockZ, Face);
|
2012-07-16 09:30:33 -04:00
|
|
|
|
}
|
2012-09-02 14:15:50 -04:00
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
2012-09-02 14:15:50 -04:00
|
|
|
|
{
|
2012-10-01 17:08:15 -04:00
|
|
|
|
// Always drop meta = 0
|
2012-10-03 04:52:11 -04:00
|
|
|
|
a_Pickups.push_back(cItem(m_BlockType, 1, 0));
|
2012-09-02 14:15:50 -04:00
|
|
|
|
}
|
2012-09-11 08:01:34 -04:00
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
|
|
|
|
virtual const char * GetStepSound(void) override
|
2012-09-11 08:01:34 -04:00
|
|
|
|
{
|
|
|
|
|
return "step.wood";
|
|
|
|
|
}
|
2013-03-26 17:06:12 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
virtual NIBBLETYPE MetaRotateCCW(NIBBLETYPE a_Meta) override
|
|
|
|
|
{
|
|
|
|
|
// Bit 4 stays, the rest is swapped around according to a table:
|
|
|
|
|
NIBBLETYPE TopBits = (a_Meta & 0x08);
|
|
|
|
|
switch (a_Meta & 0x07)
|
|
|
|
|
{
|
|
|
|
|
case 0x01: return TopBits | 0x04; // East -> North
|
|
|
|
|
case 0x02: return TopBits | 0x03; // West -> South
|
|
|
|
|
case 0x03: return TopBits | 0x01; // South -> East
|
|
|
|
|
case 0x04: return TopBits | 0x02; // North -> West
|
|
|
|
|
default: return a_Meta; // Floor -> Floor
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
virtual NIBBLETYPE MetaRotateCW(NIBBLETYPE a_Meta) override
|
|
|
|
|
{
|
|
|
|
|
// Bit 4 stays, the rest is swapped around according to a table:
|
|
|
|
|
NIBBLETYPE TopBits = (a_Meta & 0x08);
|
|
|
|
|
switch (a_Meta & 0x07)
|
|
|
|
|
{
|
|
|
|
|
case 0x01: return TopBits | 0x03; // East -> South
|
|
|
|
|
case 0x02: return TopBits | 0x04; // West -> North
|
|
|
|
|
case 0x03: return TopBits | 0x02; // South -> West
|
|
|
|
|
case 0x04: return TopBits | 0x01; // North -> East
|
|
|
|
|
default: return a_Meta; // Floor -> Floor
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
virtual NIBBLETYPE MetaMirrorXY(NIBBLETYPE a_Meta) override
|
|
|
|
|
{
|
|
|
|
|
// Bit 4 stays, the rest is swapped around according to a table:
|
|
|
|
|
NIBBLETYPE TopBits = (a_Meta & 0x08);
|
|
|
|
|
switch (a_Meta & 0x07)
|
|
|
|
|
{
|
|
|
|
|
case 0x03: return TopBits | 0x04; // South -> North
|
|
|
|
|
case 0x04: return TopBits | 0x03; // North -> South
|
|
|
|
|
default: return a_Meta; // Keep the rest
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Mirroring around the XZ plane doesn't make sense for floor torches,
|
|
|
|
|
// the others stay the same, so let's keep all the metas the same.
|
|
|
|
|
// The base class does tht for us, no need to override MetaMirrorXZ()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
virtual NIBBLETYPE MetaMirrorYZ(NIBBLETYPE a_Meta) override
|
|
|
|
|
{
|
|
|
|
|
// Bit 4 stays, the rest is swapped around according to a table:
|
|
|
|
|
NIBBLETYPE TopBits = (a_Meta & 0x08);
|
|
|
|
|
switch (a_Meta & 0x07)
|
|
|
|
|
{
|
|
|
|
|
case 0x01: return TopBits | 0x02; // East -> West
|
|
|
|
|
case 0x02: return TopBits | 0x01; // West -> East
|
|
|
|
|
default: return a_Meta; // Keep the rest
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-10-01 17:08:15 -04:00
|
|
|
|
} ;
|
2012-08-09 04:43:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|