summaryrefslogtreecommitdiffstats
path: root/source/Generating/DistortedHeightmap.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-05-06 18:46:48 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-05-06 18:46:48 +0200
commit205ee49c79b2a0304278d8c75ac515199a35e8ca (patch)
treefb360e504f92ce11eec0e26dbd3b9051c851701e /source/Generating/DistortedHeightmap.h
parentFixed the stop and restart button in the manage server tab. (diff)
downloadcuberite-205ee49c79b2a0304278d8c75ac515199a35e8ca.tar
cuberite-205ee49c79b2a0304278d8c75ac515199a35e8ca.tar.gz
cuberite-205ee49c79b2a0304278d8c75ac515199a35e8ca.tar.bz2
cuberite-205ee49c79b2a0304278d8c75ac515199a35e8ca.tar.lz
cuberite-205ee49c79b2a0304278d8c75ac515199a35e8ca.tar.xz
cuberite-205ee49c79b2a0304278d8c75ac515199a35e8ca.tar.zst
cuberite-205ee49c79b2a0304278d8c75ac515199a35e8ca.zip
Diffstat (limited to '')
-rw-r--r--source/Generating/DistortedHeightmap.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/source/Generating/DistortedHeightmap.h b/source/Generating/DistortedHeightmap.h
index 83c638ce8..2b962940a 100644
--- a/source/Generating/DistortedHeightmap.h
+++ b/source/Generating/DistortedHeightmap.h
@@ -48,11 +48,9 @@ protected:
int m_CurChunkX;
int m_CurChunkZ;
- NOISE_DATATYPE m_NoiseArray[17 * 17 * NOISE_SIZE_Y];
- NOISE_DATATYPE * m_NoiseArrayX;
- NOISE_DATATYPE * m_NoiseArrayZ;
+ NOISE_DATATYPE m_DistortedHeightmap[17 * 17 * 257];
- cBiomeGen & m_BiomeGen;
+ cBiomeGen & m_BiomeGen;
cHeiGenBiomal m_UnderlyingHeiGen; // This generator provides us with base heightmap (before distortion)
cHeiGenCache m_HeightGen; // Cache above m_UnderlyingHeiGen
@@ -74,15 +72,12 @@ protected:
/// Unless the LastChunk coords are equal to coords given, prepares the internal state (noise arrays, heightmap)
void PrepareState(int a_ChunkX, int a_ChunkZ);
- /// Generates the 3D noise array using the specified noise objects
- void GenerateNoiseArray(NOISE_DATATYPE * a_NoiseArray, cNoise & a_Noise1, cNoise & a_Noise2, cNoise & a_Noise3);
+ /// Generates the m_DistortedHeightmap array for the current chunk
+ void GenerateHeightArray(void);
/// Calculates the heightmap value (before distortion) at the specified (floating-point) coords
int GetHeightmapAt(NOISE_DATATYPE a_X, NOISE_DATATYPE a_Z);
- /// Calculates the height (after distortion)
- int GetValue(int a_NoiseArrayIdx, int a_RelX, int a_RelZ);
-
/// Updates m_DistortAmpX/Z[] based on m_CurChunkX and m_CurChunkZ
void UpdateDistortAmps(void);