diff options
author | madmaxoft <github@xoft.cz> | 2013-08-18 14:28:52 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-18 14:28:52 +0200 |
commit | a46977f56e0ca93f2d0a640ed074b1a0c266207c (patch) | |
tree | 195539c4846c1c1461b178affecc484c4388cc53 /source/Piston.h | |
parent | Added cWindow property manipulation API. (diff) | |
download | cuberite-a46977f56e0ca93f2d0a640ed074b1a0c266207c.tar cuberite-a46977f56e0ca93f2d0a640ed074b1a0c266207c.tar.gz cuberite-a46977f56e0ca93f2d0a640ed074b1a0c266207c.tar.bz2 cuberite-a46977f56e0ca93f2d0a640ed074b1a0c266207c.tar.lz cuberite-a46977f56e0ca93f2d0a640ed074b1a0c266207c.tar.xz cuberite-a46977f56e0ca93f2d0a640ed074b1a0c266207c.tar.zst cuberite-a46977f56e0ca93f2d0a640ed074b1a0c266207c.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Piston.h | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/source/Piston.h b/source/Piston.h index 67aa80d67..cc051e454 100644 --- a/source/Piston.h +++ b/source/Piston.h @@ -57,12 +57,36 @@ public: void ExtendPiston( int, int, int ); void RetractPiston( int, int, int ); - + + /// Returns true if the piston (specified by blocktype) is a sticky piston + static bool IsSticky(BLOCKTYPE a_BlockType); + + /// Returns true if the piston (with the specified meta) is extended + static bool IsExtended(NIBBLETYPE a_PistonMeta); + + /// Returns true if the extension (with the specified meta) is sticky + static bool IsStickyExtension(NIBBLETYPE a_ExtMeta); + + /// Returns true if the specified block can be pushed by a piston (and left intact) + static bool CanPush(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); + + /// Returns true if the specified block can be pushed by a piston and broken / replaced + static bool CanBreakPush(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); + + /// Returns true if the specified block can be pulled by a sticky piston + static bool CanPull(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); + + /// Updates the coords by the specified amount in the direction a piston of the specified meta is facing + static void AddDir(int & a_BlockX, int & a_BlockY, int & a_BlockZ, NIBBLETYPE a_PistonMeta, int a_Amount); + + cWorld * m_World; private: void ChainMove( int, int, int, char, unsigned short * ); - unsigned short FirstPassthroughBlock( int, int, int, char ); + + /// Returns how many blocks the piston has to push (where the first free space is); <0 when unpushable + int FirstPassthroughBlock(int a_PistonX, int a_PistonY, int a_PistonZ, NIBBLETYPE a_PistonMeta); } ; |