2012-10-06 16:04:58 -04:00
|
|
|
|
2012-07-15 16:36:34 -04:00
|
|
|
#include "Globals.h"
|
|
|
|
#include "BlockRedstone.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "../Item.h"
|
|
|
|
#include "../World.h"
|
|
|
|
#include "../Torch.h"
|
2012-07-15 16:36:34 -04:00
|
|
|
|
2012-10-06 16:04:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
cBlockRedstoneHandler::cBlockRedstoneHandler(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 cBlockRedstoneHandler::OnPlaced(cWorld *a_World, int a_BlockX, int a_BlockY, int a_BlockZ, int a_Dir)
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
void cBlockRedstoneHandler::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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-03 04:52:11 -04:00
|
|
|
void cBlockRedstoneHandler::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
|
|
|
switch(m_BlockType)
|
2012-07-15 16:36:34 -04:00
|
|
|
{
|
2012-10-06 16:04:58 -04:00
|
|
|
case E_BLOCK_REDSTONE_TORCH_ON:
|
|
|
|
case E_BLOCK_REDSTONE_TORCH_OFF:
|
|
|
|
{
|
|
|
|
a_BlockMeta = cTorch::DirectionToMetaData(a_Dir);
|
|
|
|
break;
|
|
|
|
}
|
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, a_BlockMeta);
|
|
|
|
OnPlacedByPlayer(a_World, a_Player, a_BlockX, a_BlockY, a_BlockZ, a_Dir);
|
2012-10-06 16:04:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|