BiomesOPlenty/common/biomesoplenty/biomes/vanilla/BiomeGenDesertNew.java

104 lines
2.6 KiB
Java
Raw Normal View History

2013-09-14 10:16:39 +00:00
package biomesoplenty.biomes.vanilla;
2013-05-03 13:00:44 +00:00
2013-07-20 17:34:18 +00:00
import java.awt.Color;
2013-05-03 13:00:44 +00:00
import java.util.Random;
import net.minecraft.block.Block;
import net.minecraft.world.World;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraft.world.gen.feature.WorldGenDesertWells;
import biomesoplenty.api.Blocks;
2013-09-14 10:16:39 +00:00
import biomesoplenty.biomes.BiomeDecoratorBOP;
import biomesoplenty.configuration.configfile.BOPConfigurationMisc;
2013-11-04 01:07:54 +00:00
import biomesoplenty.interfaces.IBOPFog;
2013-05-03 13:00:44 +00:00
2013-11-04 01:07:54 +00:00
public class BiomeGenDesertNew extends BiomeGenBase implements IBOPFog
2013-05-03 13:00:44 +00:00
{
2013-05-31 10:34:02 +00:00
private BiomeDecoratorBOP customBiomeDecorator;
2013-05-03 13:00:44 +00:00
public BiomeGenDesertNew(int par1)
2013-05-31 10:34:02 +00:00
{
super(par1);
spawnableCreatureList.clear();
topBlock = (byte)Block.sand.blockID;
fillerBlock = (byte)Block.sand.blockID;
theBiomeDecorator = new BiomeDecoratorBOP(this);
customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator;
customBiomeDecorator.treesPerChunk = -999;
customBiomeDecorator.deadBushPerChunk = 2;
2013-07-20 17:34:18 +00:00
customBiomeDecorator.reedsPerChunk = -999;
customBiomeDecorator.cactiPerChunk = 5;
2013-05-31 10:34:02 +00:00
customBiomeDecorator.desertSproutsPerChunk = 1;
2013-07-20 17:34:18 +00:00
customBiomeDecorator.tinyCactiPerChunk = 2;
2013-05-31 10:34:02 +00:00
customBiomeDecorator.generateQuicksand = true;
2013-07-20 17:34:18 +00:00
customBiomeDecorator.aloePerChunk = 1;
2013-05-31 10:34:02 +00:00
}
2013-05-03 13:00:44 +00:00
2013-05-31 10:34:02 +00:00
@Override
public void decorate(World par1World, Random par2Random, int par3, int par4)
{
super.decorate(par1World, par2Random, par3, par4);
int var55 = 12 + par2Random.nextInt(6);
for (int var66 = 0; var66 < var55; ++var66)
{
int var77 = par3 + par2Random.nextInt(16);
int var88 = par2Random.nextInt(28) + 4;
int var99 = par4 + par2Random.nextInt(16);
int var100 = par1World.getBlockId(var77, var88, var99);
if (var100 == Block.stone.blockID)
{
par1World.setBlock(var77, var88, var99, Blocks.amethystOre.get().blockID, 2, 2);
}
}
2013-05-03 13:00:44 +00:00
2013-05-31 10:34:02 +00:00
if (par2Random.nextInt(1000) == 0)
{
int var5 = par3 + par2Random.nextInt(16) + 8;
int var6 = par4 + par2Random.nextInt(16) + 8;
WorldGenDesertWells var7 = new WorldGenDesertWells();
var7.generate(par1World, par2Random, var5, par1World.getHeightValue(var5, var6) + 1, var6);
}
}
2013-07-20 17:34:18 +00:00
2013-11-04 01:07:54 +00:00
@Override
public int getFogColour()
{
return 15060363;
}
@Override
public float getFogCloseness()
{
return 1.0F;
}
2013-07-20 17:34:18 +00:00
/**
* takes temperature, returns color
*/
@Override
public int getSkyColorByTemp(float par1)
{
2013-09-14 10:16:39 +00:00
if (BOPConfigurationMisc.skyColors)
2013-11-04 01:07:54 +00:00
return 10214353;
2013-07-20 17:34:18 +00:00
else
{
par1 /= 3.0F;
if (par1 < -1.0F)
{
par1 = -1.0F;
}
if (par1 > 1.0F)
{
par1 = 1.0F;
}
return Color.getHSBColor(0.62222224F - par1 * 0.05F, 0.5F + par1 * 0.1F, 1.0F).getRGB();
}
}
2013-05-03 13:00:44 +00:00
}