04-01-2013, 02:43 AM
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.
Some semi-random thoughts on terrain generation
|
04-01-2013, 02:43 AM
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.
04-01-2013, 02:49 AM
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.
those stairs look awsome btw. i found one floating in the air so it was made of wood you don't see that in vanilla
so then now only chests, torches, minecart tracks and cobwebs and the MineShafts are finished?
04-01-2013, 03:13 AM
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.
04-01-2013, 03:27 AM
Maybe seed the PRNG with the seed+chunk coords?
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 void 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]
04-01-2013, 11:26 PM
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).
04-11-2013, 05:54 AM
Is it just me, or are there a bit too many torches in the abandoned mineshafts? And they seem a bit too scarce.
|
« Next Oldest | Next Newest »
|