2015-04-14 05:38:01 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
2015-10-07 03:05:03 +02:00
|
|
|
Copyright (C) 2010-2015 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
|
|
|
|
Copyright (C) 2010-2015 paramat, Matt Gregory
|
2015-04-14 05:38:01 +02:00
|
|
|
|
|
|
|
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_FRACTAL_HEADER
|
|
|
|
#define MAPGEN_FRACTAL_HEADER
|
|
|
|
|
|
|
|
#include "mapgen.h"
|
|
|
|
|
2015-11-08 09:18:47 +01:00
|
|
|
#define MGFRACTAL_LARGE_CAVE_DEPTH -33
|
2015-10-07 03:05:03 +02:00
|
|
|
|
2015-04-14 05:38:01 +02:00
|
|
|
class BiomeManager;
|
|
|
|
|
|
|
|
extern FlagDesc flagdesc_mapgen_fractal[];
|
|
|
|
|
|
|
|
|
|
|
|
struct MapgenFractalParams : public MapgenSpecificParams {
|
|
|
|
u32 spflags;
|
|
|
|
|
2015-11-11 06:05:20 +01:00
|
|
|
u16 formula;
|
2015-11-14 10:18:01 +01:00
|
|
|
u16 iterations;
|
|
|
|
v3f scale;
|
|
|
|
v3f offset;
|
|
|
|
float slice_w;
|
2015-11-11 06:05:20 +01:00
|
|
|
|
2015-04-14 05:38:01 +02:00
|
|
|
float julia_x;
|
|
|
|
float julia_y;
|
|
|
|
float julia_z;
|
|
|
|
float julia_w;
|
|
|
|
|
2015-10-07 03:05:03 +02:00
|
|
|
NoiseParams np_seabed;
|
2015-10-28 23:58:39 +01:00
|
|
|
NoiseParams np_filler_depth;
|
2015-04-14 05:38:01 +02:00
|
|
|
NoiseParams np_cave1;
|
|
|
|
NoiseParams np_cave2;
|
|
|
|
|
|
|
|
MapgenFractalParams();
|
|
|
|
~MapgenFractalParams() {}
|
|
|
|
|
|
|
|
void readParams(const Settings *settings);
|
|
|
|
void writeParams(Settings *settings) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MapgenFractal : public Mapgen {
|
|
|
|
public:
|
|
|
|
EmergeManager *m_emerge;
|
|
|
|
BiomeManager *bmgr;
|
|
|
|
|
|
|
|
int ystride;
|
|
|
|
int zstride;
|
|
|
|
u32 spflags;
|
|
|
|
|
|
|
|
v3s16 node_min;
|
|
|
|
v3s16 node_max;
|
|
|
|
v3s16 full_node_min;
|
|
|
|
v3s16 full_node_max;
|
|
|
|
|
2015-11-11 06:05:20 +01:00
|
|
|
u16 formula;
|
2015-11-14 10:18:01 +01:00
|
|
|
u16 iterations;
|
|
|
|
v3f scale;
|
|
|
|
v3f offset;
|
|
|
|
float slice_w;
|
2015-11-11 06:05:20 +01:00
|
|
|
|
2015-04-14 05:38:01 +02:00
|
|
|
float julia_x;
|
|
|
|
float julia_y;
|
|
|
|
float julia_z;
|
|
|
|
float julia_w;
|
|
|
|
|
2015-10-07 03:05:03 +02:00
|
|
|
Noise *noise_seabed;
|
2015-10-28 23:58:39 +01:00
|
|
|
Noise *noise_filler_depth;
|
2015-04-14 05:38:01 +02:00
|
|
|
Noise *noise_cave1;
|
|
|
|
Noise *noise_cave2;
|
|
|
|
|
|
|
|
Noise *noise_heat;
|
|
|
|
Noise *noise_humidity;
|
|
|
|
Noise *noise_heat_blend;
|
|
|
|
Noise *noise_humidity_blend;
|
|
|
|
|
|
|
|
content_t c_stone;
|
|
|
|
content_t c_water_source;
|
|
|
|
content_t c_lava_source;
|
|
|
|
content_t c_desert_stone;
|
|
|
|
content_t c_ice;
|
|
|
|
content_t c_sandstone;
|
|
|
|
|
|
|
|
content_t c_cobble;
|
|
|
|
content_t c_stair_cobble;
|
|
|
|
content_t c_mossycobble;
|
|
|
|
content_t c_sandstonebrick;
|
|
|
|
content_t c_stair_sandstonebrick;
|
|
|
|
|
|
|
|
MapgenFractal(int mapgenid, MapgenParams *params, EmergeManager *emerge);
|
|
|
|
~MapgenFractal();
|
|
|
|
|
|
|
|
virtual void makeChunk(BlockMakeData *data);
|
|
|
|
int getGroundLevelAtPoint(v2s16 p);
|
|
|
|
void calculateNoise();
|
2015-10-07 03:05:03 +02:00
|
|
|
bool getFractalAtPoint(s16 x, s16 y, s16 z);
|
2015-04-14 05:38:01 +02:00
|
|
|
s16 generateTerrain();
|
|
|
|
MgStoneType generateBiomes(float *heat_map, float *humidity_map);
|
|
|
|
void dustTopNodes();
|
|
|
|
void generateCaves(s16 max_stone_y);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MapgenFactoryFractal : public MapgenFactory {
|
|
|
|
Mapgen *createMapgen(int mgid, MapgenParams *params, EmergeManager *emerge)
|
|
|
|
{
|
|
|
|
return new MapgenFractal(mgid, params, emerge);
|
|
|
|
};
|
|
|
|
|
|
|
|
MapgenSpecificParams *createMapgenParams()
|
|
|
|
{
|
|
|
|
return new MapgenFractalParams();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|