2011-09-11 18:16:07 +02:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2015-05-19 04:30:25 +02:00
|
|
|
Copyright (C) 2010-2015 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
|
|
|
|
Copyright (C) 2010-2015 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-06-25 17:12:41 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
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
|
2011-06-25 17:12:41 +02:00
|
|
|
(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
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-06-25 17:12:41 +02:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-06-25 17:12:41 +02:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mapgen.h"
|
|
|
|
#include "voxel.h"
|
|
|
|
#include "noise.h"
|
2014-12-12 20:07:49 +01:00
|
|
|
#include "gamedef.h"
|
2014-11-01 18:16:23 +01:00
|
|
|
#include "mg_biome.h"
|
2011-06-25 17:12:41 +02:00
|
|
|
#include "mapblock.h"
|
2012-11-26 03:16:48 +01:00
|
|
|
#include "mapnode.h"
|
2011-06-25 17:12:41 +02:00
|
|
|
#include "map.h"
|
2011-06-26 14:48:56 +02:00
|
|
|
#include "content_sao.h"
|
2011-11-14 20:41:30 +01:00
|
|
|
#include "nodedef.h"
|
2014-12-06 10:18:04 +01:00
|
|
|
#include "emerge.h"
|
2012-01-27 12:24:06 +01:00
|
|
|
#include "voxelalgorithms.h"
|
2015-04-01 19:41:35 +02:00
|
|
|
#include "porting.h"
|
2012-01-27 13:10:10 +01:00
|
|
|
#include "profiler.h"
|
2015-04-01 15:01:28 +02:00
|
|
|
#include "settings.h"
|
2012-12-29 16:20:09 +01:00
|
|
|
#include "treegen.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "serialization.h"
|
2013-06-22 06:29:44 +02:00
|
|
|
#include "util/serialize.h"
|
2015-03-31 05:40:35 +02:00
|
|
|
#include "util/numeric.h"
|
2013-08-13 19:15:06 +02:00
|
|
|
#include "filesys.h"
|
2014-09-12 00:22:05 +02:00
|
|
|
#include "log.h"
|
2016-05-02 08:24:57 +02:00
|
|
|
#include "cavegen.h"
|
2016-05-22 22:27:31 +02:00
|
|
|
#include "dungeongen.h"
|
2013-01-06 20:40:24 +01:00
|
|
|
|
2013-02-05 21:01:33 +01:00
|
|
|
FlagDesc flagdesc_mapgen[] = {
|
2015-11-15 12:55:45 +01:00
|
|
|
{"trees", MG_TREES},
|
|
|
|
{"caves", MG_CAVES},
|
|
|
|
{"dungeons", MG_DUNGEONS},
|
|
|
|
{"flat", MG_FLAT},
|
|
|
|
{"light", MG_LIGHT},
|
|
|
|
{"decorations", MG_DECORATIONS},
|
2014-02-08 23:50:26 +01:00
|
|
|
{NULL, 0}
|
2013-04-01 02:02:03 +02:00
|
|
|
};
|
|
|
|
|
2013-12-14 07:52:06 +01:00
|
|
|
FlagDesc flagdesc_gennotify[] = {
|
|
|
|
{"dungeon", 1 << GENNOTIFY_DUNGEON},
|
|
|
|
{"temple", 1 << GENNOTIFY_TEMPLE},
|
|
|
|
{"cave_begin", 1 << GENNOTIFY_CAVE_BEGIN},
|
|
|
|
{"cave_end", 1 << GENNOTIFY_CAVE_END},
|
|
|
|
{"large_cave_begin", 1 << GENNOTIFY_LARGECAVE_BEGIN},
|
|
|
|
{"large_cave_end", 1 << GENNOTIFY_LARGECAVE_END},
|
2014-12-06 10:18:04 +01:00
|
|
|
{"decoration", 1 << GENNOTIFY_DECORATION},
|
2013-12-14 07:52:06 +01:00
|
|
|
{NULL, 0}
|
|
|
|
};
|
|
|
|
|
2013-03-24 06:43:38 +01:00
|
|
|
|
2015-10-04 08:54:25 +02:00
|
|
|
////
|
|
|
|
//// Mapgen
|
|
|
|
////
|
2015-03-31 05:40:35 +02:00
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
Mapgen::Mapgen()
|
|
|
|
{
|
2015-06-19 01:17:03 +02:00
|
|
|
generating = false;
|
|
|
|
id = -1;
|
|
|
|
seed = 0;
|
|
|
|
water_level = 0;
|
|
|
|
flags = 0;
|
|
|
|
|
|
|
|
vm = NULL;
|
|
|
|
ndef = NULL;
|
2016-04-28 09:43:09 +02:00
|
|
|
biomegen = NULL;
|
2015-06-19 01:17:03 +02:00
|
|
|
biomemap = NULL;
|
2016-04-28 09:43:09 +02:00
|
|
|
heightmap = NULL;
|
2014-12-06 10:18:04 +01:00
|
|
|
}
|
|
|
|
|
2013-12-14 07:52:06 +01:00
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
Mapgen::Mapgen(int mapgenid, MapgenParams *params, EmergeManager *emerge) :
|
|
|
|
gennotify(emerge->gen_notify_on, &emerge->gen_notify_on_deco_ids)
|
|
|
|
{
|
2015-06-19 01:17:03 +02:00
|
|
|
generating = false;
|
|
|
|
id = mapgenid;
|
|
|
|
water_level = params->water_level;
|
|
|
|
flags = params->flags;
|
|
|
|
csize = v3s16(1, 1, 1) * (params->chunksize * MAP_BLOCKSIZE);
|
2014-12-06 10:18:04 +01:00
|
|
|
|
2016-06-04 07:35:37 +02:00
|
|
|
/*
|
|
|
|
We are losing half our entropy by doing this, but it is necessary to
|
|
|
|
preserve reverse compatibility. If the top half of our current 64 bit
|
|
|
|
seeds ever starts getting used, existing worlds will break due to a
|
|
|
|
different hash outcome and no way to differentiate between versions.
|
|
|
|
|
|
|
|
A solution could be to add a new bit to designate that the top half of
|
|
|
|
the seed value should be used, essentially a 1-bit version code, but
|
|
|
|
this would require increasing the total size of a seed to 9 bytes (yuck)
|
|
|
|
|
|
|
|
It's probably okay if this never gets fixed. 4.2 billion possibilities
|
|
|
|
ought to be enough for anyone.
|
|
|
|
*/
|
|
|
|
seed = (s32)params->seed;
|
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
vm = NULL;
|
2016-04-28 09:43:09 +02:00
|
|
|
ndef = emerge->ndef;
|
|
|
|
biomegen = NULL;
|
2014-12-06 10:18:04 +01:00
|
|
|
biomemap = NULL;
|
2016-04-28 09:43:09 +02:00
|
|
|
heightmap = NULL;
|
2013-12-14 07:52:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
Mapgen::~Mapgen()
|
|
|
|
{
|
2013-06-16 04:23:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-04 07:35:37 +02:00
|
|
|
u32 Mapgen::getBlockSeed(v3s16 p, s32 seed)
|
2014-12-30 03:44:52 +01:00
|
|
|
{
|
|
|
|
return (u32)seed +
|
|
|
|
p.Z * 38134234 +
|
|
|
|
p.Y * 42123 +
|
|
|
|
p.X * 23;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-04 07:35:37 +02:00
|
|
|
u32 Mapgen::getBlockSeed2(v3s16 p, s32 seed)
|
2014-12-30 03:44:52 +01:00
|
|
|
{
|
2015-01-12 21:46:04 +01:00
|
|
|
u32 n = 1619 * p.X + 31337 * p.Y + 52591 * p.Z + 1013 * seed;
|
|
|
|
n = (n >> 13) ^ n;
|
|
|
|
return (n * (n * n * 60493 + 19990303) + 1376312589);
|
2014-12-30 03:44:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-16 04:23:06 +02:00
|
|
|
// Returns Y one under area minimum if not found
|
2014-12-06 10:18:04 +01:00
|
|
|
s16 Mapgen::findGroundLevelFull(v2s16 p2d)
|
|
|
|
{
|
2013-06-16 04:23:06 +02:00
|
|
|
v3s16 em = vm->m_area.getExtent();
|
|
|
|
s16 y_nodes_max = vm->m_area.MaxEdge.Y;
|
|
|
|
s16 y_nodes_min = vm->m_area.MinEdge.Y;
|
|
|
|
u32 i = vm->m_area.index(p2d.X, y_nodes_max, p2d.Y);
|
|
|
|
s16 y;
|
2013-12-08 05:43:46 +01:00
|
|
|
|
2013-06-16 04:23:06 +02:00
|
|
|
for (y = y_nodes_max; y >= y_nodes_min; y--) {
|
|
|
|
MapNode &n = vm->m_data[i];
|
|
|
|
if (ndef->get(n).walkable)
|
|
|
|
break;
|
|
|
|
|
|
|
|
vm->m_area.add_y(em, i, -1);
|
|
|
|
}
|
|
|
|
return (y >= y_nodes_min) ? y : y_nodes_min - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-13 17:01:31 +02:00
|
|
|
// Returns -MAX_MAP_GENERATION_LIMIT if not found
|
2014-12-06 10:18:04 +01:00
|
|
|
s16 Mapgen::findGroundLevel(v2s16 p2d, s16 ymin, s16 ymax)
|
|
|
|
{
|
2013-06-16 04:23:06 +02:00
|
|
|
v3s16 em = vm->m_area.getExtent();
|
|
|
|
u32 i = vm->m_area.index(p2d.X, ymax, p2d.Y);
|
|
|
|
s16 y;
|
2013-12-08 05:43:46 +01:00
|
|
|
|
2013-06-16 04:23:06 +02:00
|
|
|
for (y = ymax; y >= ymin; y--) {
|
|
|
|
MapNode &n = vm->m_data[i];
|
|
|
|
if (ndef->get(n).walkable)
|
|
|
|
break;
|
|
|
|
|
|
|
|
vm->m_area.add_y(em, i, -1);
|
|
|
|
}
|
2015-07-13 17:01:31 +02:00
|
|
|
return (y >= ymin) ? y : -MAX_MAP_GENERATION_LIMIT;
|
2013-06-16 04:23:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-21 09:51:59 +02:00
|
|
|
// Returns -MAX_MAP_GENERATION_LIMIT if not found or if ground is found first
|
|
|
|
s16 Mapgen::findLiquidSurface(v2s16 p2d, s16 ymin, s16 ymax)
|
|
|
|
{
|
|
|
|
v3s16 em = vm->m_area.getExtent();
|
|
|
|
u32 i = vm->m_area.index(p2d.X, ymax, p2d.Y);
|
|
|
|
s16 y;
|
|
|
|
|
|
|
|
for (y = ymax; y >= ymin; y--) {
|
|
|
|
MapNode &n = vm->m_data[i];
|
|
|
|
if (ndef->get(n).walkable)
|
|
|
|
return -MAX_MAP_GENERATION_LIMIT;
|
|
|
|
else if (ndef->get(n).isLiquid())
|
|
|
|
break;
|
|
|
|
|
|
|
|
vm->m_area.add_y(em, i, -1);
|
|
|
|
}
|
|
|
|
return (y >= ymin) ? y : -MAX_MAP_GENERATION_LIMIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
void Mapgen::updateHeightmap(v3s16 nmin, v3s16 nmax)
|
|
|
|
{
|
2013-06-16 04:23:06 +02:00
|
|
|
if (!heightmap)
|
|
|
|
return;
|
2013-12-08 05:43:46 +01:00
|
|
|
|
2013-06-16 04:23:06 +02:00
|
|
|
//TimeTaker t("Mapgen::updateHeightmap", NULL, PRECISION_MICRO);
|
|
|
|
int index = 0;
|
|
|
|
for (s16 z = nmin.Z; z <= nmax.Z; z++) {
|
2013-07-06 08:21:35 +02:00
|
|
|
for (s16 x = nmin.X; x <= nmax.X; x++, index++) {
|
2013-06-16 04:23:06 +02:00
|
|
|
s16 y = findGroundLevel(v2s16(x, z), nmin.Y, nmax.Y);
|
2013-07-06 08:21:35 +02:00
|
|
|
|
|
|
|
heightmap[index] = y;
|
2013-06-16 04:23:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//printf("updateHeightmap: %dus\n", t.stop());
|
|
|
|
}
|
|
|
|
|
2016-06-05 01:30:36 +02:00
|
|
|
inline bool Mapgen::isLiquidHorizontallyFlowable(u32 vi, v3s16 em)
|
|
|
|
{
|
|
|
|
u32 vi_neg_x = vi;
|
|
|
|
vm->m_area.add_x(em, vi_neg_x, -1);
|
|
|
|
if (vm->m_data[vi_neg_x].getContent() != CONTENT_IGNORE) {
|
|
|
|
const ContentFeatures &c_nx = ndef->get(vm->m_data[vi_neg_x]);
|
|
|
|
if (c_nx.floodable && !c_nx.isLiquid())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
u32 vi_pos_x = vi;
|
|
|
|
vm->m_area.add_x(em, vi_pos_x, +1);
|
|
|
|
if (vm->m_data[vi_pos_x].getContent() != CONTENT_IGNORE) {
|
|
|
|
const ContentFeatures &c_px = ndef->get(vm->m_data[vi_pos_x]);
|
|
|
|
if (c_px.floodable && !c_px.isLiquid())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
u32 vi_neg_z = vi;
|
|
|
|
vm->m_area.add_z(em, vi_neg_z, -1);
|
|
|
|
if (vm->m_data[vi_neg_z].getContent() != CONTENT_IGNORE) {
|
|
|
|
const ContentFeatures &c_nz = ndef->get(vm->m_data[vi_neg_z]);
|
|
|
|
if (c_nz.floodable && !c_nz.isLiquid())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
u32 vi_pos_z = vi;
|
|
|
|
vm->m_area.add_z(em, vi_pos_z, +1);
|
|
|
|
if (vm->m_data[vi_pos_z].getContent() != CONTENT_IGNORE) {
|
|
|
|
const ContentFeatures &c_pz = ndef->get(vm->m_data[vi_pos_z]);
|
|
|
|
if (c_pz.floodable && !c_pz.isLiquid())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-06-16 04:23:06 +02:00
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
void Mapgen::updateLiquid(UniqueQueue<v3s16> *trans_liquid, v3s16 nmin, v3s16 nmax)
|
|
|
|
{
|
2016-06-05 01:30:36 +02:00
|
|
|
bool isignored, isliquid, wasignored, wasliquid, waschecked, waspushed;
|
2013-03-16 03:43:35 +01:00
|
|
|
v3s16 em = vm->m_area.getExtent();
|
2013-03-12 02:32:52 +01:00
|
|
|
|
2016-06-05 01:30:36 +02:00
|
|
|
for (s16 z = nmin.Z + 1; z <= nmax.Z - 1; z++)
|
|
|
|
for (s16 x = nmin.X + 1; x <= nmax.X - 1; x++) {
|
|
|
|
wasignored = true;
|
|
|
|
wasliquid = false;
|
|
|
|
waschecked = false;
|
|
|
|
waspushed = false;
|
|
|
|
|
|
|
|
u32 vi = vm->m_area.index(x, nmax.Y, z);
|
|
|
|
for (s16 y = nmax.Y; y >= nmin.Y; y--) {
|
|
|
|
isignored = vm->m_data[vi].getContent() == CONTENT_IGNORE;
|
|
|
|
isliquid = ndef->get(vm->m_data[vi]).isLiquid();
|
|
|
|
|
|
|
|
if (isignored || wasignored || isliquid == wasliquid) {
|
|
|
|
// Neither topmost node of liquid column nor topmost node below column
|
|
|
|
waschecked = false;
|
|
|
|
waspushed = false;
|
|
|
|
} else if (isliquid) {
|
|
|
|
// This is the topmost node in the column
|
|
|
|
bool ispushed = false;
|
|
|
|
if (isLiquidHorizontallyFlowable(vi, em)) {
|
2013-03-16 03:43:35 +01:00
|
|
|
trans_liquid->push_back(v3s16(x, y, z));
|
2016-06-05 01:30:36 +02:00
|
|
|
ispushed = true;
|
|
|
|
}
|
|
|
|
// Remember waschecked and waspushed to avoid repeated
|
|
|
|
// checks/pushes in case the column consists of only this node
|
|
|
|
waschecked = true;
|
|
|
|
waspushed = ispushed;
|
|
|
|
} else {
|
|
|
|
// This is the topmost node below a liquid column
|
|
|
|
u32 vi_above = vi;
|
|
|
|
vm->m_area.add_y(em, vi_above, 1);
|
|
|
|
if (!waspushed && (ndef->get(vm->m_data[vi]).floodable ||
|
|
|
|
(!waschecked && isLiquidHorizontallyFlowable(vi_above, em)))) {
|
|
|
|
// Push back the lowest node in the column which is one
|
|
|
|
// node above this one
|
|
|
|
trans_liquid->push_back(v3s16(x, y + 1, z));
|
|
|
|
}
|
2013-03-12 02:32:52 +01:00
|
|
|
}
|
2016-06-05 01:30:36 +02:00
|
|
|
|
|
|
|
wasliquid = isliquid;
|
|
|
|
wasignored = isignored;
|
|
|
|
vm->m_area.add_y(em, vi, -1);
|
2013-03-12 02:32:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-05 07:18:53 +01:00
|
|
|
void Mapgen::setLighting(u8 light, v3s16 nmin, v3s16 nmax)
|
2014-12-06 10:18:04 +01:00
|
|
|
{
|
2013-03-16 03:43:35 +01:00
|
|
|
ScopeProfiler sp(g_profiler, "EmergeThread: mapgen lighting update", SPT_AVG);
|
2013-04-07 08:26:46 +02:00
|
|
|
VoxelArea a(nmin, nmax);
|
2013-03-16 03:43:35 +01:00
|
|
|
|
|
|
|
for (int z = a.MinEdge.Z; z <= a.MaxEdge.Z; z++) {
|
|
|
|
for (int y = a.MinEdge.Y; y <= a.MaxEdge.Y; y++) {
|
|
|
|
u32 i = vm->m_area.index(a.MinEdge.X, y, z);
|
|
|
|
for (int x = a.MinEdge.X; x <= a.MaxEdge.X; x++, i++)
|
|
|
|
vm->m_data[i].param1 = light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
void Mapgen::lightSpread(VoxelArea &a, v3s16 p, u8 light)
|
|
|
|
{
|
2016-03-30 05:59:39 +02:00
|
|
|
if (light <= 1 || !a.contains(p))
|
2013-03-16 03:43:35 +01:00
|
|
|
return;
|
2013-06-16 04:23:06 +02:00
|
|
|
|
2013-03-16 03:43:35 +01:00
|
|
|
u32 vi = vm->m_area.index(p);
|
2016-03-29 17:31:52 +02:00
|
|
|
MapNode &n = vm->m_data[vi];
|
|
|
|
|
|
|
|
// Decay light in each of the banks separately
|
|
|
|
u8 light_day = light & 0x0F;
|
|
|
|
if (light_day > 0)
|
|
|
|
light_day -= 0x01;
|
2013-03-16 03:43:35 +01:00
|
|
|
|
2016-03-29 17:31:52 +02:00
|
|
|
u8 light_night = light & 0xF0;
|
|
|
|
if (light_night > 0)
|
|
|
|
light_night -= 0x10;
|
|
|
|
|
|
|
|
// Bail out only if we have no more light from either bank to propogate, or
|
|
|
|
// we hit a solid block that light cannot pass through.
|
|
|
|
if ((light_day <= (n.param1 & 0x0F) &&
|
|
|
|
light_night <= (n.param1 & 0xF0)) ||
|
|
|
|
!ndef->get(n).light_propagates)
|
2013-03-16 03:43:35 +01:00
|
|
|
return;
|
2013-06-16 04:23:06 +02:00
|
|
|
|
2016-03-29 17:31:52 +02:00
|
|
|
// Since this recursive function only terminates when there is no light from
|
|
|
|
// either bank left, we need to take the max of both banks into account for
|
|
|
|
// the case where spreading has stopped for one light bank but not the other.
|
|
|
|
light = MYMAX(light_day, n.param1 & 0x0F) |
|
|
|
|
MYMAX(light_night, n.param1 & 0xF0);
|
|
|
|
|
|
|
|
n.param1 = light;
|
2013-06-16 04:23:06 +02:00
|
|
|
|
2013-03-16 03:43:35 +01:00
|
|
|
lightSpread(a, p + v3s16(0, 0, 1), light);
|
|
|
|
lightSpread(a, p + v3s16(0, 1, 0), light);
|
|
|
|
lightSpread(a, p + v3s16(1, 0, 0), light);
|
|
|
|
lightSpread(a, p - v3s16(0, 0, 1), light);
|
|
|
|
lightSpread(a, p - v3s16(0, 1, 0), light);
|
|
|
|
lightSpread(a, p - v3s16(1, 0, 0), light);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-02 04:28:03 +01:00
|
|
|
void Mapgen::calcLighting(v3s16 nmin, v3s16 nmax, v3s16 full_nmin, v3s16 full_nmax,
|
|
|
|
bool propagate_shadow)
|
2015-01-05 07:18:53 +01:00
|
|
|
{
|
|
|
|
ScopeProfiler sp(g_profiler, "EmergeThread: mapgen lighting update", SPT_AVG);
|
|
|
|
//TimeTaker t("updateLighting");
|
|
|
|
|
2015-12-02 04:28:03 +01:00
|
|
|
propagateSunlight(nmin, nmax, propagate_shadow);
|
2015-01-05 07:18:53 +01:00
|
|
|
spreadLight(full_nmin, full_nmax);
|
|
|
|
|
|
|
|
//printf("updateLighting: %dms\n", t.stop());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-02 04:28:03 +01:00
|
|
|
void Mapgen::propagateSunlight(v3s16 nmin, v3s16 nmax, bool propagate_shadow)
|
2015-01-04 08:34:33 +01:00
|
|
|
{
|
|
|
|
//TimeTaker t("propagateSunlight");
|
|
|
|
VoxelArea a(nmin, nmax);
|
|
|
|
bool block_is_underground = (water_level >= nmax.Y);
|
2013-03-16 03:43:35 +01:00
|
|
|
v3s16 em = vm->m_area.getExtent();
|
2015-01-04 08:34:33 +01:00
|
|
|
|
2016-03-29 17:31:52 +02:00
|
|
|
// NOTE: Direct access to the low 4 bits of param1 is okay here because,
|
|
|
|
// by definition, sunlight will never be in the night lightbank.
|
|
|
|
|
2013-03-16 03:43:35 +01:00
|
|
|
for (int z = a.MinEdge.Z; z <= a.MaxEdge.Z; z++) {
|
|
|
|
for (int x = a.MinEdge.X; x <= a.MaxEdge.X; x++) {
|
|
|
|
// see if we can get a light value from the overtop
|
|
|
|
u32 i = vm->m_area.index(x, a.MaxEdge.Y + 1, z);
|
|
|
|
if (vm->m_data[i].getContent() == CONTENT_IGNORE) {
|
|
|
|
if (block_is_underground)
|
|
|
|
continue;
|
2015-12-02 04:28:03 +01:00
|
|
|
} else if ((vm->m_data[i].param1 & 0x0F) != LIGHT_SUN &&
|
|
|
|
propagate_shadow) {
|
2013-03-16 03:43:35 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
vm->m_area.add_y(em, i, -1);
|
2013-12-08 05:43:46 +01:00
|
|
|
|
2013-03-16 03:43:35 +01:00
|
|
|
for (int y = a.MaxEdge.Y; y >= a.MinEdge.Y; y--) {
|
|
|
|
MapNode &n = vm->m_data[i];
|
|
|
|
if (!ndef->get(n).sunlight_propagates)
|
|
|
|
break;
|
|
|
|
n.param1 = LIGHT_SUN;
|
|
|
|
vm->m_area.add_y(em, i, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-04 08:34:33 +01:00
|
|
|
//printf("propagateSunlight: %dms\n", t.stop());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Mapgen::spreadLight(v3s16 nmin, v3s16 nmax)
|
|
|
|
{
|
|
|
|
//TimeTaker t("spreadLight");
|
|
|
|
VoxelArea a(nmin, nmax);
|
2013-06-16 04:23:06 +02:00
|
|
|
|
2013-03-16 03:43:35 +01:00
|
|
|
for (int z = a.MinEdge.Z; z <= a.MaxEdge.Z; z++) {
|
|
|
|
for (int y = a.MinEdge.Y; y <= a.MaxEdge.Y; y++) {
|
|
|
|
u32 i = vm->m_area.index(a.MinEdge.X, y, z);
|
|
|
|
for (int x = a.MinEdge.X; x <= a.MaxEdge.X; x++, i++) {
|
|
|
|
MapNode &n = vm->m_data[i];
|
2016-03-29 17:31:52 +02:00
|
|
|
if (n.getContent() == CONTENT_IGNORE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const ContentFeatures &cf = ndef->get(n);
|
|
|
|
if (!cf.light_propagates)
|
2013-03-16 03:43:35 +01:00
|
|
|
continue;
|
2013-06-16 04:23:06 +02:00
|
|
|
|
2016-03-29 17:31:52 +02:00
|
|
|
// TODO(hmmmmm): Abstract away direct param1 accesses with a
|
|
|
|
// wrapper, but something lighter than MapNode::get/setLight
|
|
|
|
|
|
|
|
u8 light_produced = cf.light_source;
|
2013-03-16 03:43:35 +01:00
|
|
|
if (light_produced)
|
2016-03-29 17:31:52 +02:00
|
|
|
n.param1 = light_produced | (light_produced << 4);
|
2013-06-16 04:23:06 +02:00
|
|
|
|
2016-03-29 17:31:52 +02:00
|
|
|
u8 light = n.param1;
|
2013-03-16 03:43:35 +01:00
|
|
|
if (light) {
|
2015-01-04 08:34:33 +01:00
|
|
|
lightSpread(a, v3s16(x, y, z + 1), light);
|
|
|
|
lightSpread(a, v3s16(x, y + 1, z ), light);
|
|
|
|
lightSpread(a, v3s16(x + 1, y, z ), light);
|
|
|
|
lightSpread(a, v3s16(x, y, z - 1), light);
|
|
|
|
lightSpread(a, v3s16(x, y - 1, z ), light);
|
|
|
|
lightSpread(a, v3s16(x - 1, y, z ), light);
|
2013-03-16 03:43:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-16 04:23:06 +02:00
|
|
|
|
2015-01-04 08:34:33 +01:00
|
|
|
//printf("spreadLight: %dms\n", t.stop());
|
2013-03-16 03:43:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-02 08:24:57 +02:00
|
|
|
////
|
|
|
|
//// MapgenBasic
|
|
|
|
////
|
|
|
|
|
|
|
|
MapgenBasic::MapgenBasic(int mapgenid, MapgenParams *params, EmergeManager *emerge)
|
|
|
|
: Mapgen(mapgenid, params, emerge)
|
|
|
|
{
|
2016-05-22 08:17:19 +02:00
|
|
|
this->m_emerge = emerge;
|
|
|
|
this->m_bmgr = emerge->biomemgr;
|
|
|
|
|
|
|
|
//// Here, 'stride' refers to the number of elements needed to skip to index
|
|
|
|
//// an adjacent element for that coordinate in noise/height/biome maps
|
|
|
|
//// (*not* vmanip content map!)
|
|
|
|
|
|
|
|
// Note there is no X stride explicitly defined. Items adjacent in the X
|
|
|
|
// coordinate are assumed to be adjacent in memory as well (i.e. stride of 1).
|
|
|
|
|
|
|
|
// Number of elements to skip to get to the next Y coordinate
|
|
|
|
this->ystride = csize.X;
|
|
|
|
|
|
|
|
// Number of elements to skip to get to the next Z coordinate
|
|
|
|
this->zstride = csize.X * csize.Y;
|
|
|
|
|
|
|
|
// Z-stride value for maps oversized for 1-down overgeneration
|
|
|
|
this->zstride_1d = csize.X * (csize.Y + 1);
|
|
|
|
|
|
|
|
// Z-stride value for maps oversized for 1-up 1-down overgeneration
|
|
|
|
this->zstride_1u1d = csize.X * (csize.Y + 2);
|
|
|
|
|
|
|
|
//// Allocate heightmap
|
|
|
|
this->heightmap = new s16[csize.X * csize.Z];
|
|
|
|
|
|
|
|
//// Initialize biome generator
|
|
|
|
// TODO(hmmmm): should we have a way to disable biomemanager biomes?
|
|
|
|
biomegen = m_bmgr->createBiomeGen(BIOMEGEN_ORIGINAL, params->bparams, csize);
|
|
|
|
biomemap = biomegen->biomemap;
|
|
|
|
|
|
|
|
//// Look up some commonly used content
|
|
|
|
c_stone = ndef->getId("mapgen_stone");
|
|
|
|
c_water_source = ndef->getId("mapgen_water_source");
|
|
|
|
c_desert_stone = ndef->getId("mapgen_desert_stone");
|
|
|
|
c_sandstone = ndef->getId("mapgen_sandstone");
|
|
|
|
c_river_water_source = ndef->getId("mapgen_river_water_source");
|
|
|
|
|
2016-05-22 22:27:31 +02:00
|
|
|
// Fall back to more basic content if not defined
|
2016-05-22 08:17:19 +02:00
|
|
|
if (c_desert_stone == CONTENT_IGNORE)
|
|
|
|
c_desert_stone = c_stone;
|
|
|
|
if (c_sandstone == CONTENT_IGNORE)
|
|
|
|
c_sandstone = c_stone;
|
|
|
|
if (c_river_water_source == CONTENT_IGNORE)
|
|
|
|
c_river_water_source = c_water_source;
|
2016-05-22 22:27:31 +02:00
|
|
|
|
|
|
|
//// Content used for dungeon generation
|
|
|
|
c_cobble = ndef->getId("mapgen_cobble");
|
|
|
|
c_stair_cobble = ndef->getId("mapgen_stair_cobble");
|
|
|
|
c_mossycobble = ndef->getId("mapgen_mossycobble");
|
|
|
|
c_sandstonebrick = ndef->getId("mapgen_sandstonebrick");
|
|
|
|
c_stair_sandstonebrick = ndef->getId("mapgen_stair_sandstonebrick");
|
|
|
|
|
|
|
|
// Fall back to more basic content if not defined
|
|
|
|
if (c_mossycobble == CONTENT_IGNORE)
|
|
|
|
c_mossycobble = c_cobble;
|
|
|
|
if (c_stair_cobble == CONTENT_IGNORE)
|
|
|
|
c_stair_cobble = c_cobble;
|
|
|
|
if (c_sandstonebrick == CONTENT_IGNORE)
|
|
|
|
c_sandstonebrick = c_sandstone;
|
|
|
|
if (c_stair_sandstonebrick == CONTENT_IGNORE)
|
|
|
|
c_stair_sandstonebrick = c_sandstone;
|
2016-05-22 08:17:19 +02:00
|
|
|
}
|
|
|
|
|
2016-05-02 08:24:57 +02:00
|
|
|
|
2016-05-22 08:17:19 +02:00
|
|
|
MapgenBasic::~MapgenBasic()
|
|
|
|
{
|
|
|
|
delete biomegen;
|
|
|
|
delete []heightmap;
|
2016-05-02 08:24:57 +02:00
|
|
|
}
|
|
|
|
|
2016-05-22 08:17:19 +02:00
|
|
|
|
2016-05-02 08:24:57 +02:00
|
|
|
MgStoneType MapgenBasic::generateBiomes()
|
|
|
|
{
|
|
|
|
v3s16 em = vm->m_area.getExtent();
|
|
|
|
u32 index = 0;
|
2016-05-02 08:45:59 +02:00
|
|
|
MgStoneType stone_type = MGSTONE_STONE;
|
2016-05-02 08:24:57 +02:00
|
|
|
|
2016-05-20 09:37:31 +02:00
|
|
|
noise_filler_depth->perlinMap2D(node_min.X, node_min.Z);
|
|
|
|
|
2016-05-02 08:24:57 +02:00
|
|
|
for (s16 z = node_min.Z; z <= node_max.Z; z++)
|
|
|
|
for (s16 x = node_min.X; x <= node_max.X; x++, index++) {
|
|
|
|
Biome *biome = NULL;
|
|
|
|
u16 depth_top = 0;
|
|
|
|
u16 base_filler = 0;
|
|
|
|
u16 depth_water_top = 0;
|
|
|
|
u32 vi = vm->m_area.index(x, node_max.Y, z);
|
|
|
|
|
|
|
|
// Check node at base of mapchunk above, either a node of a previously
|
|
|
|
// generated mapchunk or if not, a node of overgenerated base terrain.
|
|
|
|
content_t c_above = vm->m_data[vi + em.X].getContent();
|
|
|
|
bool air_above = c_above == CONTENT_AIR;
|
|
|
|
bool water_above = (c_above == c_water_source || c_above == c_river_water_source);
|
|
|
|
|
|
|
|
// If there is air or water above enable top/filler placement, otherwise force
|
|
|
|
// nplaced to stone level by setting a number exceeding any possible filler depth.
|
|
|
|
u16 nplaced = (air_above || water_above) ? 0 : U16_MAX;
|
|
|
|
|
|
|
|
for (s16 y = node_max.Y; y >= node_min.Y; y--) {
|
|
|
|
content_t c = vm->m_data[vi].getContent();
|
|
|
|
|
|
|
|
// Biome is recalculated each time an upper surface is detected while
|
|
|
|
// working down a column. The selected biome then remains in effect for
|
|
|
|
// all nodes below until the next surface and biome recalculation.
|
|
|
|
// Biome is recalculated:
|
|
|
|
// 1. At the surface of stone below air or water.
|
|
|
|
// 2. At the surface of water below air.
|
|
|
|
// 3. When stone or water is detected but biome has not yet been calculated.
|
|
|
|
if ((c == c_stone && (air_above || water_above || !biome))
|
|
|
|
|| ((c == c_water_source || c == c_river_water_source)
|
|
|
|
&& (air_above || !biome))) {
|
|
|
|
biome = biomegen->getBiomeAtIndex(index, y);
|
|
|
|
|
|
|
|
depth_top = biome->depth_top;
|
|
|
|
base_filler = MYMAX(depth_top
|
|
|
|
+ biome->depth_filler
|
|
|
|
+ noise_filler_depth->result[index], 0.f);
|
|
|
|
depth_water_top = biome->depth_water_top;
|
|
|
|
|
|
|
|
// Detect stone type for dungeons during every biome calculation.
|
|
|
|
// This is more efficient than detecting per-node and will not
|
|
|
|
// miss any desert stone or sandstone biomes.
|
|
|
|
if (biome->c_stone == c_desert_stone)
|
2016-05-02 08:45:59 +02:00
|
|
|
stone_type = MGSTONE_DESERT_STONE;
|
2016-05-02 08:24:57 +02:00
|
|
|
else if (biome->c_stone == c_sandstone)
|
2016-05-02 08:45:59 +02:00
|
|
|
stone_type = MGSTONE_SANDSTONE;
|
2016-05-02 08:24:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (c == c_stone) {
|
|
|
|
content_t c_below = vm->m_data[vi - em.X].getContent();
|
|
|
|
|
|
|
|
// If the node below isn't solid, make this node stone, so that
|
|
|
|
// any top/filler nodes above are structurally supported.
|
|
|
|
// This is done by aborting the cycle of top/filler placement
|
|
|
|
// immediately by forcing nplaced to stone level.
|
|
|
|
if (c_below == CONTENT_AIR
|
|
|
|
|| c_below == c_water_source
|
|
|
|
|| c_below == c_river_water_source)
|
|
|
|
nplaced = U16_MAX;
|
|
|
|
|
|
|
|
if (nplaced < depth_top) {
|
|
|
|
vm->m_data[vi] = MapNode(biome->c_top);
|
|
|
|
nplaced++;
|
|
|
|
} else if (nplaced < base_filler) {
|
|
|
|
vm->m_data[vi] = MapNode(biome->c_filler);
|
|
|
|
nplaced++;
|
|
|
|
} else {
|
|
|
|
vm->m_data[vi] = MapNode(biome->c_stone);
|
|
|
|
}
|
|
|
|
|
|
|
|
air_above = false;
|
|
|
|
water_above = false;
|
|
|
|
} else if (c == c_water_source) {
|
|
|
|
vm->m_data[vi] = MapNode((y > (s32)(water_level - depth_water_top))
|
|
|
|
? biome->c_water_top : biome->c_water);
|
|
|
|
nplaced = 0; // Enable top/filler placement for next surface
|
|
|
|
air_above = false;
|
|
|
|
water_above = true;
|
|
|
|
} else if (c == c_river_water_source) {
|
|
|
|
vm->m_data[vi] = MapNode(biome->c_river_water);
|
|
|
|
nplaced = depth_top; // Enable filler placement for next surface
|
|
|
|
air_above = false;
|
|
|
|
water_above = true;
|
|
|
|
} else if (c == CONTENT_AIR) {
|
|
|
|
nplaced = 0; // Enable top/filler placement for next surface
|
|
|
|
air_above = true;
|
|
|
|
water_above = false;
|
|
|
|
} else { // Possible various nodes overgenerated from neighbouring mapchunks
|
|
|
|
nplaced = U16_MAX; // Disable top/filler placement
|
|
|
|
air_above = false;
|
|
|
|
water_above = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
vm->m_area.add_y(em, vi, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return stone_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MapgenBasic::dustTopNodes()
|
|
|
|
{
|
|
|
|
if (node_max.Y < water_level)
|
|
|
|
return;
|
|
|
|
|
|
|
|
v3s16 em = vm->m_area.getExtent();
|
|
|
|
u32 index = 0;
|
|
|
|
|
|
|
|
for (s16 z = node_min.Z; z <= node_max.Z; z++)
|
|
|
|
for (s16 x = node_min.X; x <= node_max.X; x++, index++) {
|
2016-05-22 08:17:19 +02:00
|
|
|
Biome *biome = (Biome *)m_bmgr->getRaw(biomemap[index]);
|
2016-05-02 08:24:57 +02:00
|
|
|
|
|
|
|
if (biome->c_dust == CONTENT_IGNORE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
u32 vi = vm->m_area.index(x, full_node_max.Y, z);
|
|
|
|
content_t c_full_max = vm->m_data[vi].getContent();
|
|
|
|
s16 y_start;
|
|
|
|
|
|
|
|
if (c_full_max == CONTENT_AIR) {
|
|
|
|
y_start = full_node_max.Y - 1;
|
|
|
|
} else if (c_full_max == CONTENT_IGNORE) {
|
|
|
|
vi = vm->m_area.index(x, node_max.Y + 1, z);
|
|
|
|
content_t c_max = vm->m_data[vi].getContent();
|
|
|
|
|
|
|
|
if (c_max == CONTENT_AIR)
|
|
|
|
y_start = node_max.Y;
|
|
|
|
else
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
vi = vm->m_area.index(x, y_start, z);
|
|
|
|
for (s16 y = y_start; y >= node_min.Y - 1; y--) {
|
|
|
|
if (vm->m_data[vi].getContent() != CONTENT_AIR)
|
|
|
|
break;
|
|
|
|
|
|
|
|
vm->m_area.add_y(em, vi, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
content_t c = vm->m_data[vi].getContent();
|
|
|
|
if (!ndef->get(c).buildable_to && c != CONTENT_IGNORE && c != biome->c_dust) {
|
|
|
|
vm->m_area.add_y(em, vi, 1);
|
|
|
|
vm->m_data[vi] = MapNode(biome->c_dust);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MapgenBasic::generateCaves(s16 max_stone_y, s16 large_cave_depth)
|
|
|
|
{
|
|
|
|
if (max_stone_y < node_min.Y)
|
|
|
|
return;
|
|
|
|
|
2016-05-22 08:17:19 +02:00
|
|
|
CavesNoiseIntersection caves_noise(ndef, m_bmgr, csize,
|
2016-05-19 09:40:22 +02:00
|
|
|
&np_cave1, &np_cave2, seed, cave_width);
|
2016-05-02 08:24:57 +02:00
|
|
|
|
2016-05-19 09:40:22 +02:00
|
|
|
caves_noise.generateCaves(vm, node_min, node_max, biomemap);
|
2016-05-02 08:24:57 +02:00
|
|
|
|
|
|
|
if (node_max.Y > large_cave_depth)
|
|
|
|
return;
|
|
|
|
|
|
|
|
PseudoRandom ps(blockseed + 21343);
|
|
|
|
u32 bruises_count = ps.range(0, 2);
|
|
|
|
for (u32 i = 0; i < bruises_count; i++) {
|
2016-05-11 04:56:03 +02:00
|
|
|
CavesRandomWalk cave(ndef, &gennotify, seed, water_level,
|
|
|
|
c_water_source, CONTENT_IGNORE);
|
|
|
|
|
2016-05-11 06:00:05 +02:00
|
|
|
cave.makeCave(vm, node_min, node_max, &ps, true, max_stone_y, heightmap);
|
2016-05-02 08:24:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-22 22:27:31 +02:00
|
|
|
void MapgenBasic::generateDungeons(s16 max_stone_y, MgStoneType stone_type)
|
|
|
|
{
|
|
|
|
if (max_stone_y < node_min.Y)
|
|
|
|
return;
|
|
|
|
|
|
|
|
DungeonParams dp;
|
|
|
|
|
2016-05-22 22:50:43 +02:00
|
|
|
dp.seed = seed;
|
|
|
|
|
2016-05-22 22:27:31 +02:00
|
|
|
dp.np_rarity = nparams_dungeon_rarity;
|
|
|
|
dp.np_density = nparams_dungeon_density;
|
|
|
|
dp.np_wetness = nparams_dungeon_wetness;
|
|
|
|
dp.c_water = c_water_source;
|
2016-05-22 22:50:43 +02:00
|
|
|
|
2016-05-22 22:27:31 +02:00
|
|
|
switch (stone_type) {
|
|
|
|
default:
|
|
|
|
case MGSTONE_STONE:
|
|
|
|
dp.c_cobble = c_cobble;
|
|
|
|
dp.c_moss = c_mossycobble;
|
|
|
|
dp.c_stair = c_stair_cobble;
|
|
|
|
|
|
|
|
dp.diagonal_dirs = false;
|
|
|
|
dp.mossratio = 3.0;
|
|
|
|
dp.holesize = v3s16(1, 2, 1);
|
|
|
|
dp.roomsize = v3s16(0, 0, 0);
|
|
|
|
dp.notifytype = GENNOTIFY_DUNGEON;
|
|
|
|
break;
|
|
|
|
case MGSTONE_DESERT_STONE:
|
|
|
|
dp.c_cobble = c_desert_stone;
|
|
|
|
dp.c_moss = c_desert_stone;
|
|
|
|
dp.c_stair = c_desert_stone;
|
|
|
|
|
|
|
|
dp.diagonal_dirs = true;
|
|
|
|
dp.mossratio = 0.0;
|
|
|
|
dp.holesize = v3s16(2, 3, 2);
|
|
|
|
dp.roomsize = v3s16(2, 5, 2);
|
|
|
|
dp.notifytype = GENNOTIFY_TEMPLE;
|
|
|
|
break;
|
|
|
|
case MGSTONE_SANDSTONE:
|
|
|
|
dp.c_cobble = c_sandstonebrick;
|
|
|
|
dp.c_moss = c_sandstonebrick;
|
|
|
|
dp.c_stair = c_sandstonebrick;
|
|
|
|
|
|
|
|
dp.diagonal_dirs = false;
|
|
|
|
dp.mossratio = 0.0;
|
|
|
|
dp.holesize = v3s16(2, 2, 2);
|
|
|
|
dp.roomsize = v3s16(2, 0, 2);
|
|
|
|
dp.notifytype = GENNOTIFY_DUNGEON;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-05-22 22:50:43 +02:00
|
|
|
DungeonGen dgen(ndef, &gennotify, &dp);
|
|
|
|
dgen.generate(vm, blockseed, full_node_min, full_node_max);
|
2016-05-22 22:27:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-04 08:54:25 +02:00
|
|
|
////
|
|
|
|
//// GenerateNotifier
|
|
|
|
////
|
2014-12-06 10:18:04 +01:00
|
|
|
|
|
|
|
GenerateNotifier::GenerateNotifier()
|
|
|
|
{
|
2015-01-05 04:37:20 +01:00
|
|
|
m_notify_on = 0;
|
2014-12-06 10:18:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GenerateNotifier::GenerateNotifier(u32 notify_on,
|
|
|
|
std::set<u32> *notify_on_deco_ids)
|
|
|
|
{
|
|
|
|
m_notify_on = notify_on;
|
|
|
|
m_notify_on_deco_ids = notify_on_deco_ids;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GenerateNotifier::setNotifyOn(u32 notify_on)
|
|
|
|
{
|
|
|
|
m_notify_on = notify_on;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GenerateNotifier::setNotifyOnDecoIds(std::set<u32> *notify_on_deco_ids)
|
|
|
|
{
|
|
|
|
m_notify_on_deco_ids = notify_on_deco_ids;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool GenerateNotifier::addEvent(GenNotifyType type, v3s16 pos, u32 id)
|
|
|
|
{
|
|
|
|
if (!(m_notify_on & (1 << type)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (type == GENNOTIFY_DECORATION &&
|
|
|
|
m_notify_on_deco_ids->find(id) == m_notify_on_deco_ids->end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
GenNotifyEvent gne;
|
|
|
|
gne.type = type;
|
|
|
|
gne.pos = pos;
|
|
|
|
gne.id = id;
|
|
|
|
m_notify_events.push_back(gne);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GenerateNotifier::getEvents(
|
|
|
|
std::map<std::string, std::vector<v3s16> > &event_map,
|
|
|
|
bool peek_events)
|
|
|
|
{
|
2015-03-20 23:40:18 +01:00
|
|
|
std::list<GenNotifyEvent>::iterator it;
|
|
|
|
|
|
|
|
for (it = m_notify_events.begin(); it != m_notify_events.end(); ++it) {
|
2014-12-06 10:18:04 +01:00
|
|
|
GenNotifyEvent &gn = *it;
|
|
|
|
std::string name = (gn.type == GENNOTIFY_DECORATION) ?
|
|
|
|
"decoration#"+ itos(gn.id) :
|
|
|
|
flagdesc_gennotify[gn.type].name;
|
|
|
|
|
|
|
|
event_map[name].push_back(gn.pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!peek_events)
|
|
|
|
m_notify_events.clear();
|
|
|
|
}
|
|
|
|
|
2015-10-04 08:54:25 +02:00
|
|
|
|
|
|
|
////
|
|
|
|
//// MapgenParams
|
|
|
|
////
|
2014-11-13 05:01:13 +01:00
|
|
|
|
2016-04-28 09:43:09 +02:00
|
|
|
|
|
|
|
MapgenParams::~MapgenParams()
|
|
|
|
{
|
|
|
|
delete bparams;
|
|
|
|
delete sparams;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-26 12:44:49 +01:00
|
|
|
void MapgenParams::load(const Settings &settings)
|
|
|
|
{
|
|
|
|
std::string seed_str;
|
|
|
|
const char *seed_name = (&settings == g_settings) ? "fixed_map_seed" : "seed";
|
|
|
|
|
2015-03-22 05:01:46 +01:00
|
|
|
if (settings.getNoEx(seed_name, seed_str) && !seed_str.empty())
|
2015-01-26 12:44:49 +01:00
|
|
|
seed = read_seed(seed_str.c_str());
|
2015-03-22 05:01:46 +01:00
|
|
|
else
|
|
|
|
myrand_bytes(&seed, sizeof(seed));
|
2015-01-26 12:44:49 +01:00
|
|
|
|
|
|
|
settings.getNoEx("mg_name", mg_name);
|
|
|
|
settings.getS16NoEx("water_level", water_level);
|
|
|
|
settings.getS16NoEx("chunksize", chunksize);
|
|
|
|
settings.getFlagStrNoEx("mg_flags", flags, flagdesc_mapgen);
|
2016-04-28 09:43:09 +02:00
|
|
|
|
|
|
|
delete bparams;
|
|
|
|
bparams = BiomeManager::createBiomeParams(BIOMEGEN_ORIGINAL);
|
|
|
|
if (bparams) {
|
|
|
|
bparams->readParams(&settings);
|
|
|
|
bparams->seed = seed;
|
|
|
|
}
|
2015-01-26 12:44:49 +01:00
|
|
|
|
|
|
|
delete sparams;
|
2015-10-04 08:54:25 +02:00
|
|
|
MapgenFactory *mgfactory = EmergeManager::getMapgenFactory(mg_name);
|
|
|
|
if (mgfactory) {
|
|
|
|
sparams = mgfactory->createMapgenParams();
|
2015-01-26 12:44:49 +01:00
|
|
|
sparams->readParams(&settings);
|
2015-10-04 08:54:25 +02:00
|
|
|
}
|
2015-01-26 12:44:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MapgenParams::save(Settings &settings) const
|
|
|
|
{
|
|
|
|
settings.set("mg_name", mg_name);
|
|
|
|
settings.setU64("seed", seed);
|
|
|
|
settings.setS16("water_level", water_level);
|
|
|
|
settings.setS16("chunksize", chunksize);
|
2015-10-04 08:50:04 +02:00
|
|
|
settings.setFlagStr("mg_flags", flags, flagdesc_mapgen, U32_MAX);
|
2016-04-28 09:43:09 +02:00
|
|
|
|
|
|
|
if (bparams)
|
|
|
|
bparams->writeParams(&settings);
|
2015-01-26 12:44:49 +01:00
|
|
|
|
|
|
|
if (sparams)
|
|
|
|
sparams->writeParams(&settings);
|
|
|
|
}
|