summaryrefslogtreecommitdiffstats
path: root/source/Ravines.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-23 22:14:04 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-23 22:14:04 +0200
commit881ad8d8dbed920c00ea750fb809797456e0b4fc (patch)
treea24d6e094842a952e5ad5b8739fba52ceb36ba7d /source/Ravines.h
parentSource files cleanup: Protocol-related files in a separate subfolder (diff)
downloadcuberite-881ad8d8dbed920c00ea750fb809797456e0b4fc.tar
cuberite-881ad8d8dbed920c00ea750fb809797456e0b4fc.tar.gz
cuberite-881ad8d8dbed920c00ea750fb809797456e0b4fc.tar.bz2
cuberite-881ad8d8dbed920c00ea750fb809797456e0b4fc.tar.lz
cuberite-881ad8d8dbed920c00ea750fb809797456e0b4fc.tar.xz
cuberite-881ad8d8dbed920c00ea750fb809797456e0b4fc.tar.zst
cuberite-881ad8d8dbed920c00ea750fb809797456e0b4fc.zip
Diffstat (limited to 'source/Ravines.h')
-rw-r--r--source/Ravines.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/source/Ravines.h b/source/Ravines.h
deleted file mode 100644
index 2f32e3edc..000000000
--- a/source/Ravines.h
+++ /dev/null
@@ -1,53 +0,0 @@
-
-// Ravines.h
-
-// Interfaces to the cStructGenRavines class representing the ravine structure generator
-
-
-
-
-
-#pragma once
-
-#include "cChunkGenerator.h"
-#include "cNoise.h"
-
-
-
-
-
-class cStructGenRavines :
- public cStructureGen
-{
-public:
- cStructGenRavines(int a_Seed, int a_Size);
- ~cStructGenRavines();
-
-protected:
- class cRavine; // fwd: Ravines.cpp
- typedef std::list<cRavine *> cRavines;
-
- cNoise m_Noise;
- int m_Size; // Max size, in blocks, of the ravines generated
- cRavines m_Cache;
-
- /// Clears everything from the cache
- void ClearCache(void);
-
- /// Returns all ravines that *may* intersect the given chunk. All the ravines are valid until the next call to this function.
- void GetRavinesForChunk(int a_ChunkX, int a_ChunkZ, cRavines & a_Ravines);
-
- // cStructureGen override:
- virtual void GenStructures(
- int a_ChunkX, int a_ChunkZ,
- cChunkDef::BlockTypes & a_BlockTypes, // Block types to read and change
- cChunkDef::BlockNibbles & a_BlockMeta, // Block meta to read and change
- cChunkDef::HeightMap & a_HeightMap, // Height map to read and change by the current data
- cEntityList & a_Entities, // Entities may be added or deleted
- cBlockEntityList & a_BlockEntities // Block entities may be added or deleted
- ) override;
-} ;
-
-
-
-