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

149 lines
4.0 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 19:05:38 +00:00
import java.awt.Color;
2013-05-03 13:00:44 +00:00
import java.util.Random;
import worldcore.interfaces.IWCFog;
2013-07-01 00:31:34 +00:00
import net.minecraft.block.Block;
2013-05-03 13:00:44 +00:00
import net.minecraft.entity.monster.EntitySlime;
import net.minecraft.world.ColorizerFoliage;
import net.minecraft.world.ColorizerGrass;
import net.minecraft.world.World;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraft.world.biome.SpawnListEntry;
import net.minecraft.world.gen.feature.WorldGenerator;
2013-07-01 00:31:34 +00:00
import biomesoplenty.api.Blocks;
2013-09-14 10:16:39 +00:00
import biomesoplenty.biomes.BiomeDecoratorBOP;
import biomesoplenty.configuration.configfile.BOPConfigurationMisc;
import biomesoplenty.worldgen.WorldGenLog;
import biomesoplenty.worldgen.WorldGenMoss;
2013-09-14 10:16:39 +00:00
import biomesoplenty.worldgen.tree.WorldGenWillow;
2013-05-03 13:00:44 +00:00
public class BiomeGenSwampNew extends BiomeGenBase implements IWCFog
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
2013-05-31 10:34:02 +00:00
@SuppressWarnings("unchecked")
2013-05-03 13:00:44 +00:00
public BiomeGenSwampNew(int par1)
2013-05-31 10:34:02 +00:00
{
super(par1);
theBiomeDecorator = new BiomeDecoratorBOP(this);
customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator;
customBiomeDecorator.treesPerChunk = 4;
customBiomeDecorator.flowersPerChunk = -999;
customBiomeDecorator.deadBushPerChunk = 1;
customBiomeDecorator.mushroomsPerChunk = 8;
customBiomeDecorator.reedsPerChunk = 10;
customBiomeDecorator.clayPerChunk = 1;
customBiomeDecorator.waterlilyPerChunk = 4;
2013-09-20 23:16:51 +00:00
customBiomeDecorator.wheatGrassPerChunk = 1;
2013-05-31 10:34:02 +00:00
customBiomeDecorator.mudPerChunk = 9;
customBiomeDecorator.mudPerChunk2 = 9;
customBiomeDecorator.portobellosPerChunk = 1;
2013-09-24 00:20:50 +00:00
customBiomeDecorator.waterReedsPerChunk = 4;
2013-10-20 18:05:23 +00:00
customBiomeDecorator.koruPerChunk = 1;
2013-05-31 10:34:02 +00:00
waterColorMultiplier = 14745456;
spawnableMonsterList.add(new SpawnListEntry(EntitySlime.class, 1, 1, 1));
}
2013-05-03 13:00:44 +00:00
2013-05-31 10:34:02 +00:00
/**
* Gets a WorldGen appropriate for this biome.
*/
@Override
public WorldGenerator getRandomWorldGenForTrees(Random par1Random)
{
return par1Random.nextInt(3) == 0 ? new WorldGenLog() : new WorldGenWillow();
}
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);
WorldGenMoss var5 = new WorldGenMoss();
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, 10, 2);
}
}
2013-05-03 13:00:44 +00:00
2013-05-31 10:34:02 +00:00
for (int var6 = 0; var6 < 20; ++var6)
{
int var7 = par3 + par2Random.nextInt(16) + 8;
byte var8 = 58;
int var9 = par4 + par2Random.nextInt(16) + 8;
var5.generate(par1World, par2Random, var7, var8, var9);
}
}
/**
* Provides the basic grass color based on the biome temperature and rainfall
*/
@Override
public int getBiomeGrassColor()
{
double var1 = this.getFloatTemperature();
double var3 = this.getFloatRainfall();
return ((ColorizerGrass.getGrassColor(var1, var3) & 16711422) + 5115470) / 2;
}
/**
* Provides the basic foliage color based on the biome temperature and rainfall
*/
@Override
public int getBiomeFoliageColor()
{
double var1 = this.getFloatTemperature();
double var3 = this.getFloatRainfall();
return ((ColorizerFoliage.getFoliageColor(var1, var3) & 16711422) + 5115470) / 2;
}
2013-07-20 19:05:38 +00:00
@Override
public int getFogColour()
{
return 7246218;
}
@Override
public float getFogCloseness()
{
// TODO Auto-generated method stub
return 0.4F;
}
2013-07-20 19:05:38 +00:00
/**
* takes temperature, returns color
*/
@Override
public int getSkyColorByTemp(float par1)
{
2013-09-14 10:16:39 +00:00
if (BOPConfigurationMisc.skyColors)
2013-07-20 19:05:38 +00:00
return 4149332;
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
}