summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockNetherWart.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2013-12-18 18:58:41 +0100
committerMattes D <github@xoft.cz>2013-12-18 18:58:41 +0100
commitb6e1f62df790860ca68d242bf5e6dab83a5960a0 (patch)
treedcc175a4d4e1109b789fddd8336d1dae5da9340f /src/Blocks/BlockNetherWart.h
parentMerge pull request #441 from mc-server/hookentityanimation (diff)
parentImplented Nether Wart. (diff)
downloadcuberite-b6e1f62df790860ca68d242bf5e6dab83a5960a0.tar
cuberite-b6e1f62df790860ca68d242bf5e6dab83a5960a0.tar.gz
cuberite-b6e1f62df790860ca68d242bf5e6dab83a5960a0.tar.bz2
cuberite-b6e1f62df790860ca68d242bf5e6dab83a5960a0.tar.lz
cuberite-b6e1f62df790860ca68d242bf5e6dab83a5960a0.tar.xz
cuberite-b6e1f62df790860ca68d242bf5e6dab83a5960a0.tar.zst
cuberite-b6e1f62df790860ca68d242bf5e6dab83a5960a0.zip
Diffstat (limited to 'src/Blocks/BlockNetherWart.h')
-rw-r--r--src/Blocks/BlockNetherWart.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/Blocks/BlockNetherWart.h b/src/Blocks/BlockNetherWart.h
new file mode 100644
index 000000000..4cc3d989a
--- /dev/null
+++ b/src/Blocks/BlockNetherWart.h
@@ -0,0 +1,52 @@
+
+#pragma once
+
+#include "BlockHandler.h"
+#include "../MersenneTwister.h"
+#include "../World.h"
+
+
+
+
+
+/// Common class that takes care of carrots, potatoes and wheat
+class cBlockNetherWartHandler :
+ public cBlockHandler
+{
+public:
+ cBlockNetherWartHandler(BLOCKTYPE a_BlockType)
+ : cBlockHandler(a_BlockType)
+ {
+ }
+
+
+ virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_Meta) override
+ {
+ MTRand rand;
+
+ if (a_Meta == 0x7)
+ {
+ // Is fully grown, drop the entire produce:
+ a_Pickups.push_back(cItem(E_ITEM_NETHER_WART, 1 + (int)(rand.randInt(2) + rand.randInt(2)) / 2, 0));
+ }
+ else
+ {
+ a_Pickups.push_back(cItem(E_ITEM_NETHER_WART));
+ }
+ }
+
+ void OnUpdate(cChunk & a_Chunk, int a_RelX, int a_RelY, int a_RelZ) override
+ {
+ NIBBLETYPE Meta = a_Chunk.GetMeta (a_RelX, a_RelY, a_RelZ);
+
+ if (Meta < 7)
+ {
+ a_Chunk.FastSetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_NETHER_WART, ++Meta);
+ }
+ }
+
+ virtual bool CanBeAt(int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override
+ {
+ return ((a_RelY > 0) && (a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ) == E_BLOCK_SOULSAND));
+ }
+} ; \ No newline at end of file