2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "BlockHandler.h"
|
2014-03-30 17:13:13 -04:00
|
|
|
#include "../FastRandom.h"
|
2014-09-26 13:13:19 -04:00
|
|
|
#include "Root.h"
|
|
|
|
#include "Bindings/PluginManager.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Handler used for both dirt and grass
|
|
|
|
class cBlockDirtHandler :
|
|
|
|
public cBlockHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cBlockDirtHandler(BLOCKTYPE a_BlockType)
|
|
|
|
: cBlockHandler(a_BlockType)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
|
|
|
{
|
2014-09-30 14:31:27 -04:00
|
|
|
if (a_BlockMeta == E_META_DIRT_COARSE)
|
|
|
|
{
|
|
|
|
// Drop the coarse block (dirt, meta 1)
|
2014-09-30 14:59:59 -04:00
|
|
|
a_Pickups.Add(E_BLOCK_DIRT, 1, E_META_DIRT_COARSE);
|
2014-09-30 14:31:27 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-09-30 14:59:59 -04:00
|
|
|
a_Pickups.Add(E_BLOCK_DIRT, 1, E_META_DIRT_NORMAL);
|
2014-09-30 14:31:27 -04:00
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-02 09:49:37 -05: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-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
if (m_BlockType != E_BLOCK_GRASS)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Grass becomes dirt if there is something on top of it:
|
2013-11-30 09:58:27 -05:00
|
|
|
if (a_RelY < cChunkDef::Height - 1)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-04-03 15:43:40 -04:00
|
|
|
BLOCKTYPE Above;
|
|
|
|
NIBBLETYPE AboveMeta;
|
|
|
|
a_Chunk.GetBlockTypeMeta(a_RelX, a_RelY + 1, a_RelZ, Above, AboveMeta);
|
2014-05-07 14:37:36 -04:00
|
|
|
if (!cBlockInfo::GetHandler(Above)->CanDirtGrowGrass(AboveMeta))
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2013-11-30 09:58:27 -05:00
|
|
|
a_Chunk.FastSetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_DIRT, E_META_DIRT_NORMAL);
|
2013-07-29 07:13:03 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-03-05 14:29:57 -05:00
|
|
|
|
|
|
|
// Make sure that there is enough light at the source block to spread
|
|
|
|
if (!a_Chunk.GetWorld()->IsChunkLighted(a_Chunk.GetPosX(), a_Chunk.GetPosZ()))
|
|
|
|
{
|
|
|
|
a_Chunk.GetWorld()->QueueLightChunk(a_Chunk.GetPosX(), a_Chunk.GetPosZ());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (std::max(a_Chunk.GetBlockLight(a_RelX, a_RelY + 1, a_RelZ), a_Chunk.GetTimeAlteredLight(a_Chunk.GetSkyLight(a_RelX, a_RelY + 1, a_RelZ))) < 9)
|
|
|
|
{
|
|
|
|
// Source block is not bright enough to spread
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-30 07:48:22 -05:00
|
|
|
// Grass spreads to adjacent dirt blocks:
|
2014-03-30 17:13:13 -04:00
|
|
|
cFastRandom rand;
|
2013-07-29 07:13:03 -04:00
|
|
|
for (int i = 0; i < 2; i++) // Pick two blocks to grow to
|
|
|
|
{
|
2015-03-13 20:59:53 -04:00
|
|
|
int OfsX = rand.NextInt(3) - 1; // [-1 .. 1]
|
|
|
|
int OfsY = rand.NextInt(5) - 3; // [-3 .. 1]
|
|
|
|
int OfsZ = rand.NextInt(3) - 1; // [-1 .. 1]
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
BLOCKTYPE DestBlock;
|
|
|
|
NIBBLETYPE DestMeta;
|
2013-11-30 09:58:27 -05:00
|
|
|
if ((a_RelY + OfsY < 0) || (a_RelY + OfsY >= cChunkDef::Height - 1))
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
// Y Coord out of range
|
|
|
|
continue;
|
|
|
|
}
|
2013-11-30 09:58:27 -05:00
|
|
|
int BlockX = a_RelX + OfsX;
|
|
|
|
int BlockY = a_RelY + OfsY;
|
|
|
|
int BlockZ = a_RelZ + OfsZ;
|
|
|
|
cChunk * Chunk = a_Chunk.GetRelNeighborChunkAdjustCoords(BlockX, BlockZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if (Chunk == nullptr)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-04-06 15:45:55 -04:00
|
|
|
// Unloaded chunk
|
2013-11-30 09:58:27 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Chunk->GetBlockTypeMeta(BlockX, BlockY, BlockZ, DestBlock, DestMeta);
|
|
|
|
if ((DestBlock != E_BLOCK_DIRT) || (DestMeta != E_META_DIRT_NORMAL))
|
|
|
|
{
|
|
|
|
// Not a regular dirt block
|
2013-07-29 07:13:03 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
BLOCKTYPE AboveDest;
|
|
|
|
NIBBLETYPE AboveMeta;
|
2013-11-30 09:58:27 -05:00
|
|
|
Chunk->GetBlockTypeMeta(BlockX, BlockY + 1, BlockZ, AboveDest, AboveMeta);
|
2014-05-07 14:37:36 -04:00
|
|
|
if (cBlockInfo::GetHandler(AboveDest)->CanDirtGrowGrass(AboveMeta))
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-15 13:01:55 -04:00
|
|
|
if (!cRoot::Get()->GetPluginManager()->CallHookBlockSpread(*Chunk->GetWorld(), Chunk->GetPosX() * cChunkDef::Width + BlockX, BlockY, Chunk->GetPosZ() * cChunkDef::Width + BlockZ, ssGrassSpread))
|
2014-03-16 11:06:03 -04:00
|
|
|
{
|
|
|
|
Chunk->FastSetBlock(BlockX, BlockY, BlockZ, E_BLOCK_GRASS, 0);
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
} // for i - repeat twice
|
|
|
|
}
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|