Files
cuberite-2a/source/Blocks/BlockDirt.h
T

89 lines
2.1 KiB
C++
Raw Normal View History

2012-07-15 20:36:34 +00:00
#pragma once
#include "BlockHandler.h"
2012-07-15 20:36:34 +00:00
#include "../MersenneTwister.h"
#include "../World.h"
2012-07-15 20:36:34 +00:00
/// Handler used for both dirt and grass
class cBlockDirtHandler :
public cBlockHandler
2012-07-15 20:36:34 +00:00
{
public:
cBlockDirtHandler(BLOCKTYPE a_BlockType)
: cBlockHandler(a_BlockType)
2012-07-16 19:20:37 +00:00
{
}
2012-07-15 20:36:34 +00:00
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
2012-07-15 20:36:34 +00:00
{
a_Pickups.push_back(cItem(E_BLOCK_DIRT, 1, 0));
2012-07-15 20:36:34 +00:00
}
virtual void OnUpdate(cWorld * a_World, int a_BlockX, int a_BlockY, int a_BlockZ) override
2012-07-15 20:36:34 +00:00
{
if (m_BlockType != E_BLOCK_GRASS)
2012-07-15 20:36:34 +00:00
{
2012-07-21 15:25:55 +00:00
return;
}
// Grass becomes dirt if there is something on top of it:
2013-05-09 19:06:16 +00:00
if (a_BlockY < cChunkDef::Height - 1)
2012-07-21 15:25:55 +00:00
{
2013-05-09 19:06:16 +00:00
BLOCKTYPE Above = a_World->GetBlock(a_BlockX, a_BlockY + 1, a_BlockZ);
if (!g_BlockTransparent[Above] && !g_BlockOneHitDig[Above])
{
a_World->FastSetBlock(a_BlockX, a_BlockY, a_BlockZ, E_BLOCK_DIRT, 0);
return;
}
2012-07-21 15:25:55 +00:00
}
// Grass spreads to adjacent blocks:
MTRand rand;
for (int i = 0; i < 2; i++) // Pick two blocks to grow to
{
int OfsX = rand.randInt(2) - 1; // [-1 .. 1]
int OfsY = rand.randInt(4) - 3; // [-3 .. 1]
int OfsZ = rand.randInt(2) - 1; // [-1 .. 1]
BLOCKTYPE DestBlock;
NIBBLETYPE DestMeta;
2013-05-09 19:06:16 +00:00
if ((a_BlockY + OfsY < 0) || (a_BlockY + OfsY >= cChunkDef::Height - 1))
{
// Y Coord out of range
continue;
}
2012-10-26 08:47:30 +00:00
bool IsValid = a_World->GetBlockTypeMeta(a_BlockX + OfsX, a_BlockY + OfsY, a_BlockZ + OfsZ, DestBlock, DestMeta);
if (!IsValid || (DestBlock != E_BLOCK_DIRT))
2012-07-15 20:36:34 +00:00
{
2012-07-21 15:25:55 +00:00
continue;
2012-07-15 20:36:34 +00:00
}
2012-07-21 15:25:55 +00:00
BLOCKTYPE AboveDest;
NIBBLETYPE AboveMeta;
2012-10-26 08:47:30 +00:00
IsValid = a_World->GetBlockTypeMeta(a_BlockX + OfsX, a_BlockY + OfsY + 1, a_BlockZ + OfsZ, AboveDest, AboveMeta);
ASSERT(IsValid); // WTF - how did we get the DestBlock if AboveBlock is not valid?
2012-07-21 15:25:55 +00:00
if (g_BlockOneHitDig[AboveDest] || g_BlockTransparent[AboveDest])
2012-07-15 20:36:34 +00:00
{
a_World->FastSetBlock(a_BlockX + OfsX, a_BlockY + OfsY, a_BlockZ + OfsZ, E_BLOCK_GRASS, 0);
2012-07-21 15:25:55 +00:00
}
} // for i - repeat twice
2012-07-15 20:36:34 +00:00
}
2012-09-11 12:01:34 +00:00
virtual const char * GetStepSound(void) override
2012-09-11 12:01:34 +00:00
{
return "step.gravel";
}
} ;