2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2013-12-06 19:18:58 -05:00
|
|
|
#include "BlockEntity.h"
|
2014-03-25 17:26:13 -04:00
|
|
|
#include "MetaRotator.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockEnderchestHandler :
|
2014-03-25 17:26:13 -04:00
|
|
|
public cMetaRotator<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cBlockEnderchestHandler(BLOCKTYPE a_BlockType)
|
2014-03-25 17:26:13 -04:00
|
|
|
: cMetaRotator<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>(a_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
|
|
|
{
|
2014-07-17 16:15:34 -04:00
|
|
|
// todo: Drop Ender Chest if using silk touch pickaxe
|
2013-07-29 07:13:03 -04:00
|
|
|
a_Pickups.push_back(cItem(E_BLOCK_OBSIDIAN, 8, 0));
|
|
|
|
}
|
2013-12-06 19:18:58 -05:00
|
|
|
|
|
|
|
virtual bool GetPlacementBlockTypeMeta(
|
2014-02-01 08:06:32 -05:00
|
|
|
cChunkInterface & a_ChunkInterface, cPlayer * a_Player,
|
2014-02-04 13:59:05 -05:00
|
|
|
int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace,
|
2013-12-06 19:18:58 -05:00
|
|
|
int a_CursorX, int a_CursorY, int a_CursorZ,
|
|
|
|
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
|
|
|
|
) override
|
|
|
|
{
|
|
|
|
a_BlockType = m_BlockType;
|
2014-01-17 05:11:17 -05:00
|
|
|
a_BlockMeta = RotationToMetaData(a_Player->GetYaw());
|
2013-12-06 19:18:58 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NIBBLETYPE RotationToMetaData(double a_Rotation)
|
|
|
|
{
|
|
|
|
a_Rotation += 90 + 45; // So its not aligned with axis
|
|
|
|
|
|
|
|
if (a_Rotation > 360.f)
|
|
|
|
{
|
|
|
|
a_Rotation -= 360.f;
|
|
|
|
}
|
|
|
|
if ((a_Rotation >= 0.f) && (a_Rotation < 90.f))
|
|
|
|
{
|
|
|
|
return 0x4;
|
|
|
|
}
|
|
|
|
else if ((a_Rotation >= 180) && (a_Rotation < 270))
|
|
|
|
{
|
|
|
|
return 0x5;
|
|
|
|
}
|
|
|
|
else if ((a_Rotation >= 90) && (a_Rotation < 180))
|
|
|
|
{
|
|
|
|
return 0x2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0x3;
|
|
|
|
}
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|