summaryrefslogtreecommitdiffstats
path: root/src/Blocks
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-02-19 19:18:40 +0100
committerHowaner <franzi.moos@googlemail.com>2014-02-19 19:18:40 +0100
commit16f3809ded538611c6c26a41316cf35bb8b1f5a5 (patch)
tree5479bee290c6d5c46a0db2e878a84bf962a22409 /src/Blocks
parentAdd new Trees (without Generator) (diff)
downloadcuberite-16f3809ded538611c6c26a41316cf35bb8b1f5a5.tar
cuberite-16f3809ded538611c6c26a41316cf35bb8b1f5a5.tar.gz
cuberite-16f3809ded538611c6c26a41316cf35bb8b1f5a5.tar.bz2
cuberite-16f3809ded538611c6c26a41316cf35bb8b1f5a5.tar.lz
cuberite-16f3809ded538611c6c26a41316cf35bb8b1f5a5.tar.xz
cuberite-16f3809ded538611c6c26a41316cf35bb8b1f5a5.tar.zst
cuberite-16f3809ded538611c6c26a41316cf35bb8b1f5a5.zip
Diffstat (limited to 'src/Blocks')
-rw-r--r--src/Blocks/BlockNewLeaves.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/Blocks/BlockNewLeaves.h b/src/Blocks/BlockNewLeaves.h
new file mode 100644
index 000000000..5a267e8c6
--- /dev/null
+++ b/src/Blocks/BlockNewLeaves.h
@@ -0,0 +1,42 @@
+#pragma once
+#include "BlockHandler.h"
+#include "BlockLeaves.h"
+#include "../World.h"
+
+
+
+
+
+
+class cBlockNewLeavesHandler :
+ public cBlockLeavesHandler
+{
+public:
+ cBlockNewLeavesHandler(BLOCKTYPE a_BlockType)
+ : cBlockLeavesHandler(a_BlockType)
+ {
+ }
+
+
+ virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
+ {
+ MTRand rand;
+
+ // Only the first 2 bits contain the display information, the others are for growing
+ if (rand.randInt(5) == 0)
+ {
+ a_Pickups.push_back(cItem(E_BLOCK_SAPLING, 1, (a_BlockMeta & 3) + 4));
+ }
+ }
+
+
+ void OnDestroyed(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ) override
+ {
+ cBlockHandler::OnDestroyed(a_ChunkInterface, a_WorldInterface, a_BlockX, a_BlockY, a_BlockZ);
+ }
+} ;
+
+
+
+
+