2012-10-01 14:08:15 -07:00
|
|
|
|
2012-07-15 13:36:34 -07:00
|
|
|
#pragma once
|
2012-10-01 14:08:15 -07:00
|
|
|
|
2012-09-23 15:09:57 -07:00
|
|
|
#include "BlockHandler.h"
|
2012-07-15 13:36:34 -07:00
|
|
|
#include "../MersenneTwister.h"
|
2012-09-23 15:09:57 -07:00
|
|
|
#include "../World.h"
|
2012-07-15 13:36:34 -07:00
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Handler used for both dirt and grass
|
|
|
|
class cBlockDirtHandler :
|
|
|
|
public cBlockHandler
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
|
|
|
public:
|
2012-07-16 12:20:37 -07:00
|
|
|
cBlockDirtHandler(BLOCKTYPE a_BlockID)
|
|
|
|
: cBlockHandler(a_BlockID)
|
|
|
|
{
|
|
|
|
}
|
2012-07-15 13:36:34 -07:00
|
|
|
|
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
2012-10-01 14:08:15 -07:00
|
|
|
a_Pickups.push_back(cItem(E_ITEM_DIRT, 1, 0));
|
2012-07-15 13:36:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
void OnUpdate(cWorld * a_World, int a_X, int a_Y, int a_Z) override
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
2012-07-21 08:25:55 -07:00
|
|
|
if (m_BlockID != E_BLOCK_GRASS)
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
2012-07-21 08:25:55 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Grass becomes dirt if there is something on top of it:
|
|
|
|
BLOCKTYPE Above = a_World->GetBlock(a_X, a_Y + 1, a_Z);
|
|
|
|
if (!g_BlockTransparent[Above] && !g_BlockOneHitDig[Above])
|
|
|
|
{
|
|
|
|
a_World->FastSetBlock(a_X, a_Y, a_Z, E_BLOCK_DIRT, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
a_World->GetBlockTypeMeta(a_X + OfsX, a_Y + OfsY, a_Z + OfsZ, DestBlock, DestMeta);
|
|
|
|
if(DestBlock != E_BLOCK_DIRT)
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
2012-07-21 08:25:55 -07:00
|
|
|
continue;
|
2012-07-15 13:36:34 -07:00
|
|
|
}
|
|
|
|
|
2012-07-21 08:25:55 -07:00
|
|
|
BLOCKTYPE AboveDest;
|
|
|
|
NIBBLETYPE AboveMeta;
|
|
|
|
a_World->GetBlockTypeMeta(a_X + OfsX, a_Y + OfsY + 1, a_Z + OfsZ, AboveDest, AboveMeta);
|
|
|
|
if (g_BlockOneHitDig[AboveDest] || g_BlockTransparent[AboveDest])
|
2012-07-15 13:36:34 -07:00
|
|
|
{
|
2012-07-21 08:25:55 -07:00
|
|
|
a_World->FastSetBlock(a_X + OfsX, a_Y + OfsY, a_Z + OfsZ, E_BLOCK_GRASS, 0);
|
|
|
|
}
|
|
|
|
} // for i - repeat twice
|
2012-07-15 13:36:34 -07:00
|
|
|
}
|
2012-09-11 05:01:34 -07:00
|
|
|
|
2012-10-01 14:08:15 -07:00
|
|
|
|
|
|
|
virtual const char * GetStepSound(void) override
|
2012-09-11 05:01:34 -07:00
|
|
|
{
|
|
|
|
return "step.gravel";
|
|
|
|
}
|
2012-10-01 14:08:15 -07:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|