2012-11-26 03:16:48 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2017-05-25 19:53:47 +02:00
|
|
|
Copyright (C) 2014-2016 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
|
|
|
|
Copyright (C) 2014-2017 paramat
|
2012-11-26 03:16:48 +01: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.
|
|
|
|
*/
|
|
|
|
|
2014-11-01 18:16:23 +01:00
|
|
|
#ifndef MG_BIOME_HEADER
|
|
|
|
#define MG_BIOME_HEADER
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2015-05-19 04:30:25 +02:00
|
|
|
#include "objdef.h"
|
|
|
|
#include "nodedef.h"
|
2016-04-28 09:43:09 +02:00
|
|
|
#include "noise.h"
|
|
|
|
|
2017-01-09 20:39:22 +01:00
|
|
|
class Server;
|
2016-04-28 09:43:09 +02:00
|
|
|
class Settings;
|
|
|
|
class BiomeManager;
|
|
|
|
|
|
|
|
////
|
|
|
|
//// Biome
|
|
|
|
////
|
|
|
|
|
2016-06-04 09:00:45 +02:00
|
|
|
typedef u8 biome_t;
|
|
|
|
|
|
|
|
#define BIOME_NONE ((biome_t)0)
|
2014-11-13 05:01:13 +01:00
|
|
|
|
2016-05-02 08:45:59 +02:00
|
|
|
// TODO(hmmmm): Decide whether this is obsolete or will be used in the future
|
|
|
|
enum BiomeType {
|
|
|
|
BIOMETYPE_NORMAL,
|
|
|
|
BIOMETYPE_LIQUID,
|
|
|
|
BIOMETYPE_NETHER,
|
|
|
|
BIOMETYPE_AETHER,
|
|
|
|
BIOMETYPE_FLAT,
|
2012-12-18 19:23:16 +01:00
|
|
|
};
|
|
|
|
|
2015-03-31 05:40:35 +02:00
|
|
|
class Biome : public ObjDef, public NodeResolver {
|
2012-11-26 03:16:48 +01:00
|
|
|
public:
|
2013-04-06 17:19:59 +02:00
|
|
|
u32 flags;
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2013-04-06 17:19:59 +02:00
|
|
|
content_t c_top;
|
|
|
|
content_t c_filler;
|
2014-11-30 05:42:02 +01:00
|
|
|
content_t c_stone;
|
2014-12-28 06:20:42 +01:00
|
|
|
content_t c_water_top;
|
2013-07-06 08:21:35 +02:00
|
|
|
content_t c_water;
|
2015-04-19 04:37:55 +02:00
|
|
|
content_t c_river_water;
|
2016-06-03 13:58:50 +02:00
|
|
|
content_t c_riverbed;
|
2013-07-06 08:21:35 +02:00
|
|
|
content_t c_dust;
|
2014-10-28 05:18:53 +01:00
|
|
|
|
2013-07-06 08:21:35 +02:00
|
|
|
s16 depth_top;
|
|
|
|
s16 depth_filler;
|
2014-12-28 06:20:42 +01:00
|
|
|
s16 depth_water_top;
|
2016-06-03 13:58:50 +02:00
|
|
|
s16 depth_riverbed;
|
2014-10-28 05:18:53 +01:00
|
|
|
|
2014-12-30 07:48:20 +01:00
|
|
|
s16 y_min;
|
|
|
|
s16 y_max;
|
2013-04-06 17:19:59 +02:00
|
|
|
float heat_point;
|
|
|
|
float humidity_point;
|
2014-12-17 09:20:17 +01:00
|
|
|
|
2015-04-16 10:12:26 +02:00
|
|
|
virtual void resolveNodeNames();
|
2012-12-18 19:23:16 +01:00
|
|
|
};
|
|
|
|
|
2016-04-28 09:43:09 +02:00
|
|
|
|
|
|
|
////
|
|
|
|
//// BiomeGen
|
|
|
|
////
|
|
|
|
|
|
|
|
enum BiomeGenType {
|
|
|
|
BIOMEGEN_ORIGINAL,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BiomeParams {
|
|
|
|
virtual void readParams(const Settings *settings) = 0;
|
|
|
|
virtual void writeParams(Settings *settings) const = 0;
|
|
|
|
virtual ~BiomeParams() {}
|
|
|
|
|
2016-06-04 07:35:37 +02:00
|
|
|
s32 seed;
|
2016-04-28 09:43:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class BiomeGen {
|
|
|
|
public:
|
|
|
|
virtual ~BiomeGen() {}
|
|
|
|
virtual BiomeGenType getType() const = 0;
|
|
|
|
|
|
|
|
// Calculates the biome at the exact position provided. This function can
|
|
|
|
// be called at any time, but may be less efficient than the latter methods,
|
|
|
|
// depending on implementation.
|
|
|
|
virtual Biome *calcBiomeAtPoint(v3s16 pos) const = 0;
|
|
|
|
|
|
|
|
// Computes any intermediate results needed for biome generation. Must be
|
|
|
|
// called before using any of: getBiomes, getBiomeAtPoint, or getBiomeAtIndex.
|
|
|
|
// Calling this invalidates the previous results stored in biomemap.
|
|
|
|
virtual void calcBiomeNoise(v3s16 pmin) = 0;
|
|
|
|
|
|
|
|
// Gets all biomes in current chunk using each corresponding element of
|
|
|
|
// heightmap as the y position, then stores the results by biome index in
|
|
|
|
// biomemap (also returned)
|
2016-06-04 09:00:45 +02:00
|
|
|
virtual biome_t *getBiomes(s16 *heightmap) = 0;
|
2016-04-28 09:43:09 +02:00
|
|
|
|
|
|
|
// Gets a single biome at the specified position, which must be contained
|
|
|
|
// in the region formed by m_pmin and (m_pmin + m_csize - 1).
|
|
|
|
virtual Biome *getBiomeAtPoint(v3s16 pos) const = 0;
|
|
|
|
|
|
|
|
// Same as above, but uses a raw numeric index correlating to the (x,z) position.
|
|
|
|
virtual Biome *getBiomeAtIndex(size_t index, s16 y) const = 0;
|
|
|
|
|
|
|
|
// Result of calcBiomes bulk computation.
|
2017-06-18 19:55:15 +02:00
|
|
|
biome_t *biomemap = nullptr;
|
2016-04-28 09:43:09 +02:00
|
|
|
|
|
|
|
protected:
|
2017-06-18 19:55:15 +02:00
|
|
|
BiomeManager *m_bmgr = nullptr;
|
2016-04-28 09:43:09 +02:00
|
|
|
v3s16 m_pmin;
|
|
|
|
v3s16 m_csize;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
////
|
|
|
|
//// BiomeGen implementations
|
|
|
|
////
|
|
|
|
|
|
|
|
//
|
|
|
|
// Original biome algorithm (Whittaker's classification + surface height)
|
|
|
|
//
|
|
|
|
|
|
|
|
struct BiomeParamsOriginal : public BiomeParams {
|
|
|
|
BiomeParamsOriginal() :
|
2016-12-02 01:57:33 +01:00
|
|
|
np_heat(50, 50, v3f(1000.0, 1000.0, 1000.0), 5349, 3, 0.5, 2.0),
|
|
|
|
np_humidity(50, 50, v3f(1000.0, 1000.0, 1000.0), 842, 3, 0.5, 2.0),
|
2016-04-28 09:43:09 +02:00
|
|
|
np_heat_blend(0, 1.5, v3f(8.0, 8.0, 8.0), 13, 2, 1.0, 2.0),
|
|
|
|
np_humidity_blend(0, 1.5, v3f(8.0, 8.0, 8.0), 90003, 2, 1.0, 2.0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void readParams(const Settings *settings);
|
|
|
|
virtual void writeParams(Settings *settings) const;
|
|
|
|
|
|
|
|
NoiseParams np_heat;
|
|
|
|
NoiseParams np_humidity;
|
|
|
|
NoiseParams np_heat_blend;
|
|
|
|
NoiseParams np_humidity_blend;
|
|
|
|
};
|
|
|
|
|
|
|
|
class BiomeGenOriginal : public BiomeGen {
|
2012-11-26 03:16:48 +01:00
|
|
|
public:
|
2016-04-28 09:43:09 +02:00
|
|
|
BiomeGenOriginal(BiomeManager *biomemgr,
|
|
|
|
BiomeParamsOriginal *params, v3s16 chunksize);
|
|
|
|
virtual ~BiomeGenOriginal();
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2016-04-28 09:43:09 +02:00
|
|
|
BiomeGenType getType() const { return BIOMEGEN_ORIGINAL; }
|
|
|
|
|
|
|
|
Biome *calcBiomeAtPoint(v3s16 pos) const;
|
|
|
|
void calcBiomeNoise(v3s16 pmin);
|
|
|
|
|
2016-06-04 09:00:45 +02:00
|
|
|
biome_t *getBiomes(s16 *heightmap);
|
2016-04-28 09:43:09 +02:00
|
|
|
Biome *getBiomeAtPoint(v3s16 pos) const;
|
|
|
|
Biome *getBiomeAtIndex(size_t index, s16 y) const;
|
|
|
|
|
|
|
|
Biome *calcBiomeFromNoise(float heat, float humidity, s16 y) const;
|
|
|
|
|
|
|
|
float *heatmap;
|
|
|
|
float *humidmap;
|
|
|
|
|
|
|
|
private:
|
|
|
|
BiomeParamsOriginal *m_params;
|
|
|
|
|
|
|
|
Noise *noise_heat;
|
|
|
|
Noise *noise_humidity;
|
|
|
|
Noise *noise_heat_blend;
|
|
|
|
Noise *noise_humidity_blend;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
////
|
|
|
|
//// BiomeManager
|
|
|
|
////
|
|
|
|
|
|
|
|
class BiomeManager : public ObjDefManager {
|
|
|
|
public:
|
2017-01-09 20:39:22 +01:00
|
|
|
BiomeManager(Server *server);
|
2015-04-17 06:52:48 +02:00
|
|
|
virtual ~BiomeManager();
|
2014-10-28 05:18:53 +01:00
|
|
|
|
2015-03-31 05:40:35 +02:00
|
|
|
const char *getObjectTitle() const
|
|
|
|
{
|
|
|
|
return "biome";
|
|
|
|
}
|
|
|
|
|
2015-04-01 05:27:19 +02:00
|
|
|
static Biome *create(BiomeType type)
|
2014-11-13 05:01:13 +01:00
|
|
|
{
|
|
|
|
return new Biome;
|
|
|
|
}
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2016-04-28 09:43:09 +02:00
|
|
|
BiomeGen *createBiomeGen(BiomeGenType type, BiomeParams *params, v3s16 chunksize)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case BIOMEGEN_ORIGINAL:
|
|
|
|
return new BiomeGenOriginal(this,
|
|
|
|
(BiomeParamsOriginal *)params, chunksize);
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static BiomeParams *createBiomeParams(BiomeGenType type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case BIOMEGEN_ORIGINAL:
|
|
|
|
return new BiomeParamsOriginal;
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-17 06:52:48 +02:00
|
|
|
virtual void clear();
|
2014-12-07 00:08:08 +01:00
|
|
|
|
2015-04-17 05:37:50 +02:00
|
|
|
private:
|
2017-01-09 20:39:22 +01:00
|
|
|
Server *m_server;
|
2016-04-28 09:43:09 +02:00
|
|
|
|
2012-11-26 03:16:48 +01:00
|
|
|
};
|
|
|
|
|
2014-11-30 05:42:02 +01:00
|
|
|
|
2016-04-28 09:43:09 +02:00
|
|
|
#endif
|