2013-05-07 18:33:31 +00:00
|
|
|
package biomesoplenty.world.layer;
|
|
|
|
|
|
|
|
import net.minecraft.world.WorldType;
|
|
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
|
|
import net.minecraftforge.event.terraingen.WorldTypeEvent;
|
|
|
|
|
|
|
|
public abstract class BiomeLayer
|
|
|
|
{
|
|
|
|
private long worldGenSeed;
|
|
|
|
protected BiomeLayer parent;
|
|
|
|
private long chunkSeed;
|
|
|
|
private long baseSeed;
|
|
|
|
|
2013-05-18 15:06:30 +00:00
|
|
|
//dim: 0 = surface, 1 = hell, 2 = promised
|
|
|
|
public static BiomeLayer[] initializeAllBiomeGenerators(long seed, WorldType worldtype, int dim)
|
2013-05-07 18:33:31 +00:00
|
|
|
{
|
2013-05-26 12:17:58 +00:00
|
|
|
if(dim == 0)
|
2013-05-18 16:35:01 +00:00
|
|
|
{
|
2013-05-26 12:17:58 +00:00
|
|
|
BiomeLayer obj = new BiomeLayerCreate(1L, true);
|
|
|
|
obj = new BiomeLayerFuzzyZoom(2000L, (BiomeLayer)(obj));
|
|
|
|
obj = new BiomeLayerIsland(1L, (BiomeLayer)(obj));
|
|
|
|
obj = new BiomeLayerZoom(2001L, (BiomeLayer)(obj));
|
|
|
|
obj = new BiomeLayerIsland(2L, (BiomeLayer)(obj));
|
|
|
|
obj = new BiomeLayerZoom(2002L, (BiomeLayer)(obj));
|
|
|
|
obj = new BiomeLayerIsland(3L, (BiomeLayer)(obj));
|
|
|
|
obj = new BiomeLayerZoom(2003L, (BiomeLayer)(obj));
|
|
|
|
obj = new BiomeLayerIsland(4L, (BiomeLayer)(obj));
|
|
|
|
|
|
|
|
byte size = 4;
|
|
|
|
|
|
|
|
BiomeLayer obj1 = obj;
|
|
|
|
obj1 = BiomeLayerZoom.func_75915_a(1000L, ((BiomeLayer)(obj1)), 0);
|
|
|
|
obj1 = new BiomeLayerRiverInit(100L, ((BiomeLayer)(obj1)));
|
|
|
|
obj1 = BiomeLayerZoom.func_75915_a(1000L, ((BiomeLayer)(obj1)), size + 2);
|
|
|
|
obj1 = new BiomeLayerRiver(1L, ((BiomeLayer)(obj1)));
|
|
|
|
obj1 = new BiomeLayerSmooth(1000L, ((BiomeLayer)(obj1)));
|
|
|
|
BiomeLayer obj2 = obj;
|
|
|
|
obj2 = BiomeLayerZoom.func_75915_a(1000L, ((BiomeLayer)(obj2)), 0);
|
|
|
|
obj2 = new BiomeLayerBiomes(200L, ((BiomeLayer)(obj2)), worldtype, 0);
|
|
|
|
obj2 = BiomeLayerZoom.func_75915_a(1000L, ((BiomeLayer)(obj2)), 2);
|
|
|
|
//obj2 = new BWG4LayerHills(1000L, ((BiomeLayer)(obj2)), generatorSettings);
|
|
|
|
obj2 = new BiomeLayerZoom(1000, ((BiomeLayer)(obj2)));
|
|
|
|
//obj2 = new BiomeLayerShore(1000L, ((BiomeLayer)(obj2)));
|
|
|
|
|
|
|
|
for (int i = 0 + 1; i < size; i++)
|
|
|
|
{
|
|
|
|
obj2 = new BiomeLayerZoom(1000 + i, ((BiomeLayer)(obj2)));
|
|
|
|
}
|
|
|
|
|
|
|
|
obj2 = new BiomeLayerSmooth(1000L, ((BiomeLayer)(obj2)));
|
|
|
|
obj2 = new BiomeLayerRiverMix(100L, ((BiomeLayer)(obj2)), ((BiomeLayer)(obj1)));
|
|
|
|
BiomeLayerRiverMix bwg4layerrivermix = ((BiomeLayerRiverMix)(obj2));
|
|
|
|
BiomeLayerVoronoiZoom genlayervoronoizoom = new BiomeLayerVoronoiZoom(10L, ((BiomeLayer)(obj2)));
|
|
|
|
((BiomeLayer)(obj2)).initWorldGenSeed(seed);
|
|
|
|
genlayervoronoizoom.initWorldGenSeed(seed);
|
|
|
|
return (new BiomeLayer[]
|
|
|
|
{
|
|
|
|
obj2, genlayervoronoizoom, bwg4layerrivermix
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int biomesize = 3;
|
|
|
|
if(dim == 1)
|
|
|
|
{
|
|
|
|
biomesize = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Hell and promised biome gen
|
|
|
|
BiomeLayer obj = new BiomeLayerCreate(1L, false);
|
|
|
|
obj = new BiomeLayerFuzzyZoom(2000L, (BiomeLayer)(obj));
|
|
|
|
for(int i = 1; i < 3; i++) { obj = new BiomeLayerZoom(2000L + i, (BiomeLayer)(obj)); }
|
|
|
|
obj = BiomeLayerZoom.func_75915_a(1000L, ((BiomeLayer)(obj)), 0);
|
|
|
|
obj = new BiomeLayerBiomes(200L, ((BiomeLayer)(obj)), worldtype, dim);
|
|
|
|
obj = BiomeLayerZoom.func_75915_a(1000L, ((BiomeLayer)(obj)), 2);
|
|
|
|
for(int j = 0; j < biomesize; j++) { obj = new BiomeLayerZoom(1000L + j, (BiomeLayer)(obj)); }
|
|
|
|
BiomeLayerVoronoiZoom genlayervoronoizoom = new BiomeLayerVoronoiZoom(10L, ((BiomeLayer)(obj)));
|
|
|
|
((BiomeLayer)(obj)).initWorldGenSeed(seed);
|
|
|
|
genlayervoronoizoom.initWorldGenSeed(seed);
|
|
|
|
return (new BiomeLayer[] { obj, genlayervoronoizoom });
|
2013-05-18 16:35:01 +00:00
|
|
|
}
|
2013-05-07 18:33:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public BiomeLayer(long seed)
|
|
|
|
{
|
|
|
|
this.baseSeed = seed;
|
|
|
|
this.baseSeed *= this.baseSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.baseSeed += seed;
|
|
|
|
this.baseSeed *= this.baseSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.baseSeed += seed;
|
|
|
|
this.baseSeed *= this.baseSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.baseSeed += seed;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void initWorldGenSeed(long seed)
|
|
|
|
{
|
|
|
|
this.worldGenSeed = seed;
|
|
|
|
|
|
|
|
if (this.parent != null)
|
|
|
|
{
|
|
|
|
this.parent.initWorldGenSeed(seed);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.worldGenSeed *= this.worldGenSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.worldGenSeed += this.baseSeed;
|
|
|
|
this.worldGenSeed *= this.worldGenSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.worldGenSeed += this.baseSeed;
|
|
|
|
this.worldGenSeed *= this.worldGenSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.worldGenSeed += this.baseSeed;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void initChunkSeed(long par1, long par3)
|
|
|
|
{
|
|
|
|
this.chunkSeed = this.worldGenSeed;
|
|
|
|
this.chunkSeed *= this.chunkSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.chunkSeed += par1;
|
|
|
|
this.chunkSeed *= this.chunkSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.chunkSeed += par3;
|
|
|
|
this.chunkSeed *= this.chunkSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.chunkSeed += par1;
|
|
|
|
this.chunkSeed *= this.chunkSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.chunkSeed += par3;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected int nextInt(int par1)
|
|
|
|
{
|
|
|
|
int j = (int)((this.chunkSeed >> 24) % (long)par1);
|
|
|
|
|
|
|
|
if (j < 0)
|
|
|
|
{
|
|
|
|
j += par1;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.chunkSeed *= this.chunkSeed * 6364136223846793005L + 1442695040888963407L;
|
|
|
|
this.chunkSeed += this.worldGenSeed;
|
|
|
|
return j;
|
|
|
|
}
|
|
|
|
|
|
|
|
public abstract int[] getInts(int i, int j, int k, int l);
|
|
|
|
|
|
|
|
public static byte getModdedBiomeSize(WorldType worldType, byte original)
|
|
|
|
{
|
|
|
|
WorldTypeEvent.BiomeSize event = new WorldTypeEvent.BiomeSize(worldType, original);
|
|
|
|
MinecraftForge.TERRAIN_GEN_BUS.post(event);
|
|
|
|
return event.newSize;
|
|
|
|
}
|
|
|
|
}
|