mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-13 09:15:59 -04:00
Add WIP plains biome
This commit is contained in:
parent
3a5a544ff5
commit
ec60e0117d
@ -22,7 +22,7 @@ namespace MCGalaxy.Generator
|
||||
{
|
||||
public enum MapGenBiomeName
|
||||
{
|
||||
Forest, Arctic, Desert, Hell, Swamp, Mine, Sandy
|
||||
Forest, Arctic, Desert, Hell, Swamp, Mine, Sandy, Plains
|
||||
}
|
||||
|
||||
/// <summary> Contains environment settings and the types of blocks that are used to generate a map </summary>
|
||||
@ -61,6 +61,7 @@ namespace MCGalaxy.Generator
|
||||
case MapGenBiomeName.Swamp: return Swamp;
|
||||
case MapGenBiomeName.Mine: return Mine;
|
||||
case MapGenBiomeName.Sandy: return Sandy;
|
||||
case MapGenBiomeName.Plains: return Plains;
|
||||
}
|
||||
return Forest;
|
||||
}
|
||||
@ -170,5 +171,18 @@ namespace MCGalaxy.Generator
|
||||
Border = Block.Sand,
|
||||
TreeType = "Palm",
|
||||
};
|
||||
|
||||
public static MapGenBiome Plains = new MapGenBiome()
|
||||
{
|
||||
Surface = Block.Grass,
|
||||
Ground = Block.Dirt,
|
||||
Cliff = Block.Stone,
|
||||
Water = Block.Air,
|
||||
Bedrock = Block.Stone,
|
||||
BeachSandy = Block.Grass,
|
||||
BeachRocky = Block.Grass,
|
||||
TreeType = "", // "use default for generator"
|
||||
Horizon = Block.Grass,
|
||||
};
|
||||
}
|
||||
}
|
@ -58,6 +58,7 @@ namespace MCGalaxy.Generator.fCraft {
|
||||
bCliff = biome.Cliff;
|
||||
|
||||
args.AddWater = biome.Water != Block.Air;
|
||||
args.AddTrees = biome.TreeType != null;
|
||||
|
||||
// TODO: temp hack, need a better solution
|
||||
if (args.Biome == MapGenBiomeName.Arctic) groundThickness = 1;
|
||||
@ -351,8 +352,8 @@ namespace MCGalaxy.Generator.fCraft {
|
||||
if( (map.GetBlock( (ushort)nx, (ushort)ny, (ushort)nz ) == bGroundSurface) && slopemap[nx * length + nz] < .5 ) {
|
||||
// Pick a random height for the tree between Min and Max,
|
||||
// discarding this tree if it would breach the top of the map
|
||||
int nh;
|
||||
if( (nh = rn.Next( minHeight, maxHeight + 1 )) + ny + nh / 2 > map.Height )
|
||||
int nh = rn.Next( minHeight, maxHeight + 1 );
|
||||
if( ny + nh + nh / 2 > map.Height )
|
||||
continue;
|
||||
|
||||
// Generate the trunk of the tree
|
||||
@ -413,7 +414,6 @@ namespace MCGalaxy.Generator.fCraft {
|
||||
args.SnowAltitude = (int)Math.Round(args.SnowAltitude * ratio);
|
||||
|
||||
args.Biome = theme;
|
||||
args.AddTrees = theme == MapGenBiomeName.Forest;
|
||||
args.WaterLevel = (lvl.Height - 1) / 2;
|
||||
|
||||
new fCraftMapGen(args).Generate(lvl);
|
||||
|
Loading…
x
Reference in New Issue
Block a user