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

74 lines
1.8 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"
2014-12-13 14:06:55 +00:00
#include "../UI/AnvilWindow.h"
2014-03-16 16:42:23 +00:00
class cBlockAnvilHandler :
public cBlockHandler
{
public:
cBlockAnvilHandler(BLOCKTYPE a_BlockType)
: cBlockHandler(a_BlockType)
{
}
2016-02-05 21:45:45 +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 bool 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
2014-04-30 22:47:57 +00:00
{
cWindow * Window = new cAnvilWindow(a_BlockX, a_BlockY, a_BlockZ);
2014-04-30 22:47:57 +00:00
a_Player->OpenWindow(Window);
return true;
2014-04-30 22:47:57 +00:00
}
2016-02-05 21:45:45 +00:00
2014-03-16 16:42:23 +00:00
virtual bool GetPlacementBlockTypeMeta(
cChunkInterface & a_ChunkInterface, cPlayer * a_Player,
2014-07-17 20:50:58 +00:00
int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace,
2014-03-16 16:42:23 +00:00
int a_CursorX, int a_CursorY, int a_CursorZ,
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
) override
{
a_BlockType = m_BlockType;
NIBBLETYPE Meta = static_cast<NIBBLETYPE>(a_Player->GetEquippedItem().m_ItemDamage);
int Direction = static_cast<int>(floor(a_Player->GetYaw() * 4.0 / 360.0 + 1.5)) & 0x3;
2014-08-28 16:57:56 +00:00
2014-03-16 16:42:23 +00:00
switch (Direction)
{
2015-05-19 10:50:59 +00:00
case 0: a_BlockMeta = static_cast<NIBBLETYPE>(0x2 | Meta << 2); break;
case 1: a_BlockMeta = static_cast<NIBBLETYPE>(0x3 | Meta << 2); break;
case 2: a_BlockMeta = static_cast<NIBBLETYPE>(0x0 | Meta << 2); break;
case 3: a_BlockMeta = static_cast<NIBBLETYPE>(0x1 | Meta << 2); break;
2014-03-16 16:42:23 +00:00
default:
{
return false;
}
}
return true;
}
virtual bool IsUseable() override
{
return true;
}
2015-06-30 14:50:15 +00:00
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
{
UNUSED(a_Meta);
return 6;
}
2014-03-16 16:42:23 +00:00
} ;