summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockDoor.h
blob: 180d3b48f238ac3a6b30e251149344b24857e1ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once
#include "Block.h"


class cBlockDoorHandler : public cBlockHandler
{
public:
	cBlockDoorHandler(BLOCKTYPE a_BlockID);
	virtual void OnPlaced(cWorld *a_World, int a_X, int a_Y, int a_Z, int a_Dir);
	virtual void OnDestroyed(cWorld *a_World, int a_X, int a_Y, int a_Z);
	virtual void OnClick(cWorld *a_World, cPlayer *a_Player, int a_X, int a_Y, int a_Z);
	virtual char GetDropCount();
	virtual bool IsUseable()
	{
		return true;
	}

	virtual void PlaceBlock(cWorld *a_World, cPlayer *a_Player, char a_BlockMeta, int a_X, int a_Y, int a_Z, char a_Dir);

	virtual int GetDropID()
	{
		return (m_BlockID == E_BLOCK_WOODEN_DOOR) ? E_ITEM_WOODEN_DOOR : E_ITEM_IRON_DOOR;
	}

	virtual bool CanBePlacedOnSide()
	{
		return false;
	}
};