2012-07-22 11:51:38 -07:00
|
|
|
|
|
|
|
// Caves.h
|
|
|
|
|
|
|
|
// Interfaces to the various cave structure generators:
|
|
|
|
// - cStructGenWormNestCaves
|
|
|
|
// - cStructGenMarbleCaves
|
|
|
|
// - cStructGenNetherCaves
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2013-01-25 02:12:29 -08:00
|
|
|
#include "ComposableGenerator.h"
|
2012-09-23 15:09:57 -07:00
|
|
|
#include "../Noise.h"
|
2012-07-22 11:51:38 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cStructGenMarbleCaves :
|
|
|
|
public cStructureGen
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cStructGenMarbleCaves(int a_Seed) : m_Seed(a_Seed) {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
int m_Seed;
|
|
|
|
|
|
|
|
// cStructureGen override:
|
2013-03-17 10:55:03 -07:00
|
|
|
virtual void GenStructures(cChunkDesc & a_ChunkDesc) override;
|
2012-07-22 11:51:38 -07:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cStructGenDualRidgeCaves :
|
|
|
|
public cStructureGen
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cStructGenDualRidgeCaves(int a_Seed, float a_Threshold) :
|
2013-03-17 10:55:03 -07:00
|
|
|
m_Noise1(a_Seed),
|
|
|
|
m_Noise2(2 * a_Seed + 19999),
|
2012-07-22 11:51:38 -07:00
|
|
|
m_Seed(a_Seed),
|
|
|
|
m_Threshold(a_Threshold)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2013-03-17 10:55:03 -07:00
|
|
|
cNoise m_Noise1;
|
|
|
|
cNoise m_Noise2;
|
|
|
|
int m_Seed;
|
|
|
|
float m_Threshold;
|
2012-07-22 11:51:38 -07:00
|
|
|
|
|
|
|
// cStructureGen override:
|
2013-03-17 10:55:03 -07:00
|
|
|
virtual void GenStructures(cChunkDesc & a_ChunkDesc) override;
|
2012-07-22 11:51:38 -07:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cStructGenWormNestCaves :
|
|
|
|
public cStructureGen
|
|
|
|
{
|
|
|
|
public:
|
2012-07-27 09:47:55 -07:00
|
|
|
cStructGenWormNestCaves(int a_Seed, int a_Size = 64, int a_Grid = 96, int a_MaxOffset = 128) :
|
2012-07-22 11:51:38 -07:00
|
|
|
m_Noise(a_Seed),
|
2012-07-27 09:47:55 -07:00
|
|
|
m_Size(a_Size),
|
|
|
|
m_Grid(a_Grid),
|
|
|
|
m_MaxOffset(a_MaxOffset)
|
2012-07-22 11:51:38 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~cStructGenWormNestCaves();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
class cCaveSystem; // fwd: Caves.cpp
|
2012-07-27 09:47:55 -07:00
|
|
|
typedef std::list<cCaveSystem *> cCaveSystems;
|
2012-07-22 11:51:38 -07:00
|
|
|
|
2012-07-27 09:47:55 -07:00
|
|
|
cNoise m_Noise;
|
|
|
|
int m_Size; // relative size of the cave systems' caves. Average number of blocks of each initial tunnel
|
|
|
|
int m_MaxOffset; // maximum offset of the cave nest origin from the grid cell the nest belongs to
|
|
|
|
int m_Grid; // average spacing of the nests
|
|
|
|
cCaveSystems m_Cache;
|
2012-07-22 11:51:38 -07:00
|
|
|
|
|
|
|
/// Clears everything from the cache
|
|
|
|
void ClearCache(void);
|
|
|
|
|
|
|
|
/// Returns all caves that *may* intersect the given chunk. All the caves are valid until the next call to this function.
|
2012-07-27 09:47:55 -07:00
|
|
|
void GetCavesForChunk(int a_ChunkX, int a_ChunkZ, cCaveSystems & a_Caves);
|
2012-07-22 11:51:38 -07:00
|
|
|
|
|
|
|
// cStructGen override:
|
2013-03-17 10:55:03 -07:00
|
|
|
virtual void GenStructures(cChunkDesc & a_ChunkDesc) override;
|
2012-07-22 11:51:38 -07:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|