summaryrefslogtreecommitdiffstats
path: root/source/BioGen.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/BioGen.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/source/BioGen.h b/source/BioGen.h
index 316399436..b44d8fdf4 100644
--- a/source/BioGen.h
+++ b/source/BioGen.h
@@ -60,12 +60,23 @@ class cBioGenCheckerboard :
public cBiomeGen
{
public:
- cBioGenCheckerboard(int a_BiomeSize) : m_BiomeSize((a_BiomeSize < 8) ? 8 : a_BiomeSize) {}
+ cBioGenCheckerboard(int a_BiomeSize, const AString & a_Biomes) :
+ m_BiomeSize((a_BiomeSize < 8) ? 8 : a_BiomeSize)
+ {
+ InitializeBiomes(a_Biomes);
+ }
protected:
int m_BiomeSize;
+ // List of biomes that the generator is allowed to generate:
+ typedef std::vector<EMCSBiome> EMCSBiomes;
+ EMCSBiomes m_Biomes;
+ int m_BiomesCount;
+
+ void InitializeBiomes(const AString & a_Biomes);
+
// cBiomeGen override:
virtual void GenBiomes(int a_ChunkX, int a_ChunkZ, cChunkDef::BiomeMap & a_BiomeMap) override;
} ;