2012-09-23 18:09:57 -04:00
|
|
|
|
2012-07-15 16:36:34 -04:00
|
|
|
#pragma once
|
2012-09-23 18:09:57 -04:00
|
|
|
|
|
|
|
#include "ItemHandler.h"
|
|
|
|
#include "../World.h"
|
|
|
|
#include "../Player.h"
|
2012-07-15 16:36:34 -04:00
|
|
|
|
|
|
|
class cItemDyeHandler : public cItemHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cItemDyeHandler(int a_ItemID)
|
2012-07-16 15:20:37 -04:00
|
|
|
: cItemHandler(a_ItemID)
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-16 15:20:37 -04:00
|
|
|
virtual bool OnItemUse(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
|
|
|
{
|
|
|
|
// TODO: Handle coloring the sheep, too (OnItemUseOnEntity maybe)
|
|
|
|
// Handle growing the plants:
|
|
|
|
if (a_Item->m_ItemHealth == E_META_DYE_WHITE)
|
|
|
|
{
|
|
|
|
if(a_World->GrowPlant(a_X, a_Y, a_Z, true))
|
|
|
|
{
|
|
|
|
if (a_Player->GetGameMode() == eGameMode_Survival)
|
|
|
|
{
|
2012-07-17 10:33:51 -04:00
|
|
|
cItem Item(a_Item->m_ItemID, 1, a_Item->m_ItemHealth);
|
|
|
|
a_Player->GetInventory().RemoveItem(Item);
|
2012-07-15 16:36:34 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|