From 69e7cd9b5b36783ec83a663789a95a3c512809c4 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sat, 15 Jan 2011 15:55:03 +0200 Subject: backing up working heightmap.{h,cpp} --- src/heightmap.cpp | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) (limited to 'src/heightmap.cpp') diff --git a/src/heightmap.cpp b/src/heightmap.cpp index 6e785fcc5..2f7ecc4dc 100644 --- a/src/heightmap.cpp +++ b/src/heightmap.cpp @@ -248,8 +248,7 @@ void FixedHeightmap::generateContinued(f32 randmax, f32 randfactor, s16 a = m_blocksize; // Check that a is a power of two - if((a & (a-1)) != 0) - throw; + assert((a & (a-1)) == 0); // Overwrite with GROUNDHEIGHT_NOTFOUND_SETVALUE for(s16 y=0; y<=a; y++){ @@ -263,7 +262,7 @@ void FixedHeightmap::generateContinued(f32 randmax, f32 randfactor, Seed borders from master heightmap NOTE: Does this actually have any effect on the output? */ - struct SeedSpec + /*struct SeedSpec { v2s16 neighbour_start; v2s16 heightmap_start; @@ -307,7 +306,7 @@ void FixedHeightmap::generateContinued(f32 randmax, f32 randfactor, hpos += seeds[i].dir; npos += seeds[i].dir; } - } + }*/ /*dstream<<"borders seeded:"<getValue(p+v2s16(0,0)), - m_base_generator->getValue(p+v2s16(1,0)), - m_base_generator->getValue(p+v2s16(1,1)), - m_base_generator->getValue(p+v2s16(0,1)), - }; + if(m_palist) + { + //TODO: palist must be taken into account in generateContinued. + // It is almost useless in here. + s32 div = 2 * 16; + Settings *attr = m_palist->getNearAttr(p / div); + assert(attr); + corners[0] = attr->getFloat("baseheight"); + corners[1] = attr->getFloat("baseheight"); + corners[2] = attr->getFloat("baseheight"); + corners[3] = attr->getFloat("baseheight"); + } + else + { + corners[0] = m_base_generator->getValue(p+v2s16(0,0)); + corners[1] = m_base_generator->getValue(p+v2s16(1,0)); + corners[2] = m_base_generator->getValue(p+v2s16(1,1)); + corners[3] = m_base_generator->getValue(p+v2s16(0,1)); + } f32 randmax = m_randmax_generator->getValue(p); f32 randfactor = m_randfactor_generator->getValue(p); @@ -829,7 +843,7 @@ UnlimitedHeightmap * UnlimitedHeightmap::deSerialize(std::istream &is) ValueGenerator *basegen = new ConstantGenerator(basevalue); UnlimitedHeightmap *hm = new UnlimitedHeightmap - (blocksize, maxgen, factorgen, basegen); + (blocksize, maxgen, factorgen, basegen, NULL); for(u32 i=0; i