Some semi-random thoughts on terrain generation
You need to set the MCServer as the startup project - right-click it and choose Set as Startup Project from the menu:
[Image: vs2013_set_as_startup_project.png]
Reply
Thanks given by:
Thanks it starts now. The only problem I have now is that it doesn't seem to have permission to have read/write access or it's on a really weird location without any files.
Reply
Thanks given by:
Hmm weird. I got the debugger to load the BiomalNoise3D generator, but I don't get those huge mountains and stuff there, and thus I don't get a crash.
Reply
Thanks given by:
I don't think this stacktrace is going to help much:
Code:
    MCServer_debug.exe!cBlockArea::Clear() Line 298    C++
    MCServer_debug.exe!cBlockArea::~cBlockArea() Line 290    C++
    MCServer_debug.exe!cChunkDesc::~cChunkDesc() Line 41    C++
    MCServer_debug.exe!cChunkGenerator::DoGenerate(int a_ChunkX, int a_ChunkZ) Line 301    C++
    MCServer_debug.exe!cChunkGenerator::Execute() Line 277    C++
    MCServer_debug.exe!cIsThread::thrExecute(void * a_Param) Line 78    C++
    [External Code]
But I have a feeling it has something to do with a finisher, because I've only noticed the crash with Taiga.
Reply
Thanks given by:
Ok I think I found the problem. The TallGrass generator tries to generate above 256 which causes it to crash.
Reply
Thanks given by:
Forest:
[Image: 5b9e66597c.jpg]
Code:
case biForest:           a_HeightAmp = 0.27f;  a_MidPoint = 62; break;
Reply
Thanks given by:
Isn't that a bit too mild for a forest? I'd have expected a bit more hills.
Reply
Thanks given by:
Then how about this:
[Image: cdad45141b.jpg]
Code:
case biForest:           a_HeightAmp = 0.23f;  a_MidPoint = 62; break;
Reply
Thanks given by:
Is the water at the bottom part of the forest biome? If so, we might want to bring it up a block, forest normally doesn't have water in it, except for explicit water lakes.
Reply
Thanks given by:
Yes that is also part of the forest biome. I guess setting a_MidPoint to 63 or 64 should do the trick?
Reply
Thanks given by:




Users browsing this thread: 1 Guest(s)