summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemVines.h
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2022-01-02 12:56:36 +0100
committerGitHub <noreply@github.com>2022-01-02 12:56:36 +0100
commitc52f299e724bf893944553ac3aeedf7bf0a58241 (patch)
tree071ed4a45a7054231f60a9dd705dc4d69d10e6c6 /src/Items/ItemVines.h
parentWriteBlockEntity: don't write position multiple times (#5373) (diff)
downloadcuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar.gz
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar.bz2
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar.lz
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar.xz
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar.zst
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.zip
Diffstat (limited to 'src/Items/ItemVines.h')
-rw-r--r--src/Items/ItemVines.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/Items/ItemVines.h b/src/Items/ItemVines.h
new file mode 100644
index 000000000..07b6ec23e
--- /dev/null
+++ b/src/Items/ItemVines.h
@@ -0,0 +1,44 @@
+
+#pragma once
+
+#include "ItemHandler.h"
+
+
+
+
+
+class cItemVinesHandler final :
+ public cItemHandler
+{
+ using Super = cItemHandler;
+
+public:
+
+ using Super::Super;
+
+private:
+
+ virtual bool CommitPlacement(cPlayer & a_Player, const cItem & a_HeldItem, const Vector3i a_PlacePosition, const eBlockFace a_ClickedBlockFace, const Vector3i a_CursorPosition) const override
+ {
+ BLOCKTYPE Block;
+ NIBBLETYPE Meta;
+ a_Player.GetWorld()->GetBlockTypeMeta(a_PlacePosition, Block, Meta);
+
+ NIBBLETYPE PlaceMeta;
+ switch (a_ClickedBlockFace)
+ {
+ case BLOCK_FACE_NORTH: PlaceMeta = 0x1; break;
+ case BLOCK_FACE_SOUTH: PlaceMeta = 0x4; break;
+ case BLOCK_FACE_WEST: PlaceMeta = 0x8; break;
+ case BLOCK_FACE_EAST: PlaceMeta = 0x2; break;
+ default: return false;
+ }
+
+ if (Block == E_BLOCK_VINES)
+ {
+ PlaceMeta |= Meta;
+ }
+
+ return a_Player.PlaceBlock(a_PlacePosition, E_BLOCK_VINES, PlaceMeta);
+ }
+};