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

54 lines
1.2 KiB
C
Raw Normal View History

2013-12-18 17:33:18 +00:00
#pragma once
#include "BlockHandler.h"
#include "../FastRandom.h"
2013-12-18 17:33:18 +00:00
#include "../World.h"
class cBlockNetherWartHandler :
public cBlockHandler
{
public:
cBlockNetherWartHandler(BLOCKTYPE a_BlockType)
: cBlockHandler(a_BlockType)
{
}
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_Meta) override
{
cFastRandom rand;
2013-12-18 17:33:18 +00:00
if (a_Meta == 0x7)
{
// Fully grown, drop the entire produce:
a_Pickups.push_back(cItem(E_ITEM_NETHER_WART, (char)(1 + (rand.NextInt(3) + rand.NextInt(3))) / 2, 0));
2013-12-18 17:33:18 +00:00
}
else
{
a_Pickups.push_back(cItem(E_ITEM_NETHER_WART));
}
}
2014-02-02 14:49:37 +00:00
virtual void OnUpdate(cChunkInterface & cChunkInterface, cWorldInterface & a_WorldInterface, cBlockPluginInterface & a_PluginInterface, cChunk & a_Chunk, int a_RelX, int a_RelY, int a_RelZ) override
2013-12-18 17:33:18 +00:00
{
NIBBLETYPE Meta = a_Chunk.GetMeta(a_RelX, a_RelY, a_RelZ);
2013-12-18 17:33:18 +00:00
if (Meta < 7)
{
a_Chunk.FastSetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_NETHER_WART, ++Meta);
}
}
2013-12-18 17:33:18 +00:00
2014-02-01 13:06:32 +00:00
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
2013-12-18 17:33:18 +00:00
{
// Needs to be placed on top of a Soulsand block:
2013-12-18 17:33:18 +00:00
return ((a_RelY > 0) && (a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ) == E_BLOCK_SOULSAND));
}
} ;