2014-10-16 07:45:55 -04:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2010-2013 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MAPGEN_V5_HEADER
|
|
|
|
#define MAPGEN_V5_HEADER
|
|
|
|
|
|
|
|
#include "mapgen.h"
|
|
|
|
|
2015-03-15 21:22:37 -04:00
|
|
|
#define LARGE_CAVE_DEPTH -256
|
|
|
|
|
2014-10-16 07:45:55 -04:00
|
|
|
/////////////////// Mapgen V5 flags
|
2015-01-21 08:24:11 -05:00
|
|
|
//#define MGV5_ 0x01
|
|
|
|
|
|
|
|
class BiomeManager;
|
2014-10-16 07:45:55 -04:00
|
|
|
|
|
|
|
extern FlagDesc flagdesc_mapgen_v5[];
|
|
|
|
|
|
|
|
|
|
|
|
struct MapgenV5Params : public MapgenSpecificParams {
|
|
|
|
u32 spflags;
|
|
|
|
NoiseParams np_filler_depth;
|
|
|
|
NoiseParams np_factor;
|
|
|
|
NoiseParams np_height;
|
|
|
|
NoiseParams np_cave1;
|
|
|
|
NoiseParams np_cave2;
|
|
|
|
NoiseParams np_ground;
|
|
|
|
|
|
|
|
MapgenV5Params();
|
|
|
|
~MapgenV5Params() {}
|
2014-12-06 04:18:04 -05:00
|
|
|
|
2015-01-26 06:44:49 -05:00
|
|
|
void readParams(const Settings *settings);
|
|
|
|
void writeParams(Settings *settings) const;
|
2014-10-16 07:45:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class MapgenV5 : public Mapgen {
|
|
|
|
public:
|
2014-12-12 02:38:39 -05:00
|
|
|
EmergeManager *m_emerge;
|
2014-11-12 23:01:13 -05:00
|
|
|
BiomeManager *bmgr;
|
2014-10-16 07:45:55 -04:00
|
|
|
|
|
|
|
int ystride;
|
|
|
|
int zstride;
|
|
|
|
u32 spflags;
|
|
|
|
|
|
|
|
v3s16 node_min;
|
|
|
|
v3s16 node_max;
|
|
|
|
v3s16 full_node_min;
|
|
|
|
v3s16 full_node_max;
|
2014-12-06 04:18:04 -05:00
|
|
|
|
2014-10-16 07:45:55 -04:00
|
|
|
Noise *noise_filler_depth;
|
|
|
|
Noise *noise_factor;
|
|
|
|
Noise *noise_height;
|
|
|
|
Noise *noise_cave1;
|
|
|
|
Noise *noise_cave2;
|
|
|
|
Noise *noise_ground;
|
|
|
|
Noise *noise_heat;
|
|
|
|
Noise *noise_humidity;
|
|
|
|
|
|
|
|
content_t c_stone;
|
|
|
|
content_t c_dirt;
|
|
|
|
content_t c_dirt_with_grass;
|
|
|
|
content_t c_sand;
|
|
|
|
content_t c_water_source;
|
|
|
|
content_t c_lava_source;
|
|
|
|
content_t c_ice;
|
|
|
|
content_t c_gravel;
|
|
|
|
content_t c_cobble;
|
|
|
|
content_t c_desert_sand;
|
|
|
|
content_t c_desert_stone;
|
|
|
|
content_t c_mossycobble;
|
|
|
|
content_t c_sandbrick;
|
|
|
|
content_t c_stair_cobble;
|
|
|
|
content_t c_stair_sandstone;
|
|
|
|
|
2014-12-07 01:19:42 -05:00
|
|
|
MapgenV5(int mapgenid, MapgenParams *params, EmergeManager *emerge);
|
2014-10-16 07:45:55 -04:00
|
|
|
~MapgenV5();
|
2014-12-06 04:18:04 -05:00
|
|
|
|
2014-10-16 07:45:55 -04:00
|
|
|
virtual void makeChunk(BlockMakeData *data);
|
2014-11-10 16:57:34 -05:00
|
|
|
int getGroundLevelAtPoint(v2s16 p);
|
2014-10-16 07:45:55 -04:00
|
|
|
void calculateNoise();
|
2014-12-30 19:19:05 -05:00
|
|
|
int generateBaseTerrain();
|
2015-03-11 02:48:06 -04:00
|
|
|
bool generateBiomes(float *heat_map, float *humidity_map);
|
2015-01-21 08:24:11 -05:00
|
|
|
void generateCaves(int max_stone_y);
|
2014-10-16 07:45:55 -04:00
|
|
|
void dustTopNodes();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct MapgenFactoryV5 : public MapgenFactory {
|
2014-12-29 22:04:47 -05:00
|
|
|
Mapgen *createMapgen(int mgid, MapgenParams *params, EmergeManager *emerge)
|
|
|
|
{
|
2014-10-16 07:45:55 -04:00
|
|
|
return new MapgenV5(mgid, params, emerge);
|
|
|
|
};
|
2014-12-06 04:18:04 -05:00
|
|
|
|
2014-12-29 22:04:47 -05:00
|
|
|
MapgenSpecificParams *createMapgenParams()
|
|
|
|
{
|
2014-10-16 07:45:55 -04:00
|
|
|
return new MapgenV5Params();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|