diff options
author | worktycho <work.tycho@gmail.com> | 2015-12-14 21:31:33 +0100 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2015-12-14 21:31:33 +0100 |
commit | 1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84 (patch) | |
tree | 8adc41d291bdac3c83eb0c56933e7a29cd1c3942 /src/Blocks/BlockHandler.h | |
parent | Merge pull request #2744 from cuberite/HopperMetaStrip (diff) | |
parent | blockheight mechanism (diff) | |
download | cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar.gz cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar.bz2 cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar.lz cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar.xz cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar.zst cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.zip |
Diffstat (limited to 'src/Blocks/BlockHandler.h')
-rw-r--r-- | src/Blocks/BlockHandler.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Blocks/BlockHandler.h b/src/Blocks/BlockHandler.h index 4a7b76019..41fbc5140 100644 --- a/src/Blocks/BlockHandler.h +++ b/src/Blocks/BlockHandler.h @@ -124,7 +124,11 @@ public: /** Returns if this block drops if it gets destroyed by an unsuitable situation. Default: true */ virtual bool DoesDropOnUnsuitable(void); - + + /** Tests if a_Position is inside the block where a_Position is relative to the origin of the block + Note that this is considered from a "top-down" perspective i.e. empty spaces on the bottom of a block don't matter */ + virtual bool IsInsideBlock(const Vector3d & a_Position, const BLOCKTYPE a_BlockType, const NIBBLETYPE a_BlockMeta); + /** Called when one of the neighbors gets set; equivalent to MC block update. By default drops if position no more suitable (CanBeAt(), DoesDropOnUnsuitable(), Drop()), and wakes up all simulators on the block. */ |