2011-06-25 17:12:41 +02:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2010-2013 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MAPGEN_HEADER
|
|
|
|
#define MAPGEN_HEADER
|
|
|
|
|
2014-12-09 06:37:48 +01:00
|
|
|
#include "noise.h"
|
2013-07-08 21:19:22 +02:00
|
|
|
#include "nodedef.h"
|
2012-11-26 03:16:48 +01:00
|
|
|
#include "mapnode.h"
|
2014-11-13 05:01:13 +01:00
|
|
|
#include "util/string.h"
|
|
|
|
#include "util/container.h"
|
2013-01-06 20:40:24 +01:00
|
|
|
|
2014-02-04 04:42:10 +01:00
|
|
|
#define DEFAULT_MAPGEN "v6"
|
|
|
|
|
2013-01-06 20:40:24 +01:00
|
|
|
/////////////////// Mapgen flags
|
|
|
|
#define MG_TREES 0x01
|
|
|
|
#define MG_CAVES 0x02
|
|
|
|
#define MG_DUNGEONS 0x04
|
2014-02-04 04:42:10 +01:00
|
|
|
#define MG_FLAT 0x08
|
2014-02-08 23:50:26 +01:00
|
|
|
#define MG_LIGHT 0x10
|
2013-01-06 20:40:24 +01:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
class Settings;
|
2015-01-05 08:42:27 +01:00
|
|
|
class MMVManip;
|
2014-11-13 05:01:13 +01:00
|
|
|
class INodeDefManager;
|
2013-12-14 07:52:06 +01:00
|
|
|
|
2013-02-14 04:43:15 +01:00
|
|
|
extern FlagDesc flagdesc_mapgen[];
|
2013-12-14 07:52:06 +01:00
|
|
|
extern FlagDesc flagdesc_gennotify[];
|
2013-02-14 04:43:15 +01:00
|
|
|
|
2012-11-26 03:16:48 +01:00
|
|
|
class Biome;
|
2013-01-23 04:32:30 +01:00
|
|
|
class EmergeManager;
|
2011-06-25 17:12:41 +02:00
|
|
|
class MapBlock;
|
2012-12-22 06:34:35 +01:00
|
|
|
class VoxelManipulator;
|
2013-03-23 07:24:31 +01:00
|
|
|
struct BlockMakeData;
|
2013-03-16 03:43:35 +01:00
|
|
|
class VoxelArea;
|
2013-06-22 06:29:44 +02:00
|
|
|
class Map;
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2013-12-14 07:52:06 +01:00
|
|
|
enum MapgenObject {
|
|
|
|
MGOBJ_VMANIP,
|
|
|
|
MGOBJ_HEIGHTMAP,
|
|
|
|
MGOBJ_BIOMEMAP,
|
|
|
|
MGOBJ_HEATMAP,
|
|
|
|
MGOBJ_HUMIDMAP,
|
|
|
|
MGOBJ_GENNOTIFY
|
|
|
|
};
|
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
enum GenNotifyType {
|
2013-12-14 07:52:06 +01:00
|
|
|
GENNOTIFY_DUNGEON,
|
|
|
|
GENNOTIFY_TEMPLE,
|
|
|
|
GENNOTIFY_CAVE_BEGIN,
|
|
|
|
GENNOTIFY_CAVE_END,
|
|
|
|
GENNOTIFY_LARGECAVE_BEGIN,
|
2014-12-06 10:18:04 +01:00
|
|
|
GENNOTIFY_LARGECAVE_END,
|
|
|
|
GENNOTIFY_DECORATION,
|
|
|
|
NUM_GENNOTIFY_TYPES
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GenNotifyEvent {
|
|
|
|
GenNotifyType type;
|
|
|
|
v3s16 pos;
|
|
|
|
u32 id;
|
|
|
|
};
|
|
|
|
|
|
|
|
class GenerateNotifier {
|
|
|
|
public:
|
|
|
|
GenerateNotifier();
|
|
|
|
GenerateNotifier(u32 notify_on, std::set<u32> *notify_on_deco_ids);
|
|
|
|
|
|
|
|
void setNotifyOn(u32 notify_on);
|
|
|
|
void setNotifyOnDecoIds(std::set<u32> *notify_on_deco_ids);
|
|
|
|
|
|
|
|
bool addEvent(GenNotifyType type, v3s16 pos, u32 id=0);
|
|
|
|
void getEvents(std::map<std::string, std::vector<v3s16> > &event_map,
|
|
|
|
bool peek_events=false);
|
|
|
|
|
|
|
|
private:
|
|
|
|
u32 m_notify_on;
|
|
|
|
std::set<u32> *m_notify_on_deco_ids;
|
2015-03-05 15:34:39 +01:00
|
|
|
std::vector<GenNotifyEvent> m_notify_events;
|
2013-12-14 07:52:06 +01:00
|
|
|
};
|
|
|
|
|
2014-02-04 04:42:10 +01:00
|
|
|
struct MapgenSpecificParams {
|
|
|
|
virtual void readParams(Settings *settings) = 0;
|
|
|
|
virtual void writeParams(Settings *settings) = 0;
|
|
|
|
virtual ~MapgenSpecificParams() {}
|
|
|
|
};
|
|
|
|
|
2012-12-26 09:15:16 +01:00
|
|
|
struct MapgenParams {
|
2013-01-21 19:40:05 +01:00
|
|
|
std::string mg_name;
|
2014-09-12 00:22:05 +02:00
|
|
|
s16 chunksize;
|
2013-01-06 20:40:24 +01:00
|
|
|
u64 seed;
|
2014-09-12 00:22:05 +02:00
|
|
|
s16 water_level;
|
2012-12-26 09:15:16 +01:00
|
|
|
u32 flags;
|
|
|
|
|
2014-12-09 06:37:48 +01:00
|
|
|
NoiseParams np_biome_heat;
|
|
|
|
NoiseParams np_biome_humidity;
|
|
|
|
|
2014-02-04 04:42:10 +01:00
|
|
|
MapgenSpecificParams *sparams;
|
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
MapgenParams()
|
|
|
|
{
|
2014-02-08 23:50:26 +01:00
|
|
|
mg_name = DEFAULT_MAPGEN;
|
2012-12-26 09:15:16 +01:00
|
|
|
seed = 0;
|
|
|
|
water_level = 1;
|
|
|
|
chunksize = 5;
|
2014-02-08 23:50:26 +01:00
|
|
|
flags = MG_TREES | MG_CAVES | MG_LIGHT;
|
2014-02-04 04:42:10 +01:00
|
|
|
sparams = NULL;
|
2014-12-10 07:25:03 +01:00
|
|
|
np_biome_heat = NoiseParams(50, 50, v3f(500.0, 500.0, 500.0), 5349, 3, 0.5, 2.0);
|
|
|
|
np_biome_humidity = NoiseParams(50, 50, v3f(500.0, 500.0, 500.0), 842, 3, 0.5, 2.0);
|
2012-12-26 09:15:16 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-11-26 03:16:48 +01:00
|
|
|
class Mapgen {
|
2012-12-22 06:34:35 +01:00
|
|
|
public:
|
|
|
|
int seed;
|
|
|
|
int water_level;
|
2014-12-06 10:18:04 +01:00
|
|
|
u32 flags;
|
2012-12-22 06:34:35 +01:00
|
|
|
bool generating;
|
|
|
|
int id;
|
2014-12-30 03:44:52 +01:00
|
|
|
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm;
|
2013-03-12 02:32:52 +01:00
|
|
|
INodeDefManager *ndef;
|
2013-12-08 05:43:46 +01:00
|
|
|
|
2014-12-30 03:44:52 +01:00
|
|
|
u32 blockseed;
|
2013-06-16 04:23:06 +02:00
|
|
|
s16 *heightmap;
|
|
|
|
u8 *biomemap;
|
2013-06-26 23:19:39 +02:00
|
|
|
v3s16 csize;
|
2013-03-12 02:32:52 +01:00
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
GenerateNotifier gennotify;
|
2013-12-14 07:52:06 +01:00
|
|
|
|
2013-06-16 04:23:06 +02:00
|
|
|
Mapgen();
|
2014-12-06 10:18:04 +01:00
|
|
|
Mapgen(int mapgenid, MapgenParams *params, EmergeManager *emerge);
|
2013-12-14 07:52:06 +01:00
|
|
|
virtual ~Mapgen();
|
2013-05-19 05:26:27 +02:00
|
|
|
|
2014-12-30 03:44:52 +01:00
|
|
|
static u32 getBlockSeed(v3s16 p, int seed);
|
|
|
|
static u32 getBlockSeed2(v3s16 p, int seed);
|
2013-06-16 04:23:06 +02:00
|
|
|
s16 findGroundLevelFull(v2s16 p2d);
|
|
|
|
s16 findGroundLevel(v2s16 p2d, s16 ymin, s16 ymax);
|
2015-03-05 07:25:53 +01:00
|
|
|
void initHeightMap(s16 *dest, size_t len);
|
2013-06-16 04:23:06 +02:00
|
|
|
void updateHeightmap(v3s16 nmin, v3s16 nmax);
|
2013-03-12 02:32:52 +01:00
|
|
|
void updateLiquid(UniqueQueue<v3s16> *trans_liquid, v3s16 nmin, v3s16 nmax);
|
2015-01-05 07:18:53 +01:00
|
|
|
|
|
|
|
void setLighting(u8 light, v3s16 nmin, v3s16 nmax);
|
2013-03-16 03:43:35 +01:00
|
|
|
void lightSpread(VoxelArea &a, v3s16 p, u8 light);
|
2015-01-04 08:34:33 +01:00
|
|
|
|
2013-03-18 04:07:51 +01:00
|
|
|
void calcLighting(v3s16 nmin, v3s16 nmax);
|
2015-01-05 07:18:53 +01:00
|
|
|
void calcLighting(v3s16 nmin, v3s16 nmax,
|
|
|
|
v3s16 full_nmin, v3s16 full_nmax);
|
|
|
|
|
2015-01-04 08:34:33 +01:00
|
|
|
void propagateSunlight(v3s16 nmin, v3s16 nmax);
|
|
|
|
void spreadLight(v3s16 nmin, v3s16 nmax);
|
|
|
|
|
2013-03-18 04:07:51 +01:00
|
|
|
void calcLightingOld(v3s16 nmin, v3s16 nmax);
|
2012-12-22 06:34:35 +01:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
virtual void makeChunk(BlockMakeData *data) {}
|
|
|
|
virtual int getGroundLevelAtPoint(v2s16 p) { return 0; }
|
2012-12-22 06:34:35 +01:00
|
|
|
};
|
|
|
|
|
2013-01-23 04:32:30 +01:00
|
|
|
struct MapgenFactory {
|
|
|
|
virtual Mapgen *createMapgen(int mgid, MapgenParams *params,
|
2014-11-13 05:01:13 +01:00
|
|
|
EmergeManager *emerge) = 0;
|
2014-02-04 04:42:10 +01:00
|
|
|
virtual MapgenSpecificParams *createMapgenParams() = 0;
|
2013-05-19 05:26:27 +02:00
|
|
|
virtual ~MapgenFactory() {}
|
2012-12-22 06:34:35 +01:00
|
|
|
};
|
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
class GenElement {
|
|
|
|
public:
|
2014-11-15 13:33:52 +01:00
|
|
|
virtual ~GenElement() {}
|
2014-11-13 06:16:37 +01:00
|
|
|
u32 id;
|
2014-11-13 05:01:13 +01:00
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
|
|
|
|
class GenElementManager {
|
|
|
|
public:
|
|
|
|
static const char *ELEMENT_TITLE;
|
|
|
|
static const size_t ELEMENT_LIMIT = -1;
|
2011-06-25 17:12:41 +02:00
|
|
|
|
2014-12-12 20:07:49 +01:00
|
|
|
GenElementManager(IGameDef *gamedef);
|
2014-11-13 05:01:13 +01:00
|
|
|
virtual ~GenElementManager();
|
|
|
|
|
|
|
|
virtual GenElement *create(int type) = 0;
|
|
|
|
|
|
|
|
virtual u32 add(GenElement *elem);
|
|
|
|
virtual GenElement *get(u32 id);
|
|
|
|
virtual GenElement *update(u32 id, GenElement *elem);
|
|
|
|
virtual GenElement *remove(u32 id);
|
2014-12-07 00:08:08 +01:00
|
|
|
virtual void clear();
|
2014-11-13 05:01:13 +01:00
|
|
|
|
2014-12-07 00:08:08 +01:00
|
|
|
virtual GenElement *getByName(const std::string &name);
|
2014-11-13 05:01:13 +01:00
|
|
|
|
|
|
|
protected:
|
2014-12-17 09:20:17 +01:00
|
|
|
INodeDefManager *m_ndef;
|
2014-11-13 05:01:13 +01:00
|
|
|
std::vector<GenElement *> m_elements;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|