2012-09-23 18:09:57 -04:00
|
|
|
|
2012-08-23 16:41:48 -04:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "ItemHandler.h"
|
|
|
|
#include "../World.h"
|
2013-01-11 23:46:01 -05:00
|
|
|
#include "../Sign.h"
|
2012-08-23 16:41:48 -04:00
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cItemSignHandler :
|
|
|
|
public cItemHandler
|
2012-08-23 16:41:48 -04:00
|
|
|
{
|
|
|
|
public:
|
2013-01-11 23:46:01 -05:00
|
|
|
cItemSignHandler(int a_ItemType) :
|
|
|
|
cItemHandler(a_ItemType)
|
2012-08-23 16:41:48 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
|
|
|
virtual bool IsPlaceable(void) override
|
2012-08-23 16:41:48 -04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
|
|
|
|
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 16:41:48 -04:00
|
|
|
{
|
2013-01-11 23:46:01 -05: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 16:41:48 -04:00
|
|
|
}
|
2013-01-11 23:46:01 -05:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-23 16:41:48 -04:00
|
|
|
|