Cuberite Forum
Classic composition generator - Printable Version

+- Cuberite Forum (https://forum.cuberite.org)
+-- Forum: Cuberite (https://forum.cuberite.org/forum-4.html)
+--- Forum: Development (https://forum.cuberite.org/forum-13.html)
+--- Thread: Classic composition generator (/thread-472.html)

Pages: 1 2


Classic composition generator - cedeel - 06-08-2012

I have made some of the parameters settable in the ini file for local testing.
I was wondering if these settings can go into trunk, since they default to the current values.

It's mainly useful for generating entire worlds of the same composition, but with different layers compared to SameBlock.


RE: Classic composition generator - xoft - 06-08-2012

The Classic generators were meant to be as much compatible with the original MCServer-generated terrain as possible, I didn't plan on extending them at all. If you think that your addition is useful, feel free to commit it. I would appreciate, though, if you documented its settings in the wiki - we're trying to make at least the world.ini part up to date Smile
Note that now that Biomal composition is finished, Classic os more or less dead - I don't think many people would use it, anyway.


RE: Classic composition generator - cedeel - 06-08-2012

I think it's still useful for "different" kinds of worlds, since it'll allow a bit more customization, and will be able to create an entire world with one composition.


RE: Classic composition generator - Boo - 06-08-2012

how to generated a flat map? i cant find this...


RE: Classic composition generator - Luksor - 06-08-2012

Quote:HeightGen=Flat
This should generate flat terrain, but it generates an massive ocean for me.


RE: Classic composition generator - cedeel - 06-08-2012

(06-08-2012, 08:02 PM)Luksor Wrote:
Quote:HeightGen=Flat
This should generate flat terrain, but it generates an massive ocean for me.

According to the wiki, you should also set FlatHeight to a value. The default is 5, which would usually be water.


RE: Classic composition generator - Taugeshtu - 06-08-2012

Quote:The default is 5, which would usually be water.
He could also use Classic composition generator and lower sea level Smile


RE: Classic composition generator - xoft - 06-08-2012

I added another example to the wiki, specifically to match minecraft's Superflat mode.


RE: Classic composition generator - Boo - 06-09-2012

Code:
[SpawnPosition]
X=39.000000
Y=256.000000
Z=203.000000

[GameMode]
GameMode=1

[Storage]
Schema=Default

[Seed]
HeightGen=Flat
Seed=415913080

Don`t work


RE: Classic composition generator - Taugeshtu - 06-09-2012

Code:
[Seed]
HeightGen=Flat
Seed=415913080
This is wrong. HeighGen should be in [Generator] section. Try following:
Code:
[SpawnPosition]
X=39.000000
Y=256.000000
Z=203.000000

[GameMode]
GameMode=1

[Storage]
Schema=Default

[Seed]
Seed=415913080

[Generator]
BiomeGen=Constant
ConstantBiome=Plains

HeightGen=Flat
FlatHeight=5
CompositionGen=Classic
ClassicSeaLevel=0
ClassicBeachHeight=-1

Structures=
Finishers=

And don't forget to regenerate world! (clear world folder except world.ini or use ChunkWorx plugin)