521087fc07
git-svn-id: http://mc-server.googlecode.com/svn/trunk@721 0a769ca7-a7f5-676a-18bf-c427514a06d6
43 lines
849 B
C++
43 lines
849 B
C++
|
|
#pragma once
|
|
#include "BlockRedstone.h"
|
|
#include "BlockTorch.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
|
|
{
|
|
return cBlockTorchHandler::TorchCanBePlacedAt(a_World, a_X, a_Y, a_Z, a_Dir);
|
|
}
|
|
|
|
|
|
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(void) override
|
|
{
|
|
return E_ITEM_REDSTONE_TORCH_ON;
|
|
}
|
|
|
|
|
|
virtual bool CanBePlacedOnSide() override
|
|
{
|
|
return true;
|
|
}
|
|
}; |