From 4df23d19b7be2f274974e3dfe91e716e6296f11c Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 29 Sep 2012 13:59:32 +0000 Subject: Unified folder name-casing git-svn-id: http://mc-server.googlecode.com/svn/trunk@902 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Items/ItemShears.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 source/Items/ItemShears.h (limited to 'source/Items/ItemShears.h') diff --git a/source/Items/ItemShears.h b/source/Items/ItemShears.h new file mode 100644 index 000000000..2f3476735 --- /dev/null +++ b/source/Items/ItemShears.h @@ -0,0 +1,42 @@ + +#pragma once + +#include "ItemHandler.h" +#include "../World.h" +#include "../Player.h" + +class cItemShearsHandler : public cItemHandler +{ +public: + cItemShearsHandler(int a_ItemID) + : cItemHandler(a_ItemID) + { + + } + virtual bool IsTool() override + { + return true; + } + virtual bool OnDiggingBlock(cWorld *a_World, cPlayer *a_Player, cItem *a_Item, int a_X, int a_Y, int a_Z, char a_Dir) override + { + BLOCKTYPE Block = a_World->GetBlock(a_X, a_Y, a_Z); + if(Block == E_BLOCK_LEAVES) + { + cItems Drops; + Drops.push_back(cItem(E_ITEM_LEAVES, 1, a_World->GetBlockMeta(a_X, a_Y, a_Z))); + a_World->SpawnItemPickups(Drops, a_X, a_Y, a_Z); + + a_World->SetBlock(a_X, a_Y, a_Z, E_BLOCK_AIR, 0); + a_Player->UseEquippedItem(); + return true; + } + return false; + } + + + virtual bool CanHarvestBlock(BLOCKTYPE a_BlockID) override + { + return a_BlockID == E_BLOCK_COBWEB + || a_BlockID == E_BLOCK_VINES; + } +}; \ No newline at end of file -- cgit v1.2.3