]> git.lizzy.rs Git - minetest.git/blobdiff - src/mg_biome.h
Make limiting of the reflow liquids queue size optional
[minetest.git] / src / mg_biome.h
index 7a62998e31f1025c24d52420c7a0e1181a231944..f1539dacb9e0b44c93353437701aba39d9f6afd1 100644 (file)
@@ -21,7 +21,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #define MG_BIOME_HEADER
 
 #include "mapgen.h"
-#include "noise.h"
+
+struct NoiseParams;
 
 enum BiomeType
 {
@@ -32,10 +33,6 @@ enum BiomeType
        BIOME_TYPE_FLAT
 };
 
-extern NoiseParams nparams_biome_def_heat;
-extern NoiseParams nparams_biome_def_humidity;
-
-
 class Biome : public GenElement {
 public:
        u32 flags;
@@ -61,9 +58,6 @@ class BiomeManager : public GenElementManager {
        static const char *ELEMENT_TITLE;
        static const size_t ELEMENT_LIMIT = 0x100;
 
-       NoiseParams *np_heat;
-       NoiseParams *np_humidity;
-
        BiomeManager(IGameDef *gamedef);
        ~BiomeManager();
 
@@ -72,6 +66,8 @@ class BiomeManager : public GenElementManager {
                return new Biome;
        }
 
+       void clear();
+
        void calcBiomes(s16 sx, s16 sy, float *heat_map, float *humidity_map,
                s16 *height_map, u8 *biomeid_map);
        Biome *getBiome(float heat, float humidity, s16 y);