86a991c5a8
git-svn-id: http://mc-server.googlecode.com/svn/trunk@677 0a769ca7-a7f5-676a-18bf-c427514a06d6
36 lines
833 B
C++
36 lines
833 B
C++
#pragma once
|
|
#include "BlockRedstone.h"
|
|
#include "../cTorch.h"
|
|
|
|
|
|
class cBlockRedstoneTorchHandler : public cBlockRedstoneHandler
|
|
{
|
|
public:
|
|
cBlockRedstoneTorchHandler(BLOCKTYPE a_BlockID)
|
|
: cBlockRedstoneHandler(a_BlockID)
|
|
{
|
|
}
|
|
|
|
virtual bool CanBePlacedAt(cWorld *a_World, int a_X, int a_Y, int a_Z, char a_Dir) override
|
|
{
|
|
AddDirection( a_X, a_Y, a_Z, a_Dir, true );
|
|
return a_World->GetBlock( a_X, a_Y, a_Z ) != E_BLOCK_AIR;
|
|
}
|
|
|
|
|
|
virtual bool CanBeAt(cWorld *a_World, int a_X, int a_Y, int a_Z) override
|
|
{
|
|
char Dir = cTorch::MetaDataToDirection(a_World->GetBlockMeta( a_X, a_Y, a_Z));
|
|
return CanBePlacedAt(a_World, a_X, a_Y, a_Z, Dir);
|
|
}
|
|
|
|
virtual int GetDropID() override
|
|
{
|
|
return E_ITEM_REDSTONE_TORCH_ON;
|
|
}
|
|
|
|
virtual bool CanBePlacedOnSide() override
|
|
{
|
|
return true;
|
|
}
|
|
}; |