2012-07-29 08:07:22 -04:00
|
|
|
|
2012-07-15 16:36:34 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Item.h"
|
|
|
|
#include "../cWorld.h"
|
|
|
|
|
2012-07-29 08:07:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cItemSeedsHandler :
|
|
|
|
public cItemHandler
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cItemSeedsHandler(int a_ItemID)
|
|
|
|
: cItemHandler(a_ItemID)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-16 15:20:37 -04:00
|
|
|
virtual bool IsPlaceable() override
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-16 15:20:37 -04:00
|
|
|
virtual BLOCKTYPE GetBlockType() override
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
switch(m_ItemID)
|
|
|
|
{
|
2012-07-29 08:07:22 -04:00
|
|
|
case E_ITEM_SEEDS: return E_BLOCK_CROPS;
|
|
|
|
case E_ITEM_MELON_SEEDS: return E_BLOCK_MELON_STEM;
|
|
|
|
case E_ITEM_PUMPKIN_SEEDS: return E_BLOCK_PUMPKIN_STEM;
|
|
|
|
default: return E_BLOCK_AIR;
|
2012-07-15 16:36:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 08:07:22 -04:00
|
|
|
virtual NIBBLETYPE GetBlockMeta(short a_ItemDamage) override
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
return 0; //Not grown yet
|
|
|
|
}
|
|
|
|
|
2012-07-16 15:20:37 -04:00
|
|
|
virtual void PlaceBlock(cWorld *a_World, cPlayer *a_Player, cItem *a_Item, int a_X, int a_Y, int a_Z, char a_Dir) override
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
int X = a_X,
|
|
|
|
Y = a_Y,
|
|
|
|
Z = a_Z;
|
|
|
|
|
|
|
|
AddDirection(X, Y, Z, a_Dir, true);
|
|
|
|
|
|
|
|
if(a_World->GetBlock(X, Y, Z) != E_BLOCK_FARMLAND)
|
|
|
|
return;
|
|
|
|
|
|
|
|
return cItemHandler::PlaceBlock(a_World, a_Player, a_Item, a_X, a_Y, a_Z, a_Dir);
|
|
|
|
}
|
2012-07-29 08:07:22 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|