diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-01-27 12:58:52 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-03-27 19:01:50 +0300 |
commit | 56496ad5d8a7662b0ae5c9f25d1348cb7b677b65 (patch) | |
tree | 04d32a83a93833f59de93d4a1b763524f4153764 /src/voxel.cpp | |
parent | e15dca2a9fac70dd4f541f7b37c6f61fcf974ea1 (diff) | |
download | minetest-56496ad5d8a7662b0ae5c9f25d1348cb7b677b65.tar.gz minetest-56496ad5d8a7662b0ae5c9f25d1348cb7b677b65.tar.bz2 minetest-56496ad5d8a7662b0ae5c9f25d1348cb7b677b65.zip |
Implement propagateSunlight for VoxelManipulator
Diffstat (limited to 'src/voxel.cpp')
-rw-r--r-- | src/voxel.cpp | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/src/voxel.cpp b/src/voxel.cpp index bd06be877..34faccb19 100644 --- a/src/voxel.cpp +++ b/src/voxel.cpp @@ -63,7 +63,7 @@ void VoxelManipulator::clear() m_flags = NULL; } -void VoxelManipulator::print(std::ostream &o, INodeDefManager *nodemgr, +void VoxelManipulator::print(std::ostream &o, INodeDefManager *ndef, VoxelPrintMode mode) { v3s16 em = m_area.getExtent(); @@ -94,8 +94,9 @@ void VoxelManipulator::print(std::ostream &o, INodeDefManager *nodemgr, else { c = 'X'; - content_t m = m_data[m_area.index(x,y,z)].getContent(); - u8 pr = m_data[m_area.index(x,y,z)].param2; + MapNode n = m_data[m_area.index(x,y,z)]; + content_t m = n.getContent(); + u8 pr = n.param2; if(mode == VOXELPRINT_MATERIAL) { if(m <= 9) @@ -103,7 +104,7 @@ void VoxelManipulator::print(std::ostream &o, INodeDefManager *nodemgr, } else if(mode == VOXELPRINT_WATERPRESSURE) { - if(nodemgr->get(m).isLiquid()) + if(ndef->get(m).isLiquid()) { c = 'w'; if(pr <= 9) @@ -118,6 +119,21 @@ void VoxelManipulator::print(std::ostream &o, INodeDefManager *nodemgr, c = '#'; } } + else if(mode == VOXELPRINT_LIGHT_DAY) + { + if(ndef->get(m).light_source != 0) + c = 'S'; + else if(ndef->get(m).light_propagates == false) + c = 'X'; + else + { + u8 light = n.getLight(LIGHTBANK_DAY, ndef); + if(light < 10) + c = '0' + light; + else + c = 'a' + (light-10); + } + } } o<<c; } |