aboutsummaryrefslogtreecommitdiff
path: root/build/android/irrlicht-texturehack.patch
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2015-03-16 20:37:07 +0100
committerLoic Blot <loic.blot@unix-experience.fr>2015-03-16 20:37:07 +0100
commit315b00d15081d1f56f0e2de22a4ff1a393ab7f22 (patch)
treed60f7b384dd0ca77f411d7958d40c93acee0b721 /build/android/irrlicht-texturehack.patch
parent0c0248a19cd356eb51240c5ba8ffd17b6f7d89f4 (diff)
downloadminetest-315b00d15081d1f56f0e2de22a4ff1a393ab7f22.tar.gz
minetest-315b00d15081d1f56f0e2de22a4ff1a393ab7f22.tar.bz2
minetest-315b00d15081d1f56f0e2de22a4ff1a393ab7f22.zip
Bump android version code
Diffstat (limited to 'build/android/irrlicht-texturehack.patch')
0 files changed, 0 insertions, 0 deletions
an class="hl com">MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "mapgen_singlenode.h" #include "voxel.h" #include "mapblock.h" #include "mapnode.h" #include "map.h" #include "nodedef.h" #include "voxelalgorithms.h" #include "emerge.h" MapgenSinglenode::MapgenSinglenode(MapgenParams *params, EmergeParams *emerge) : Mapgen(MAPGEN_SINGLENODE, params, emerge) { const NodeDefManager *ndef = emerge->ndef; c_node = ndef->getId("mapgen_singlenode"); if (c_node == CONTENT_IGNORE) c_node = CONTENT_AIR; MapNode n_node(c_node); set_light = (ndef->get(n_node).sunlight_propagates) ? LIGHT_SUN : 0x00; } //////////////////////// Map generator void MapgenSinglenode::makeChunk(BlockMakeData *data) { // Pre-conditions assert(data->vmanip); assert(data->nodedef); this->generating = true; this->vm = data->vmanip; this->ndef = data->nodedef; v3s16 blockpos_min = data->blockpos_min; v3s16 blockpos_max = data->blockpos_max; // Area of central chunk v3s16 node_min = blockpos_min * MAP_BLOCKSIZE; v3s16 node_max = (blockpos_max + v3s16(1, 1, 1)) * MAP_BLOCKSIZE - v3s16(1, 1, 1); blockseed = getBlockSeed2(node_min, data->seed); MapNode n_node(c_node); for (s16 z = node_min.Z; z <= node_max.Z; z++) for (s16 y = node_min.Y; y <= node_max.Y; y++) { u32 i = vm->m_area.index(node_min.X, y, z); for (s16 x = node_min.X; x <= node_max.X; x++) { if (vm->m_data[i].getContent() == CONTENT_IGNORE) vm->m_data[i] = n_node; i++; } } // Add top and bottom side of water to transforming_liquid queue updateLiquid(&data->transforming_liquid, node_min, node_max); // Set lighting if ((flags & MG_LIGHT) && set_light == LIGHT_SUN) setLighting(LIGHT_SUN, node_min, node_max); this->generating = false; } int MapgenSinglenode::getSpawnLevelAtPoint(v2s16 p) { return 0; }