diff options
author | madmaxoft <github@xoft.cz> | 2013-11-27 21:42:13 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-11-27 21:42:34 +0100 |
commit | bec27617a2d335cdb4a1ae350962ca6f92489471 (patch) | |
tree | 95837d7ccd814146da93da3475578fb104ebc5b0 /src/Generating/BioGen.h | |
parent | Removed some useless options. (diff) | |
download | cuberite-bec27617a2d335cdb4a1ae350962ca6f92489471.tar cuberite-bec27617a2d335cdb4a1ae350962ca6f92489471.tar.gz cuberite-bec27617a2d335cdb4a1ae350962ca6f92489471.tar.bz2 cuberite-bec27617a2d335cdb4a1ae350962ca6f92489471.tar.lz cuberite-bec27617a2d335cdb4a1ae350962ca6f92489471.tar.xz cuberite-bec27617a2d335cdb4a1ae350962ca6f92489471.tar.zst cuberite-bec27617a2d335cdb4a1ae350962ca6f92489471.zip |
Diffstat (limited to 'src/Generating/BioGen.h')
-rw-r--r-- | src/Generating/BioGen.h | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/src/Generating/BioGen.h b/src/Generating/BioGen.h index bc70bfab2..892168bb6 100644 --- a/src/Generating/BioGen.h +++ b/src/Generating/BioGen.h @@ -16,6 +16,7 @@ Interfaces to the various biome generators: #include "ComposableGenerator.h" #include "../Noise.h" +#include "../VoronoiMap.h" @@ -123,15 +124,13 @@ class cBioGenVoronoi : public: cBioGenVoronoi(int a_Seed) : - m_Noise(a_Seed) + m_Voronoi(a_Seed) { } protected: - int m_CellSize; + cVoronoiMap m_Voronoi; - cNoise m_Noise; - // cBiomeGen overrides: virtual void GenBiomes(int a_ChunkX, int a_ChunkZ, cChunkDef::BiomeMap & a_BiomeMap) override; virtual void InitializeBiomeGen(cIniFile & a_IniFile) override; @@ -144,16 +143,28 @@ protected: class cBioGenDistortedVoronoi : - public cBioGenVoronoi + public cBiomeGenList { - typedef cBioGenVoronoi super; + typedef cBiomeGenList super; + public: cBioGenDistortedVoronoi(int a_Seed) : - cBioGenVoronoi(a_Seed) + m_Noise(a_Seed), + m_Voronoi(a_Seed), + m_CellSize(0) { } protected: + /// Noise used for the distortion + cNoise m_Noise; + + /// The underlying Voronoi map of the biomes + cVoronoiMap m_Voronoi; + + /// Size of the Voronoi cells, also used for distortion amplitude + int m_CellSize; + // cBiomeGen overrides: virtual void GenBiomes(int a_ChunkX, int a_ChunkZ, cChunkDef::BiomeMap & a_BiomeMap) override; virtual void InitializeBiomeGen(cIniFile & a_IniFile) override; |