2013-03-22 18:16:51 +01:00
|
|
|
/*
|
|
|
|
Minetest
|
2015-10-08 06:17:25 +02:00
|
|
|
Copyright (C) 2010-2015 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2013-03-22 18:16:51 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
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"
|
|
|
|
|
|
|
|
|
2014-10-30 07:29:37 +01:00
|
|
|
MapgenSinglenode::MapgenSinglenode(int mapgenid,
|
2014-12-06 10:18:04 +01:00
|
|
|
MapgenParams *params, EmergeManager *emerge)
|
|
|
|
: Mapgen(mapgenid, params, emerge)
|
2014-10-30 07:29:37 +01:00
|
|
|
{
|
2013-06-27 23:06:52 +02:00
|
|
|
flags = params->flags;
|
2014-10-30 07:29:37 +01:00
|
|
|
|
|
|
|
INodeDefManager *ndef = emerge->ndef;
|
|
|
|
|
|
|
|
c_node = ndef->getId("mapgen_singlenode");
|
|
|
|
if (c_node == CONTENT_IGNORE)
|
|
|
|
c_node = CONTENT_AIR;
|
2013-03-22 18:16:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-30 04:04:47 +01:00
|
|
|
MapgenSinglenode::~MapgenSinglenode()
|
|
|
|
{
|
2013-03-22 18:16:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////// Map generator
|
|
|
|
|
2014-12-30 04:04:47 +01:00
|
|
|
void MapgenSinglenode::makeChunk(BlockMakeData *data)
|
|
|
|
{
|
2015-03-06 11:21:51 +01:00
|
|
|
// Pre-conditions
|
2013-03-22 18:16:51 +01:00
|
|
|
assert(data->vmanip);
|
|
|
|
assert(data->nodedef);
|
|
|
|
assert(data->blockpos_requested.X >= data->blockpos_min.X &&
|
|
|
|
data->blockpos_requested.Y >= data->blockpos_min.Y &&
|
|
|
|
data->blockpos_requested.Z >= data->blockpos_min.Z);
|
|
|
|
assert(data->blockpos_requested.X <= data->blockpos_max.X &&
|
|
|
|
data->blockpos_requested.Y <= data->blockpos_max.Y &&
|
|
|
|
data->blockpos_requested.Z <= data->blockpos_max.Z);
|
|
|
|
|
|
|
|
this->generating = true;
|
2014-12-06 10:18:04 +01:00
|
|
|
this->vm = data->vmanip;
|
2013-03-22 18:16:51 +01:00
|
|
|
this->ndef = data->nodedef;
|
2014-12-06 10:18:04 +01:00
|
|
|
|
2013-03-22 18:16:51 +01:00
|
|
|
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);
|
2014-12-06 10:18:04 +01:00
|
|
|
|
2014-12-30 03:44:52 +01:00
|
|
|
blockseed = getBlockSeed2(node_min, data->seed);
|
|
|
|
|
2013-03-29 16:15:49 +01:00
|
|
|
MapNode n_node(c_node);
|
2014-12-06 10:18:04 +01:00
|
|
|
|
2013-03-29 18:18:09 +01:00
|
|
|
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++;
|
|
|
|
}
|
2013-03-22 18:16:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add top and bottom side of water to transforming_liquid queue
|
|
|
|
updateLiquid(&data->transforming_liquid, node_min, node_max);
|
|
|
|
|
|
|
|
// Calculate lighting
|
2014-02-08 23:50:26 +01:00
|
|
|
if (flags & MG_LIGHT)
|
2015-01-04 08:34:33 +01:00
|
|
|
calcLighting(node_min, node_max);
|
2014-12-06 10:18:04 +01:00
|
|
|
|
2013-03-22 18:16:51 +01:00
|
|
|
this->generating = false;
|
|
|
|
}
|
|
|
|
|
2014-12-30 04:04:47 +01:00
|
|
|
int MapgenSinglenode::getGroundLevelAtPoint(v2s16 p)
|
|
|
|
{
|
2013-03-22 18:16:51 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|