2012-10-06 16:04:58 -04:00
|
|
|
|
2012-07-15 16:36:34 -04:00
|
|
|
#include "Globals.h"
|
|
|
|
#include "BlockRedstoneRepeater.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "../Item.h"
|
|
|
|
#include "../World.h"
|
|
|
|
#include "../Player.h"
|
2012-10-13 05:53:28 -04:00
|
|
|
#include "../Simulator/RedstoneSimulator.h"
|
2012-10-06 16:04:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-07-15 16:36:34 -04:00
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
cBlockRedstoneRepeaterHandler::cBlockRedstoneRepeaterHandler(BLOCKTYPE a_BlockType)
|
|
|
|
: cBlockHandler(a_BlockType)
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-10-06 16:04:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
void cBlockRedstoneRepeaterHandler::OnDestroyed(cWorld *a_World, int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
2012-10-06 16:04:58 -04:00
|
|
|
// Nothing needed yet
|
2012-07-15 16:36:34 -04:00
|
|
|
}
|
|
|
|
|
2012-10-06 16:04:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-01-11 23:46:01 -05: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 16:36:34 -04:00
|
|
|
{
|
2012-10-03 04:52:11 -04: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 16:36:34 -04:00
|
|
|
}
|
|
|
|
|
2012-10-06 16:04:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
void cBlockRedstoneRepeaterHandler::OnDigging(cWorld *a_World, cPlayer *a_Player, int a_BlockX, int a_BlockY, int a_BlockZ)
|
2012-08-19 06:44:19 -04:00
|
|
|
{
|
2013-01-11 23:46:01 -05:00
|
|
|
OnUse(a_World, a_Player, a_BlockX, a_BlockY, a_BlockZ, BLOCK_FACE_NONE, 8, 8, 8);
|
2012-10-06 16:04:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|