2011-06-25 08:12:41 -07:00
|
|
|
/*
|
2013-02-24 09:40:43 -08:00
|
|
|
Minetest
|
2013-02-24 10:38:45 -08:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-06-25 08:12:41 -07:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 07:56:56 -07: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 08:12:41 -07: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 07:56:56 -07:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-06-25 08:12:41 -07:00
|
|
|
|
2012-06-05 07:56:56 -07:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-06-25 08:12:41 -07: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-08 21:37:48 -08:00
|
|
|
#include "noise.h"
|
2013-07-08 12:19:22 -07:00
|
|
|
#include "nodedef.h"
|
2012-11-25 18:16:48 -08:00
|
|
|
#include "mapnode.h"
|
2014-11-12 20:01:13 -08:00
|
|
|
#include "util/string.h"
|
|
|
|
#include "util/container.h"
|
2013-01-06 11:40:24 -08:00
|
|
|
|
2014-02-03 19:42:10 -08:00
|
|
|
#define DEFAULT_MAPGEN "v6"
|
|
|
|
|
2013-01-06 11:40:24 -08:00
|
|
|
/////////////////// Mapgen flags
|
|
|
|
#define MG_TREES 0x01
|
|
|
|
#define MG_CAVES 0x02
|
|
|
|
#define MG_DUNGEONS 0x04
|
2014-02-03 19:42:10 -08:00
|
|
|
#define MG_FLAT 0x08
|
2014-02-08 14:50:26 -08:00
|
|
|
#define MG_LIGHT 0x10
|
2013-01-06 11:40:24 -08:00
|
|
|
|
2014-11-12 20:01:13 -08:00
|
|
|
class Settings;
|
2015-01-04 23:42:27 -08:00
|
|
|
class MMVManip;
|
2014-11-12 20:01:13 -08:00
|
|
|
class INodeDefManager;
|
2013-12-13 22:52:06 -08:00
|
|
|
|
2013-02-13 19:43:15 -08:00
|
|
|
extern FlagDesc flagdesc_mapgen[];
|
2013-12-13 22:52:06 -08:00
|
|
|
extern FlagDesc flagdesc_gennotify[];
|
2013-02-13 19:43:15 -08:00
|
|
|
|
2012-11-25 18:16:48 -08:00
|
|
|
class Biome;
|
2013-01-22 19:32:30 -08:00
|
|
|
class EmergeManager;
|
2011-06-25 08:12:41 -07:00
|
|
|
class MapBlock;
|
2012-12-21 21:34:35 -08:00
|
|
|
class VoxelManipulator;
|
2013-03-22 23:24:31 -07:00
|
|
|
struct BlockMakeData;
|
2013-03-15 19:43:35 -07:00
|
|
|
class VoxelArea;
|
2013-06-21 21:29:44 -07:00
|
|
|
class Map;
|
2012-11-25 18:16:48 -08:00
|
|
|
|
2013-12-13 22:52:06 -08:00
|
|
|
enum MapgenObject {
|
|
|
|
MGOBJ_VMANIP,
|
|
|
|
MGOBJ_HEIGHTMAP,
|
|
|
|
MGOBJ_BIOMEMAP,
|
|
|
|
MGOBJ_HEATMAP,
|
|
|
|
MGOBJ_HUMIDMAP,
|
|
|
|
MGOBJ_GENNOTIFY
|
|
|
|
};
|
|
|
|
|
2014-12-06 01:18:04 -08:00
|
|
|
enum GenNotifyType {
|
2013-12-13 22:52:06 -08:00
|
|
|
GENNOTIFY_DUNGEON,
|
|
|
|
GENNOTIFY_TEMPLE,
|
|
|
|
GENNOTIFY_CAVE_BEGIN,
|
|
|
|
GENNOTIFY_CAVE_END,
|
|
|
|
GENNOTIFY_LARGECAVE_BEGIN,
|
2014-12-06 01:18:04 -08: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-20 15:40:18 -07:00
|
|
|
std::list<GenNotifyEvent> m_notify_events;
|
2013-12-13 22:52:06 -08:00
|
|
|
};
|
|
|
|
|
2014-02-03 19:42:10 -08:00
|
|
|
struct MapgenSpecificParams {
|
2015-01-26 03:44:49 -08:00
|
|
|
virtual void readParams(const Settings *settings) = 0;
|
|
|
|
virtual void writeParams(Settings *settings) const = 0;
|
2014-02-03 19:42:10 -08:00
|
|
|
virtual ~MapgenSpecificParams() {}
|
|
|
|
};
|
|
|
|
|
2015-03-10 17:45:42 -07:00
|
|
|
struct MapgenParams {
|
2013-01-21 10:40:05 -08:00
|
|
|
std::string mg_name;
|
2014-09-11 15:22:05 -07:00
|
|
|
s16 chunksize;
|
2013-01-06 11:40:24 -08:00
|
|
|
u64 seed;
|
2014-09-11 15:22:05 -07:00
|
|
|
s16 water_level;
|
2012-12-26 00:15:16 -08:00
|
|
|
u32 flags;
|
|
|
|
|
2014-12-08 21:37:48 -08:00
|
|
|
NoiseParams np_biome_heat;
|
|
|
|
NoiseParams np_biome_humidity;
|
|
|
|
|
2014-02-03 19:42:10 -08:00
|
|
|
MapgenSpecificParams *sparams;
|
|
|
|
|
2015-01-26 03:44:49 -08:00
|
|
|
MapgenParams() :
|
|
|
|
mg_name(DEFAULT_MAPGEN),
|
|
|
|
chunksize(5),
|
|
|
|
seed(0),
|
|
|
|
water_level(1),
|
|
|
|
flags(MG_TREES | MG_CAVES | MG_LIGHT),
|
|
|
|
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)),
|
|
|
|
sparams(NULL)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void load(const Settings &settings);
|
|
|
|
void save(Settings &settings) const;
|
2012-12-26 00:15:16 -08:00
|
|
|
};
|
|
|
|
|
2012-11-25 18:16:48 -08:00
|
|
|
class Mapgen {
|
2012-12-21 21:34:35 -08:00
|
|
|
public:
|
|
|
|
int seed;
|
|
|
|
int water_level;
|
2014-12-06 01:18:04 -08:00
|
|
|
u32 flags;
|
2012-12-21 21:34:35 -08:00
|
|
|
bool generating;
|
|
|
|
int id;
|
2014-12-29 18:44:52 -08:00
|
|
|
|
2015-01-04 23:42:27 -08:00
|
|
|
MMVManip *vm;
|
2013-03-11 18:32:52 -07:00
|
|
|
INodeDefManager *ndef;
|
2013-12-07 20:43:46 -08:00
|
|
|
|
2014-12-29 18:44:52 -08:00
|
|
|
u32 blockseed;
|
2013-06-15 19:23:06 -07:00
|
|
|
s16 *heightmap;
|
|
|
|
u8 *biomemap;
|
2013-06-26 14:19:39 -07:00
|
|
|
v3s16 csize;
|
2013-03-11 18:32:52 -07:00
|
|
|
|
2014-12-06 01:18:04 -08:00
|
|
|
GenerateNotifier gennotify;
|
2013-12-13 22:52:06 -08:00
|
|
|
|
2013-06-15 19:23:06 -07:00
|
|
|
Mapgen();
|
2014-12-06 01:18:04 -08:00
|
|
|
Mapgen(int mapgenid, MapgenParams *params, EmergeManager *emerge);
|
2013-12-13 22:52:06 -08:00
|
|
|
virtual ~Mapgen();
|
2013-05-18 20:26:27 -07:00
|
|
|
|
2014-12-29 18:44:52 -08:00
|
|
|
static u32 getBlockSeed(v3s16 p, int seed);
|
|
|
|
static u32 getBlockSeed2(v3s16 p, int seed);
|
2013-06-15 19:23:06 -07:00
|
|
|
s16 findGroundLevelFull(v2s16 p2d);
|
|
|
|
s16 findGroundLevel(v2s16 p2d, s16 ymin, s16 ymax);
|
|
|
|
void updateHeightmap(v3s16 nmin, v3s16 nmax);
|
2013-03-11 18:32:52 -07:00
|
|
|
void updateLiquid(UniqueQueue<v3s16> *trans_liquid, v3s16 nmin, v3s16 nmax);
|
2015-01-04 22:18:53 -08:00
|
|
|
|
|
|
|
void setLighting(u8 light, v3s16 nmin, v3s16 nmax);
|
2013-03-15 19:43:35 -07:00
|
|
|
void lightSpread(VoxelArea &a, v3s16 p, u8 light);
|
2015-01-03 23:34:33 -08:00
|
|
|
|
2013-03-17 20:07:51 -07:00
|
|
|
void calcLighting(v3s16 nmin, v3s16 nmax);
|
2015-01-04 22:18:53 -08:00
|
|
|
void calcLighting(v3s16 nmin, v3s16 nmax,
|
|
|
|
v3s16 full_nmin, v3s16 full_nmax);
|
|
|
|
|
2015-01-03 23:34:33 -08:00
|
|
|
void propagateSunlight(v3s16 nmin, v3s16 nmax);
|
|
|
|
void spreadLight(v3s16 nmin, v3s16 nmax);
|
|
|
|
|
2013-03-17 20:07:51 -07:00
|
|
|
void calcLightingOld(v3s16 nmin, v3s16 nmax);
|
2012-12-21 21:34:35 -08:00
|
|
|
|
2013-06-25 08:02:02 -07:00
|
|
|
virtual void makeChunk(BlockMakeData *data) {}
|
|
|
|
virtual int getGroundLevelAtPoint(v2s16 p) { return 0; }
|
2012-12-21 21:34:35 -08:00
|
|
|
};
|
|
|
|
|
2013-01-22 19:32:30 -08:00
|
|
|
struct MapgenFactory {
|
|
|
|
virtual Mapgen *createMapgen(int mgid, MapgenParams *params,
|
2014-11-12 20:01:13 -08:00
|
|
|
EmergeManager *emerge) = 0;
|
2014-02-03 19:42:10 -08:00
|
|
|
virtual MapgenSpecificParams *createMapgenParams() = 0;
|
2013-05-18 20:26:27 -07:00
|
|
|
virtual ~MapgenFactory() {}
|
2012-12-21 21:34:35 -08:00
|
|
|
};
|
|
|
|
|
2015-03-30 20:40:35 -07:00
|
|
|
typedef std::map<std::string, std::string> StringMap;
|
|
|
|
typedef u32 ObjDefHandle;
|
|
|
|
|
|
|
|
#define OBJDEF_INVALID_INDEX ((u32)(-1))
|
|
|
|
#define OBJDEF_INVALID_HANDLE 0
|
|
|
|
#define OBJDEF_HANDLE_SALT 0x00585e6fu
|
|
|
|
#define OBJDEF_MAX_ITEMS (1 << 18)
|
|
|
|
#define OBJDEF_UID_MASK ((1 << 7) - 1)
|
|
|
|
|
|
|
|
enum ObjDefType {
|
|
|
|
OBJDEF_GENERIC,
|
|
|
|
OBJDEF_BIOME,
|
|
|
|
OBJDEF_ORE,
|
|
|
|
OBJDEF_DECORATION,
|
|
|
|
OBJDEF_SCHEMATIC,
|
|
|
|
};
|
|
|
|
|
|
|
|
class ObjDef {
|
2014-11-12 20:01:13 -08:00
|
|
|
public:
|
2015-03-30 20:40:35 -07:00
|
|
|
virtual ~ObjDef() {}
|
|
|
|
|
|
|
|
u32 index;
|
|
|
|
u32 uid;
|
|
|
|
ObjDefHandle handle;
|
2014-11-12 20:01:13 -08:00
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
|
2015-03-30 20:40:35 -07:00
|
|
|
class ObjDefManager {
|
2014-11-12 20:01:13 -08:00
|
|
|
public:
|
2015-03-30 20:40:35 -07:00
|
|
|
ObjDefManager(IGameDef *gamedef, ObjDefType type);
|
|
|
|
virtual ~ObjDefManager();
|
2011-06-25 08:12:41 -07:00
|
|
|
|
2015-03-30 20:40:35 -07:00
|
|
|
virtual const char *getObjectTitle() const = 0;
|
2014-11-12 20:01:13 -08:00
|
|
|
|
2014-12-06 15:08:08 -08:00
|
|
|
virtual void clear();
|
2015-03-30 20:40:35 -07:00
|
|
|
virtual ObjDef *getByName(const std::string &name) const;
|
|
|
|
|
|
|
|
//// Add new/get/set object definitions by handle
|
|
|
|
virtual ObjDefHandle add(ObjDef *obj);
|
|
|
|
virtual ObjDef *get(ObjDefHandle handle) const;
|
|
|
|
virtual ObjDef *set(ObjDefHandle handle, ObjDef *obj);
|
|
|
|
|
|
|
|
//// Raw variants that work on indexes
|
|
|
|
virtual u32 addRaw(ObjDef *obj);
|
|
|
|
|
|
|
|
// It is generally assumed that getRaw() will always return a valid object
|
|
|
|
// This won't be true if people do odd things such as call setRaw() with NULL
|
|
|
|
virtual ObjDef *getRaw(u32 index) const;
|
|
|
|
virtual ObjDef *setRaw(u32 index, ObjDef *obj);
|
2014-11-12 20:01:13 -08:00
|
|
|
|
2015-03-30 20:40:35 -07:00
|
|
|
INodeDefManager *getNodeDef() const { return m_ndef; }
|
2014-11-12 20:01:13 -08:00
|
|
|
|
2015-03-30 20:40:35 -07:00
|
|
|
u32 validateHandle(ObjDefHandle handle) const;
|
|
|
|
static ObjDefHandle createHandle(u32 index, ObjDefType type, u32 uid);
|
|
|
|
static bool decodeHandle(ObjDefHandle handle, u32 *index,
|
|
|
|
ObjDefType *type, u32 *uid);
|
2015-03-23 19:10:59 -07:00
|
|
|
|
2014-11-12 20:01:13 -08:00
|
|
|
protected:
|
2014-12-17 00:20:17 -08:00
|
|
|
INodeDefManager *m_ndef;
|
2015-03-30 20:40:35 -07:00
|
|
|
std::vector<ObjDef *> m_objects;
|
|
|
|
ObjDefType m_objtype;
|
2014-11-12 20:01:13 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|