From e8e678e1b73adb3cc5987e6808cbbd633b6805e6 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 11 Nov 2012 15:35:49 +0000 Subject: Added DeadBushes finisher (initial patch by STR_Warrior; DeathBushes FTW!) git-svn-id: http://mc-server.googlecode.com/svn/trunk@1037 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Generating/FinishGen.h | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) (limited to 'source/Generating/FinishGen.h') diff --git a/source/Generating/FinishGen.h b/source/Generating/FinishGen.h index ecf26e5fb..6a2367f38 100644 --- a/source/Generating/FinishGen.h +++ b/source/Generating/FinishGen.h @@ -7,6 +7,8 @@ - cFinishGenSprinkleFoliage - cFinishGenLilypads - cFinishGenBottomLava + - cFinishGenPreSimulator + - cFinishGenDeadBushes */ @@ -59,6 +61,7 @@ protected: + class cFinishGenSprinkleFoliage : public cFinishGen { @@ -150,7 +153,6 @@ protected: - class cFinishGenPreSimulator : public cFinishGen { @@ -190,3 +192,34 @@ protected: + +class cFinishGenDeadBushes : + public cFinishGen +{ +public: + cFinishGenDeadBushes(int a_Seed) : + m_Noise(a_Seed) + { + } + +protected: + cNoise m_Noise; + + int GetNumDeadBushes(const cChunkDef::BiomeMap & a_BiomeMap); + + // cFinishGen override: + virtual void GenFinish( + 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 + const cChunkDef::BiomeMap & a_BiomeMap, // Biomes to adhere to + cEntityList & a_Entities, // Entities may be added or deleted + cBlockEntityList & a_BlockEntities // Block entities may be added or deleted + ) override; +} ; + + + + + -- cgit v1.2.3