2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
// BlockDropSpenser.h
|
|
|
|
|
|
|
|
// Declares the cBlockDropSpenserHandler class representing the BlockHandler for Dropper and Dispenser blocks
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-05-25 08:46:34 -04:00
|
|
|
#include "../Blocks/BlockPiston.h"
|
2019-10-16 04:06:34 -04:00
|
|
|
#include "../BlockEntities/DropSpenserEntity.h"
|
|
|
|
#include "Mixins.h"
|
2013-08-05 04:43:43 -04:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockDropSpenserHandler :
|
2014-03-25 17:26:13 -04:00
|
|
|
public cMetaRotator<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2019-10-16 04:06:34 -04:00
|
|
|
using super = cMetaRotator<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>;
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
public:
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
cBlockDropSpenserHandler(BLOCKTYPE a_BlockType):
|
|
|
|
super(a_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual bool GetPlacementBlockTypeMeta(
|
2017-07-31 16:17:52 -04:00
|
|
|
cChunkInterface & a_ChunkInterface, cPlayer & a_Player,
|
2014-07-17 16:50:58 -04:00
|
|
|
int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace,
|
2013-07-29 07:13:03 -04:00
|
|
|
int a_CursorX, int a_CursorY, int a_CursorZ,
|
|
|
|
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
|
|
|
|
) override
|
|
|
|
{
|
|
|
|
a_BlockType = m_BlockType;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
// FIXME: Do not use cPiston class for dispenser placement!
|
2017-07-31 16:17:52 -04:00
|
|
|
a_BlockMeta = cBlockPistonHandler::RotationPitchToMetaData(a_Player.GetYaw(), a_Player.GetPitch());
|
2013-07-29 07:13:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, cBlockEntity * a_BlockEntity, const cEntity * a_Digger, const cItem * a_Tool) override
|
2018-06-30 17:37:10 -04:00
|
|
|
{
|
2019-10-16 04:06:34 -04:00
|
|
|
cItems res(cItem(m_BlockType, 1));
|
|
|
|
if (a_BlockEntity != nullptr)
|
|
|
|
{
|
|
|
|
auto be = static_cast<cDropSpenserEntity *>(a_BlockEntity);
|
|
|
|
res.AddItemGrid(be->GetContents());
|
|
|
|
}
|
|
|
|
return res;
|
2018-06-30 17:37:10 -04:00
|
|
|
}
|
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-27 14:33:35 -05:00
|
|
|
virtual NIBBLETYPE MetaMirrorXZ(NIBBLETYPE a_Meta) override
|
|
|
|
{
|
2019-10-16 04:06:34 -04:00
|
|
|
// Bit 0x08 is a flag. Lowest three bits are position.
|
2014-02-27 14:33:35 -05:00
|
|
|
NIBBLETYPE OtherMeta = a_Meta & 0x08;
|
2019-10-16 04:06:34 -04:00
|
|
|
// Mirrors defined by a table. (Source, minecraft.gamepedia.com)
|
2014-02-27 14:33:35 -05:00
|
|
|
switch (a_Meta & 0x07)
|
|
|
|
{
|
2014-07-17 16:15:34 -04:00
|
|
|
case 0x00: return 0x01 + OtherMeta; // Down -> Up
|
|
|
|
case 0x01: return 0x00 + OtherMeta; // Up -> Down
|
2014-02-27 14:33:35 -05:00
|
|
|
}
|
|
|
|
// Not Facing Up or Down; No change.
|
|
|
|
return a_Meta;
|
|
|
|
}
|
2015-06-30 10:50:15 -04:00
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-30 10:50:15 -04:00
|
|
|
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
|
|
|
|
{
|
|
|
|
UNUSED(a_Meta);
|
|
|
|
return 11;
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|