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

52 lines
873 B
C++
Raw Normal View History

2012-08-23 20:41:48 +00:00
#pragma once
#include "ItemHandler.h"
#include "../World.h"
#include "../Sign.h"
2012-08-23 20:41:48 +00:00
class cItemSignHandler :
public cItemHandler
2012-08-23 20:41:48 +00:00
{
public:
cItemSignHandler(int a_ItemType) :
cItemHandler(a_ItemType)
2012-08-23 20:41:48 +00:00
{
}
virtual bool IsPlaceable(void) override
2012-08-23 20:41:48 +00:00
{
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
2012-08-23 20:41:48 +00:00
{
if (a_BlockFace == BLOCK_FACE_TOP)
{
a_BlockMeta = cSign::RotationToMetaData(a_Player->GetRotation());
a_BlockType = E_BLOCK_SIGN_POST;
}
else
{
a_BlockMeta = cSign::DirectionToMetaData(a_BlockFace);
a_BlockType = E_BLOCK_WALLSIGN;
}
return true;
2012-08-23 20:41:48 +00:00
}
} ;
2012-08-23 20:41:48 +00:00