2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "BlockHandler.h"
|
2014-01-25 14:14:14 -05:00
|
|
|
#include "ChunkInterface.h"
|
|
|
|
#include "WorldInterface.h"
|
2014-03-25 17:26:13 -04:00
|
|
|
#include "MetaRotator.h"
|
2013-08-19 05:39:13 -04:00
|
|
|
#include "../Entities/Player.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockBedHandler :
|
2014-03-25 17:26:13 -04:00
|
|
|
public cMetaRotator<cBlockHandler, 0x3, 0x02, 0x03, 0x00, 0x01, true>
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cBlockBedHandler(BLOCKTYPE a_BlockType)
|
2014-07-19 08:53:41 -04:00
|
|
|
: cMetaRotator<cBlockHandler, 0x3, 0x02, 0x03, 0x00, 0x01, true>(a_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-04 13:59:05 -05:00
|
|
|
virtual void OnPlacedByPlayer(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta) override;
|
2014-02-01 08:06:32 -05:00
|
|
|
virtual void OnDestroyed(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ) override;
|
2014-02-04 13:59:05 -05:00
|
|
|
virtual void OnUse(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ) override;
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
virtual bool IsUseable(void) override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
|
|
|
{
|
|
|
|
// Reset meta to zero
|
|
|
|
a_Pickups.push_back(cItem(E_ITEM_BED, 1, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-07 06:59:48 -04:00
|
|
|
virtual bool CanDirtGrowGrass(NIBBLETYPE a_Meta) override
|
2014-04-06 15:41:01 -04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
// Bed specific helper functions
|
|
|
|
static NIBBLETYPE RotationToMetaData(double a_Rotation)
|
|
|
|
{
|
|
|
|
a_Rotation += 180 + (180 / 4); // So its not aligned with axis
|
|
|
|
if (a_Rotation > 360) a_Rotation -= 360;
|
|
|
|
|
|
|
|
a_Rotation = (a_Rotation / 360) * 4;
|
|
|
|
|
|
|
|
return ((char)a_Rotation + 2) % 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Vector3i MetaDataToDirection(NIBBLETYPE a_MetaData)
|
|
|
|
{
|
|
|
|
switch (a_MetaData)
|
|
|
|
{
|
|
|
|
case 0: return Vector3i(0, 0, 1);
|
|
|
|
case 1: return Vector3i(-1, 0, 0);
|
|
|
|
case 2: return Vector3i(0, 0, -1);
|
|
|
|
case 3: return Vector3i(1, 0, 0);
|
|
|
|
}
|
|
|
|
return Vector3i();
|
|
|
|
}
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|