2013-07-29 12:13:03 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "BlockHandler.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockPistonHandler :
|
|
|
|
|
public cBlockHandler
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
cBlockPistonHandler(BLOCKTYPE a_BlockType);
|
|
|
|
|
|
2014-02-01 05:06:32 -08:00
|
|
|
virtual void OnDestroyed(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ) override;
|
2013-07-29 12:13:03 +01:00
|
|
|
|
|
|
|
|
virtual bool GetPlacementBlockTypeMeta(
|
2014-02-01 05:06:32 -08:00
|
|
|
cChunkInterface & a_ChunkInterface, cPlayer * a_Player,
|
2014-02-04 10:59:05 -08:00
|
|
|
int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace,
|
2013-07-29 12:13:03 +01:00
|
|
|
int a_CursorX, int a_CursorY, int a_CursorZ,
|
|
|
|
|
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
|
|
|
|
|
) override;
|
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-09 16:20:12 +02:00
|
|
|
|
|
|
|
|
class cBlockPistonHeadHandler :
|
|
|
|
|
public cBlockHandler
|
|
|
|
|
{
|
|
|
|
|
typedef cBlockHandler super;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
cBlockPistonHeadHandler(void);
|
|
|
|
|
|
2014-02-01 06:01:13 -08:00
|
|
|
virtual void OnDestroyedByPlayer(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ) override;
|
2013-12-07 18:03:56 +00:00
|
|
|
|
|
|
|
|
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
|
|
|
|
|
{
|
|
|
|
|
// No pickups
|
|
|
|
|
// Also with 1.7, the item forms of these tecnical blocks have been removed, so giving someone this will crash their client...
|
|
|
|
|
}
|
2013-08-09 16:20:12 +02:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|