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 "../Redstone.h"
|
|
|
|
#include "../Player.h"
|
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-03 04:52:11 -04:00
|
|
|
void cBlockRedstoneRepeaterHandler::OnPlaced(cWorld *a_World, int a_BlockX, int a_BlockY, int a_BlockZ, int a_Dir)
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
|
|
|
cRedstone Redstone(a_World);
|
2012-10-03 04:52:11 -04:00
|
|
|
Redstone.ChangeRedstone(a_BlockX, a_BlockY, a_BlockZ, false);
|
2012-07-15 16:36:34 -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
|
|
|
{
|
|
|
|
cRedstone Redstone(a_World);
|
2012-10-03 04:52:11 -04:00
|
|
|
Redstone.ChangeRedstone(a_BlockX, a_BlockY, a_BlockZ, false);
|
2012-07-15 16:36:34 -04:00
|
|
|
}
|
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
void cBlockRedstoneRepeaterHandler::OnUse(cWorld *a_World, cPlayer *a_Player, int a_BlockX, int a_BlockY, int a_BlockZ)
|
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-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
|
|
|
{
|
2012-10-03 04:52:11 -04:00
|
|
|
OnUse(a_World, a_Player, a_BlockX, a_BlockY, a_BlockZ);
|
2012-08-19 06:44:19 -04:00
|
|
|
}
|
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
void cBlockRedstoneRepeaterHandler::PlaceBlock(cWorld *a_World, cPlayer *a_Player, NIBBLETYPE a_BlockMeta, int a_BlockX, int a_BlockY, int a_BlockZ, char a_Dir)
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
2012-10-03 04:52:11 -04:00
|
|
|
a_World->SetBlock(a_BlockX, a_BlockY, a_BlockZ, m_BlockType, cRedstone::RepeaterRotationToMetaData(a_Player->GetRotation()));
|
|
|
|
OnPlacedByPlayer(a_World, a_Player, a_BlockX, a_BlockY, a_BlockZ, a_Dir);
|
2012-07-15 16:36:34 -04:00
|
|
|
}
|