summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockDoor.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-03-08 18:27:24 +0100
committerMattes D <github@xoft.cz>2014-03-08 18:27:24 +0100
commit3a6499b192b4d0cf28d960a5f9ac09ee44265d5c (patch)
tree3fabece6b0dbac4c229453c81f1a57bb248ef9b8 /src/Blocks/BlockDoor.h
parentMerge pull request #770 from xdot/master (diff)
parentMoved returns (diff)
downloadcuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar
cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar.gz
cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar.bz2
cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar.lz
cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar.xz
cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.tar.zst
cuberite-3a6499b192b4d0cf28d960a5f9ac09ee44265d5c.zip
Diffstat (limited to 'src/Blocks/BlockDoor.h')
-rw-r--r--src/Blocks/BlockDoor.h58
1 files changed, 57 insertions, 1 deletions
diff --git a/src/Blocks/BlockDoor.h b/src/Blocks/BlockDoor.h
index 68be2c658..981774c17 100644
--- a/src/Blocks/BlockDoor.h
+++ b/src/Blocks/BlockDoor.h
@@ -4,13 +4,15 @@
#include "BlockHandler.h"
#include "../Entities/Player.h"
#include "Chunk.h"
+#include "MetaRotater.h"
class cBlockDoorHandler :
- public cBlockHandler
+ public cMetaRotater<cBlockHandler, 0x03, 0x01, 0x02, 0x03, 0x00, true>
{
+ typedef cMetaRotater<cBlockHandler, 0x03, 0x01, 0x02, 0x03, 0x00, true> super;
public:
cBlockDoorHandler(BLOCKTYPE a_BlockType);
@@ -168,6 +170,60 @@ public:
}
+ virtual NIBBLETYPE MetaRotateCCW(NIBBLETYPE a_Meta) override
+ {
+ if (a_Meta & 0x08)
+ {
+ return a_Meta;
+ }
+ else
+ {
+ return super::MetaRotateCCW(a_Meta);
+ }
+ }
+
+
+
+ virtual NIBBLETYPE MetaRotateCW(NIBBLETYPE a_Meta) override
+ {
+ if (a_Meta & 0x08)
+ {
+ return a_Meta;
+ }
+ else
+ {
+ return super::MetaRotateCW(a_Meta);
+ }
+ }
+
+
+
+ virtual NIBBLETYPE MetaMirrorXY(NIBBLETYPE a_Meta) override
+ {
+ if (a_Meta & 0x08)
+ {
+ return a_Meta;
+ }
+ else
+ {
+ return super::MetaMirrorXY(a_Meta);
+ }
+ }
+
+
+
+ virtual NIBBLETYPE MetaMirrorYZ(NIBBLETYPE a_Meta) override
+ {
+ if (a_Meta & 0x08)
+ {
+ return a_Meta;
+ }
+ else
+ {
+ return super::MetaMirrorYZ(a_Meta);
+ }
+ }
+
} ;