Files
cuberite-2a/source/Items/ItemComparator.h
T

41 lines
720 B
C++
Raw Normal View History

2013-09-18 18:27:21 +01:00
#pragma once
#include "ItemHandler.h"
2013-11-18 22:30:34 +00:00
#include "../Blocks/BlockRedstoneRepeater.h"
2013-09-18 18:27:21 +01:00
class cItemComparatorHandler :
public cItemHandler
{
public:
cItemComparatorHandler(int a_ItemType) :
cItemHandler(a_ItemType)
{
}
virtual bool IsPlaceable(void) override
{
return true;
}
virtual bool GetPlacementBlockTypeMeta(
cWorld * a_World, cPlayer * a_Player,
int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace,
int a_CursorX, int a_CursorY, int a_CursorZ,
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
) override
{
a_BlockType = E_BLOCK_INACTIVE_COMPARATOR;
2013-11-18 22:30:34 +00:00
a_BlockMeta = cBlockRedstoneRepeaterHandler::RepeaterRotationToMetaData(a_Player->GetRotation());
2013-09-18 18:27:21 +01:00
return true;
}
} ;