1
0
Fork 0
cuberite-2a/src/Blocks/BlockAnvil.h

69 lines
1.5 KiB
C
Raw Normal View History

2014-03-16 16:42:23 +00:00
#pragma once
#include "BlockHandler.h"
#include "../World.h"
#include "../Entities/Player.h"
class cBlockAnvilHandler :
public cBlockHandler
{
public:
cBlockAnvilHandler(BLOCKTYPE a_BlockType)
: cBlockHandler(a_BlockType)
{
}
2014-04-01 12:23:11 +00:00
2014-03-16 16:42:23 +00:00
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
{
2014-03-16 18:25:00 +00:00
a_Pickups.push_back(cItem(E_BLOCK_ANVIL, 1, a_BlockMeta >> 2));
2014-03-16 16:42:23 +00:00
}
2014-04-30 22:47:57 +00: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
{
cWindow * Window = new cAnvilWindow(a_BlockX, a_BlockY, a_BlockZ);
2014-04-30 22:47:57 +00:00
a_Player->OpenWindow(Window);
}
2014-03-16 16:42:23 +00:00
2014-04-01 12:23:11 +00:00
2014-03-16 16:42:23 +00:00
virtual bool GetPlacementBlockTypeMeta(
cChunkInterface & a_ChunkInterface, 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
{
a_BlockType = m_BlockType;
2014-04-01 12:23:11 +00:00
NIBBLETYPE HighBits = a_BlockMeta & 0x0c; // Only highest two bits are preserved
int Direction = (int)floor(a_Player->GetYaw() * 4.0 / 360.0 + 1.5) & 0x3;
2014-03-16 16:42:23 +00:00
switch (Direction)
{
2014-04-01 12:23:11 +00:00
case 0: a_BlockMeta = 0x2 | HighBits; break;
case 1: a_BlockMeta = 0x3 | HighBits; break;
case 2: a_BlockMeta = 0x0 | HighBits; break;
case 3: a_BlockMeta = 0x1 | HighBits; break;
2014-03-16 16:42:23 +00:00
default:
{
return false;
}
}
return true;
}
2014-04-01 12:23:11 +00:00
2014-03-16 16:42:23 +00:00
virtual bool IsUseable() override
{
return true;
}
} ;