Some semi-random thoughts on terrain generation
about the new stairs in R1334. there might be a bug in there becouse i found like 20 of them but 18 were dead ends. the other 2 lead into crossings.
Reply
Thanks given by:
The stairs don't connect further yet, so dead-ends are to be expected. I've just finished the code for further connections, will be in the svn momentarily, net connection allowing.
Reply
Thanks given by:
those stairs look awsome btw. i found one floating in the air so it was made of woodBig Grin you don't see that in vanilla Smile
so then now only chests, torches, minecart tracks and cobwebs and the MineShafts are finished?
Reply
Thanks given by:
Don't forget those random ceiling blocks in the corridors. I'm a bit concerned about them, because I don't exactly know how to code that. It's not that we don't have a random generator, but so far, each chunk could be regenerated exactly as it was before; this would be the first thing that would not regenerate 100% exactly. On the other hand, if we store all of that randomness somewhere for regeneration, it's gonna eat a non-trivial amount of memory.
Reply
Thanks given by:
Maybe seed the PRNG with the seed+chunk coords?
Reply
Thanks given by:
We have two PRNGs in MCServer, MTRand and cNoise. Seeding a MTRand is a rather costly operation, definitely not good to do that too often while generating. cNoise is simple to seed, but plugins don't have access to it, so the function that uses it could not be exported to the API.

Ugh, those mineshafts go all the way to the voidTongue Better fix that.

Wanna see something fun? Try setting height generator to Flat, FlatHeight to 2 and composition generator to SameBlock. Remove all structure generators and finishers except for Mineshafts.

Code:
[Generator]
Generator=Composable
BiomeGen=Constant
HeightGen=Flat
FlatHeight=2
CompositionGen=SameBlock
Structures=MineShafts
BiomeGenCacheSize=0
ConstantBiome=Plains
HeightGenCacheSize=0
SameBlockType=stone
SameBlockBedrocked=1
Finishers=
Reply
Thanks given by:
lol look what i found:   

EDIT:
also all the chest are facing the same direction.
Reply
Thanks given by:
Floating RailBig Grin


Attached Files Thumbnail(s)
   
Reply
Thanks given by:
Yeah, there's no way to get rid of it - if a Mineshaft places tracks alright and then something else carves through the underlying block.
However, it's possible to make a finisher that will fix this (and possible floating torches).
Reply
Thanks given by:
Is it just me, or are there a bit too many torches in the abandoned mineshafts? And they seem a bit too scarce.
Reply
Thanks given by:




Users browsing this thread: 1 Guest(s)