1
0
Fork 0
cuberite-2a/src/Blocks/BlockCocoaPod.h

132 lines
2.4 KiB
C
Raw Normal View History

2014-12-01 17:10:37 +00:00
#pragma once
#include "BlockHandler.h"
#include "../FastRandom.h"
class cBlockCocoaPodHandler final :
2014-12-01 17:10:37 +00:00
public cBlockHandler
{
2020-04-13 16:38:06 +00:00
using Super = cBlockHandler;
2014-12-01 17:10:37 +00:00
public:
using Super::Super;
static NIBBLETYPE BlockFaceToMeta(eBlockFace a_BlockFace)
{
switch (a_BlockFace)
{
case BLOCK_FACE_ZM: return 0;
case BLOCK_FACE_XM: return 3;
case BLOCK_FACE_XP: return 1;
case BLOCK_FACE_ZP: return 2;
case BLOCK_FACE_NONE:
case BLOCK_FACE_YM:
case BLOCK_FACE_YP:
{
2021-02-20 16:24:13 +00:00
break;
}
}
UNREACHABLE("Unsupported block face");
}
private:
virtual bool CanBeAt(const cChunk & a_Chunk, const Vector3i a_Position, const NIBBLETYPE a_Meta) const override
2014-12-01 17:10:37 +00:00
{
// Check that we're attached to a jungle log block:
eBlockFace BlockFace = MetaToBlockFace(a_Meta);
auto LogPos = AddFaceDirection(a_Position, BlockFace, true);
2014-12-01 17:10:37 +00:00
BLOCKTYPE BlockType;
NIBBLETYPE BlockMeta;
a_Chunk.UnboundedRelGetBlock(LogPos, BlockType, BlockMeta);
return ((BlockType == E_BLOCK_LOG) && ((BlockMeta & 0x03) == E_META_LOG_JUNGLE));
2014-12-01 17:10:37 +00:00
}
virtual void OnUpdate(
cChunkInterface & a_ChunkInterface,
cWorldInterface & a_WorldInterface,
cBlockPluginInterface & a_PluginInterface,
cChunk & a_Chunk,
const Vector3i a_RelPos
) const override
2014-12-01 17:10:37 +00:00
{
2017-06-13 19:35:30 +00:00
if (GetRandomProvider().RandBool(0.20))
2014-12-01 17:10:37 +00:00
{
Grow(a_Chunk, a_RelPos);
2014-12-01 17:10:37 +00:00
}
}
virtual cItems ConvertToPickups(const NIBBLETYPE a_BlockMeta, const cItem * const a_Tool) const override
2014-12-01 17:10:37 +00:00
{
// If fully grown, give 3 items, otherwise just one:
auto growState = a_BlockMeta >> 2;
return cItem(E_ITEM_DYE, ((growState >= 2) ? 3 : 1), E_META_DYE_BROWN);
2014-12-01 17:10:37 +00:00
}
virtual int Grow(cChunk & a_Chunk, Vector3i a_RelPos, int a_NumStages = 1) const override
{
auto meta = a_Chunk.GetMeta(a_RelPos);
auto typeMeta = meta & 0x03;
auto growState = meta >> 2;
2020-03-23 08:19:52 +00:00
if (growState >= 2)
{
return 0;
}
2020-03-23 08:19:52 +00:00
auto newState = std::min(growState + a_NumStages, 2);
a_Chunk.SetMeta(a_RelPos, static_cast<NIBBLETYPE>(newState << 2 | typeMeta));
return newState - growState;
}
2014-12-01 17:10:37 +00:00
static eBlockFace MetaToBlockFace(NIBBLETYPE a_Meta)
{
switch (a_Meta & 0x03)
2014-12-01 17:10:37 +00:00
{
case 0: return BLOCK_FACE_ZM;
case 1: return BLOCK_FACE_XP;
case 2: return BLOCK_FACE_ZP;
case 3: return BLOCK_FACE_XM;
default:
{
ASSERT(!"Bad meta");
return BLOCK_FACE_NONE;
}
}
}
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
2015-06-30 14:50:15 +00:00
{
UNUSED(a_Meta);
return 34;
}
2014-12-01 17:10:37 +00:00
} ;