Files
cuberite-2a/source/Blocks/BlockRedstoneRepeater.cpp
T

48 lines
1.0 KiB
C++
Raw Normal View History

2012-07-15 20:36:34 +00:00
#include "Globals.h"
#include "BlockRedstoneRepeater.h"
#include "../Item.h"
#include "../World.h"
#include "../Player.h"
2012-10-13 09:53:28 +00:00
#include "../Simulator/RedstoneSimulator.h"
2012-07-15 20:36:34 +00:00
cBlockRedstoneRepeaterHandler::cBlockRedstoneRepeaterHandler(BLOCKTYPE a_BlockType)
: cBlockHandler(a_BlockType)
2012-07-15 20:36:34 +00:00
{
}
void cBlockRedstoneRepeaterHandler::OnDestroyed(cWorld *a_World, int a_BlockX, int a_BlockY, int a_BlockZ)
2012-07-15 20:36:34 +00:00
{
// Nothing needed yet
2012-07-15 20:36:34 +00:00
}
void cBlockRedstoneRepeaterHandler::OnUse(cWorld *a_World, cPlayer *a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ)
2012-07-15 20:36:34 +00:00
{
a_World->FastSetBlock(a_BlockX, a_BlockY, a_BlockZ, m_BlockType, ((a_World->GetBlockMeta(a_BlockX, a_BlockY, a_BlockZ) + 0x04) & 0x0f));
2012-07-15 20:36:34 +00:00
}
void cBlockRedstoneRepeaterHandler::OnDigging(cWorld *a_World, cPlayer *a_Player, int a_BlockX, int a_BlockY, int a_BlockZ)
2012-08-19 10:44:19 +00:00
{
OnUse(a_World, a_Player, a_BlockX, a_BlockY, a_BlockZ, BLOCK_FACE_NONE, 8, 8, 8);
}