diff options
author | Mattes D <github@xoft.cz> | 2014-02-20 16:24:52 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-02-20 16:24:52 +0100 |
commit | 191a08fc32819c911cfa081a12db95a13d9223b6 (patch) | |
tree | 69e4fd8f1104652ea18a06ab732a656f3eacb346 /src/Generating | |
parent | APIDump: Fixed cBlockArea:GetRelBlockType() return types. (diff) | |
parent | Add BlockNewLeaves.h and rename Darkoac to Darkoak (diff) | |
download | cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar.gz cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar.bz2 cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar.lz cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar.xz cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar.zst cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/Trees.cpp | 18 | ||||
-rw-r--r-- | src/Generating/Trees.h | 6 |
2 files changed, 24 insertions, 0 deletions
diff --git a/src/Generating/Trees.cpp b/src/Generating/Trees.cpp index 7e8a3c75f..a660285d1 100644 --- a/src/Generating/Trees.cpp +++ b/src/Generating/Trees.cpp @@ -382,6 +382,24 @@ void GetBirchTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Nois +void GetAcaciaTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks) +{ + // TODO +} + + + + + +void GetDarkoakTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks) +{ + // TODO +} + + + + + void GetTallBirchTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks) { int Height = 9 + (a_Noise.IntNoise3DInt(a_BlockX + 64 * a_Seq, a_BlockY, a_BlockZ) % 3); diff --git a/src/Generating/Trees.h b/src/Generating/Trees.h index 514158eb7..00f343a3d 100644 --- a/src/Generating/Trees.h +++ b/src/Generating/Trees.h @@ -63,6 +63,12 @@ void GetLargeAppleTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a /// Generates an image of a random birch tree void GetBirchTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks); +/// Generates an image of a random acacia tree +void GetAcaciaTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks); + +/// Generates an image of a random darkoak tree +void GetDarkoakTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks); + /// Generates an image of a random large birch tree void GetTallBirchTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks,sSetBlockVector & a_OtherBlocks); |