2011-09-11 12:16:07 -04:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-06-25 11:12:41 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04: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 11:12:41 -04: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 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-06-25 11:12:41 -04:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-06-25 11:12:41 -04: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 14:07:49 -05:00
|
|
|
#include "gamedef.h"
|
2014-11-01 13:16:23 -04:00
|
|
|
#include "mg_biome.h"
|
2011-06-25 11:12:41 -04:00
|
|
|
#include "mapblock.h"
|
2012-11-25 21:16:48 -05:00
|
|
|
#include "mapnode.h"
|
2011-06-25 11:12:41 -04:00
|
|
|
#include "map.h"
|
2011-06-26 08:48:56 -04:00
|
|
|
#include "content_sao.h"
|
2011-11-14 14:41:30 -05:00
|
|
|
#include "nodedef.h"
|
2014-12-06 04:18:04 -05:00
|
|
|
#include "emerge.h"
|
2011-11-16 07:08:31 -05:00
|
|
|
#include "content_mapnode.h" // For content_mapnode_get_new_name
|
2012-01-27 06:24:06 -05:00
|
|
|
#include "voxelalgorithms.h"
|
2012-01-27 07:10:10 -05:00
|
|
|
#include "profiler.h"
|
2012-11-25 21:16:48 -05:00
|
|
|
#include "settings.h" // For g_settings
|
2012-01-27 07:10:10 -05:00
|
|
|
#include "main.h" // For g_profiler
|
2012-12-29 10:20:09 -05:00
|
|
|
#include "treegen.h"
|
2013-08-10 22:09:45 -04:00
|
|
|
#include "serialization.h"
|
2013-06-22 00:29:44 -04:00
|
|
|
#include "util/serialize.h"
|
2013-08-13 13:15:06 -04:00
|
|
|
#include "filesys.h"
|
2014-09-11 18:22:05 -04:00
|
|
|
#include "log.h"
|
2013-01-06 14:40:24 -05:00
|
|
|
|
2014-11-12 23:01:13 -05:00
|
|
|
const char *GenElementManager::ELEMENT_TITLE = "element";
|
2014-02-03 22:42:10 -05:00
|
|
|
|
2013-02-05 15:01:33 -05:00
|
|
|
FlagDesc flagdesc_mapgen[] = {
|
2014-02-08 17:50:26 -05:00
|
|
|
{"trees", MG_TREES},
|
|
|
|
{"caves", MG_CAVES},
|
|
|
|
{"dungeons", MG_DUNGEONS},
|
|
|
|
{"flat", MG_FLAT},
|
|
|
|
{"light", MG_LIGHT},
|
|
|
|
{NULL, 0}
|
2013-03-31 20:02:03 -04:00
|
|
|
};
|
|
|
|
|
2013-12-14 01:52:06 -05: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 04:18:04 -05:00
|
|
|
{"decoration", 1 << GENNOTIFY_DECORATION},
|
2013-12-14 01:52:06 -05:00
|
|
|
{NULL, 0}
|
|
|
|
};
|
|
|
|
|
2013-03-24 01:43:38 -04:00
|
|
|
|
2013-06-22 00:29:44 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
Mapgen::Mapgen()
|
|
|
|
{
|
|
|
|
generating = false;
|
|
|
|
id = -1;
|
|
|
|
seed = 0;
|
|
|
|
water_level = 0;
|
|
|
|
flags = 0;
|
2013-06-22 00:29:44 -04:00
|
|
|
|
2013-06-15 22:23:06 -04:00
|
|
|
vm = NULL;
|
|
|
|
ndef = NULL;
|
|
|
|
heightmap = NULL;
|
|
|
|
biomemap = NULL;
|
2014-12-06 04:18:04 -05:00
|
|
|
}
|
|
|
|
|
2013-12-14 01:52:06 -05:00
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
Mapgen::Mapgen(int mapgenid, MapgenParams *params, EmergeManager *emerge) :
|
|
|
|
gennotify(emerge->gen_notify_on, &emerge->gen_notify_on_deco_ids)
|
|
|
|
{
|
|
|
|
generating = false;
|
|
|
|
id = mapgenid;
|
|
|
|
seed = (int)params->seed;
|
|
|
|
water_level = params->water_level;
|
|
|
|
flags = params->flags;
|
|
|
|
csize = v3s16(1, 1, 1) * (params->chunksize * MAP_BLOCKSIZE);
|
|
|
|
|
|
|
|
vm = NULL;
|
|
|
|
ndef = NULL;
|
|
|
|
heightmap = NULL;
|
|
|
|
biomemap = NULL;
|
2013-12-14 01:52:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
Mapgen::~Mapgen()
|
|
|
|
{
|
2013-06-15 22:23:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-29 21:44:52 -05:00
|
|
|
u32 Mapgen::getBlockSeed(v3s16 p, int seed)
|
|
|
|
{
|
|
|
|
return (u32)seed +
|
|
|
|
p.Z * 38134234 +
|
|
|
|
p.Y * 42123 +
|
|
|
|
p.X * 23;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
u32 Mapgen::getBlockSeed2(v3s16 p, int seed)
|
|
|
|
{
|
|
|
|
return noise3d(p.X, p.Y, p.Z, seed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-15 22:23:06 -04:00
|
|
|
// Returns Y one under area minimum if not found
|
2014-12-06 04:18:04 -05:00
|
|
|
s16 Mapgen::findGroundLevelFull(v2s16 p2d)
|
|
|
|
{
|
2013-06-15 22:23:06 -04: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-07 23:43:46 -05:00
|
|
|
|
2013-06-15 22:23:06 -04: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
s16 Mapgen::findGroundLevel(v2s16 p2d, s16 ymin, s16 ymax)
|
|
|
|
{
|
2013-06-15 22:23:06 -04:00
|
|
|
v3s16 em = vm->m_area.getExtent();
|
|
|
|
u32 i = vm->m_area.index(p2d.X, ymax, p2d.Y);
|
|
|
|
s16 y;
|
2013-12-07 23:43:46 -05:00
|
|
|
|
2013-06-15 22:23:06 -04: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);
|
|
|
|
}
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
void Mapgen::updateHeightmap(v3s16 nmin, v3s16 nmax)
|
|
|
|
{
|
2013-06-15 22:23:06 -04:00
|
|
|
if (!heightmap)
|
|
|
|
return;
|
2013-12-07 23:43:46 -05:00
|
|
|
|
2013-06-15 22:23:06 -04:00
|
|
|
//TimeTaker t("Mapgen::updateHeightmap", NULL, PRECISION_MICRO);
|
|
|
|
int index = 0;
|
|
|
|
for (s16 z = nmin.Z; z <= nmax.Z; z++) {
|
2013-07-06 02:21:35 -04:00
|
|
|
for (s16 x = nmin.X; x <= nmax.X; x++, index++) {
|
2013-06-15 22:23:06 -04:00
|
|
|
s16 y = findGroundLevel(v2s16(x, z), nmin.Y, nmax.Y);
|
2013-07-06 02:21:35 -04:00
|
|
|
|
|
|
|
// if the values found are out of range, trust the old heightmap
|
|
|
|
if (y == nmax.Y && heightmap[index] > nmax.Y)
|
|
|
|
continue;
|
|
|
|
if (y == nmin.Y - 1 && heightmap[index] < nmin.Y)
|
|
|
|
continue;
|
2013-12-07 23:43:46 -05:00
|
|
|
|
2013-07-06 02:21:35 -04:00
|
|
|
heightmap[index] = y;
|
2013-06-15 22:23:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//printf("updateHeightmap: %dus\n", t.stop());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
void Mapgen::updateLiquid(UniqueQueue<v3s16> *trans_liquid, v3s16 nmin, v3s16 nmax)
|
|
|
|
{
|
2014-04-18 18:24:45 -04:00
|
|
|
bool isliquid, wasliquid;
|
2013-03-15 22:43:35 -04:00
|
|
|
v3s16 em = vm->m_area.getExtent();
|
2013-03-11 21:32:52 -04:00
|
|
|
|
|
|
|
for (s16 z = nmin.Z; z <= nmax.Z; z++) {
|
|
|
|
for (s16 x = nmin.X; x <= nmax.X; x++) {
|
|
|
|
wasliquid = true;
|
2013-06-15 22:23:06 -04:00
|
|
|
|
2013-03-15 22:43:35 -04:00
|
|
|
u32 i = vm->m_area.index(x, nmax.Y, z);
|
2013-03-11 21:32:52 -04:00
|
|
|
for (s16 y = nmax.Y; y >= nmin.Y; y--) {
|
|
|
|
isliquid = ndef->get(vm->m_data[i]).isLiquid();
|
2013-06-15 22:23:06 -04:00
|
|
|
|
2014-04-18 13:08:03 -04:00
|
|
|
// there was a change between liquid and nonliquid, add to queue.
|
|
|
|
if (isliquid != wasliquid)
|
2013-03-15 22:43:35 -04:00
|
|
|
trans_liquid->push_back(v3s16(x, y, z));
|
2013-03-11 21:32:52 -04:00
|
|
|
|
|
|
|
wasliquid = isliquid;
|
|
|
|
vm->m_area.add_y(em, i, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
void Mapgen::setLighting(v3s16 nmin, v3s16 nmax, u8 light)
|
|
|
|
{
|
2013-03-15 22:43:35 -04:00
|
|
|
ScopeProfiler sp(g_profiler, "EmergeThread: mapgen lighting update", SPT_AVG);
|
2013-04-07 02:26:46 -04:00
|
|
|
VoxelArea a(nmin, nmax);
|
2013-03-15 22:43:35 -04: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 04:18:04 -05:00
|
|
|
void Mapgen::lightSpread(VoxelArea &a, v3s16 p, u8 light)
|
|
|
|
{
|
2013-03-15 22:43:35 -04:00
|
|
|
if (light <= 1 || !a.contains(p))
|
|
|
|
return;
|
2013-06-15 22:23:06 -04:00
|
|
|
|
2013-03-15 22:43:35 -04:00
|
|
|
u32 vi = vm->m_area.index(p);
|
|
|
|
MapNode &nn = vm->m_data[vi];
|
|
|
|
|
|
|
|
light--;
|
|
|
|
// should probably compare masked, but doesn't seem to make a difference
|
|
|
|
if (light <= nn.param1 || !ndef->get(nn).light_propagates)
|
|
|
|
return;
|
2013-06-15 22:23:06 -04:00
|
|
|
|
2013-03-15 22:43:35 -04:00
|
|
|
nn.param1 = light;
|
2013-06-15 22:23:06 -04:00
|
|
|
|
2013-03-15 22:43:35 -04: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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
void Mapgen::calcLighting(v3s16 nmin, v3s16 nmax)
|
|
|
|
{
|
2013-04-07 02:26:46 -04:00
|
|
|
VoxelArea a(nmin, nmax);
|
2013-03-15 22:43:35 -04:00
|
|
|
bool block_is_underground = (water_level >= nmax.Y);
|
|
|
|
|
|
|
|
ScopeProfiler sp(g_profiler, "EmergeThread: mapgen lighting update", SPT_AVG);
|
|
|
|
//TimeTaker t("updateLighting");
|
|
|
|
|
|
|
|
// first, send vertical rays of sunshine downward
|
|
|
|
v3s16 em = vm->m_area.getExtent();
|
|
|
|
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;
|
|
|
|
} else if ((vm->m_data[i].param1 & 0x0F) != LIGHT_SUN) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
vm->m_area.add_y(em, i, -1);
|
2013-12-07 23:43:46 -05:00
|
|
|
|
2013-03-15 22:43:35 -04: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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-15 22:23:06 -04:00
|
|
|
|
2013-03-15 22:43:35 -04:00
|
|
|
// now spread the sunlight and light up any sources
|
|
|
|
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];
|
|
|
|
if (n.getContent() == CONTENT_IGNORE ||
|
|
|
|
!ndef->get(n).light_propagates)
|
|
|
|
continue;
|
2013-06-15 22:23:06 -04:00
|
|
|
|
2013-03-15 22:43:35 -04:00
|
|
|
u8 light_produced = ndef->get(n).light_source & 0x0F;
|
|
|
|
if (light_produced)
|
|
|
|
n.param1 = light_produced;
|
2013-06-15 22:23:06 -04:00
|
|
|
|
2013-03-15 22:43:35 -04:00
|
|
|
u8 light = n.param1 & 0x0F;
|
|
|
|
if (light) {
|
2013-06-28 22:22:44 -04:00
|
|
|
lightSpread(a, v3s16(x, y, z + 1), light - 1);
|
|
|
|
lightSpread(a, v3s16(x, y + 1, z ), light - 1);
|
|
|
|
lightSpread(a, v3s16(x + 1, y, z ), light - 1);
|
|
|
|
lightSpread(a, v3s16(x, y, z - 1), light - 1);
|
|
|
|
lightSpread(a, v3s16(x, y - 1, z ), light - 1);
|
|
|
|
lightSpread(a, v3s16(x - 1, y, z ), light - 1);
|
2013-03-15 22:43:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-15 22:23:06 -04:00
|
|
|
|
2013-03-15 22:43:35 -04:00
|
|
|
//printf("updateLighting: %dms\n", t.stop());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
void Mapgen::calcLightingOld(v3s16 nmin, v3s16 nmax)
|
|
|
|
{
|
2013-03-11 21:32:52 -04:00
|
|
|
enum LightBank banks[2] = {LIGHTBANK_DAY, LIGHTBANK_NIGHT};
|
2013-04-07 02:26:46 -04:00
|
|
|
VoxelArea a(nmin, nmax);
|
2013-03-11 21:32:52 -04:00
|
|
|
bool block_is_underground = (water_level > nmax.Y);
|
|
|
|
bool sunlight = !block_is_underground;
|
|
|
|
|
|
|
|
ScopeProfiler sp(g_profiler, "EmergeThread: mapgen lighting update", SPT_AVG);
|
2013-06-15 22:23:06 -04:00
|
|
|
|
2013-03-11 21:32:52 -04:00
|
|
|
for (int i = 0; i < 2; i++) {
|
|
|
|
enum LightBank bank = banks[i];
|
2013-03-15 22:43:35 -04:00
|
|
|
std::set<v3s16> light_sources;
|
|
|
|
std::map<v3s16, u8> unlight_from;
|
2013-03-11 21:32:52 -04:00
|
|
|
|
|
|
|
voxalgo::clearLightAndCollectSources(*vm, a, bank, ndef,
|
2014-11-12 23:01:13 -05:00
|
|
|
light_sources, unlight_from);
|
2013-03-11 21:32:52 -04:00
|
|
|
voxalgo::propagateSunlight(*vm, a, sunlight, light_sources, ndef);
|
2013-03-15 22:43:35 -04:00
|
|
|
|
2013-03-11 21:32:52 -04:00
|
|
|
vm->unspreadLight(bank, unlight_from, light_sources, ndef);
|
|
|
|
vm->spreadLight(bank, light_sources, ndef);
|
|
|
|
}
|
|
|
|
}
|
2014-11-12 23:01:13 -05:00
|
|
|
|
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
GenerateNotifier::GenerateNotifier()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
std::list<GenNotifyEvent>::iterator it;
|
|
|
|
|
|
|
|
for (it = m_notify_events.begin(); it != m_notify_events.end(); ++it) {
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-12 23:01:13 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2014-12-12 14:07:49 -05:00
|
|
|
GenElementManager::GenElementManager(IGameDef *gamedef)
|
|
|
|
{
|
2014-12-17 03:20:17 -05:00
|
|
|
m_ndef = gamedef->getNodeDefManager();
|
2014-12-12 14:07:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-12 23:01:13 -05:00
|
|
|
GenElementManager::~GenElementManager()
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i != m_elements.size(); i++)
|
|
|
|
delete m_elements[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
u32 GenElementManager::add(GenElement *elem)
|
|
|
|
{
|
|
|
|
size_t nelem = m_elements.size();
|
|
|
|
|
|
|
|
for (size_t i = 0; i != nelem; i++) {
|
|
|
|
if (m_elements[i] == NULL) {
|
|
|
|
elem->id = i;
|
|
|
|
m_elements[i] = elem;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nelem >= this->ELEMENT_LIMIT)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
elem->id = nelem;
|
|
|
|
m_elements.push_back(elem);
|
|
|
|
|
|
|
|
verbosestream << "GenElementManager: added " << this->ELEMENT_TITLE
|
|
|
|
<< " element '" << elem->name << "'" << std::endl;
|
|
|
|
|
|
|
|
return nelem;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GenElement *GenElementManager::get(u32 id)
|
|
|
|
{
|
|
|
|
return (id < m_elements.size()) ? m_elements[id] : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-06 18:08:08 -05:00
|
|
|
GenElement *GenElementManager::getByName(const std::string &name)
|
2014-11-12 23:01:13 -05:00
|
|
|
{
|
|
|
|
for (size_t i = 0; i != m_elements.size(); i++) {
|
|
|
|
GenElement *elem = m_elements[i];
|
2014-12-06 18:08:08 -05:00
|
|
|
if (elem && name == elem->name)
|
2014-11-12 23:01:13 -05:00
|
|
|
return elem;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GenElement *GenElementManager::update(u32 id, GenElement *elem)
|
|
|
|
{
|
|
|
|
if (id >= m_elements.size())
|
2014-11-14 02:58:56 -05:00
|
|
|
return NULL;
|
2014-11-12 23:01:13 -05:00
|
|
|
|
|
|
|
GenElement *old_elem = m_elements[id];
|
|
|
|
m_elements[id] = elem;
|
|
|
|
return old_elem;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GenElement *GenElementManager::remove(u32 id)
|
|
|
|
{
|
|
|
|
return update(id, NULL);
|
|
|
|
}
|
2014-12-06 18:08:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
void GenElementManager::clear()
|
|
|
|
{
|
|
|
|
m_elements.clear();
|
|
|
|
}
|