summaryrefslogtreecommitdiff
path: root/src/environment.cpp
diff options
context:
space:
mode:
authorMark Holmquist <marktraceur@gmail.com>2011-08-16 02:14:49 -0700
committerMark Holmquist <marktraceur@gmail.com>2011-09-23 18:13:53 -0700
commit85f119e1e6cc958a54eaf8468f2a302aa8c60dbe (patch)
tree289ee051ee5eeba1174147229f111ce109ac9e68 /src/environment.cpp
parent789c88509c1eab8407d3451d55eb31f65150e54a (diff)
downloadminetest-85f119e1e6cc958a54eaf8468f2a302aa8c60dbe.tar.gz
minetest-85f119e1e6cc958a54eaf8468f2a302aa8c60dbe.tar.bz2
minetest-85f119e1e6cc958a54eaf8468f2a302aa8c60dbe.zip
Adding (most) of the sapling functionality. It has yet to work, since MEET_OTHER was not implemented at the time of this commit. Hopefully it will work when merged with celeron's latest.
Diffstat (limited to 'src/environment.cpp')
-rw-r--r--src/environment.cpp30
1 files changed, 29 insertions, 1 deletions
diff --git a/src/environment.cpp b/src/environment.cpp
index 8103b7110..93f1627c5 100644
--- a/src/environment.cpp
+++ b/src/environment.cpp
@@ -25,6 +25,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "mapblock.h"
#include "serverobject.h"
#include "content_sao.h"
+#include "mapgen.h"
Environment::Environment():
m_time_of_day(9000)
@@ -922,7 +923,34 @@ void ServerEnvironment::step(float dtime)
addActiveObject(obj);
}
}
- }
+ }
+ /*
+ Make trees from saplings!
+ */
+ if(n.getContent() == CONTENT_SAPLING)
+ {
+ if(myrand()%2 == 0)
+ {
+ core::map<v3s16, MapBlock*> modified_blocks;
+ v3s16 tree_p = p;
+ MapEditEvent event;
+ event.type = MEET_OTHER;
+ ManualMapVoxelManipulator vmanip(m_map);
+ v3s16 tree_blockp = getNodeBlockPos(tree_p);
+ vmanip.initialEmerge(tree_blockp - v3s16(1,1,1), tree_blockp + v3s16(1,1,1));
+ bool is_apple_tree = myrand()%4 == 0;
+ mapgen::make_tree(vmanip, tree_p, is_apple_tree);
+ for(core::map<v3s16, MapBlock*>::Iterator
+ i = modified_blocks.getIterator();
+ i.atEnd() == false; i++)
+ {
+ v3s16 p = i.getNode()->getKey();
+ event.modified_blocks.insert(p, true);
+ }
+ m_map->dispatchEvent(&event);
+ }
+ }
+
}
}
}