2012-07-15 16:36:34 -04:00
|
|
|
#pragma once
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "BlockHandler.h"
|
2012-07-15 16:36:34 -04:00
|
|
|
#include "../MersenneTwister.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "../World.h"
|
2012-07-15 16:36:34 -04:00
|
|
|
|
|
|
|
class cBlockCropsHandler : public cBlockHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cBlockCropsHandler(BLOCKTYPE a_BlockID)
|
|
|
|
: cBlockHandler(a_BlockID)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
virtual bool DoesAllowBlockOnTop() override
|
2012-07-16 15:20:37 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
|
|
virtual void OnDestroyed(cWorld * a_World, int a_X, int a_Y, int a_Z) override
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
MTRand rand;
|
|
|
|
NIBBLETYPE Meta = a_World->GetBlockMeta(a_X, a_Y, a_Z);
|
|
|
|
|
|
|
|
cItems Drops;
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
if (Meta & 0x7) // Is Wheat
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
Drops.push_back(cItem(E_ITEM_WHEAT, 1, 0));
|
|
|
|
}
|
2012-10-01 17:08:15 -04:00
|
|
|
Drops.push_back(cItem(E_ITEM_SEEDS, (rand.randInt(3) == 0) ? 2 : 1, 0));
|
2012-07-15 16:36:34 -04:00
|
|
|
a_World->SpawnItemPickups(Drops, a_X, a_Y, a_Z);
|
|
|
|
}
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
|
|
void OnUpdate(cWorld * a_World, int a_X, int a_Y, int a_Z) override
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
2012-10-01 17:08:15 -04:00
|
|
|
// TODO: Handle Growing here
|
2012-07-15 16:36:34 -04:00
|
|
|
}
|
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
|
|
virtual bool CanBeAt(cWorld * a_World, int a_X, int a_Y, int a_Z) override
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
return a_World->GetBlock(a_X, a_Y - 1, a_Z) == E_BLOCK_FARMLAND;
|
|
|
|
}
|
2012-09-11 08:01:34 -04:00
|
|
|
|
2012-10-01 17:08:15 -04:00
|
|
|
|
|
|
|
virtual const char * GetStepSound(void) override
|
2012-09-11 08:01:34 -04:00
|
|
|
{
|
|
|
|
return "step.grass";
|
|
|
|
}
|
2012-10-01 17:08:15 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|