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