32 lines
1.2 KiB
Java
32 lines
1.2 KiB
Java
package biomesoplenty.helpers;
|
|
|
|
import net.minecraft.world.biome.BiomeGenBase;
|
|
|
|
public class BiomeCacheBlockBOPhell
|
|
{
|
|
public float[] temperatureValues;
|
|
public float[] rainfallValues;
|
|
public BiomeGenBase[] biomes;
|
|
public int xPosition;
|
|
public int zPosition;
|
|
public long lastAccessTime;
|
|
final BiomeCacheBOPhell theBiomeCache;
|
|
|
|
public BiomeCacheBlockBOPhell(BiomeCacheBOPhell par1BiomeCache, int par2, int par3)
|
|
{
|
|
this.theBiomeCache = par1BiomeCache;
|
|
this.temperatureValues = new float[256];
|
|
this.rainfallValues = new float[256];
|
|
this.biomes = new BiomeGenBase[256];
|
|
this.xPosition = par2;
|
|
this.zPosition = par3;
|
|
BiomeCacheBOPhell.getChunkManager(par1BiomeCache).getTemperatures(this.temperatureValues, par2 << 4, par3 << 4, 16, 16);
|
|
BiomeCacheBOPhell.getChunkManager(par1BiomeCache).getRainfall(this.rainfallValues, par2 << 4, par3 << 4, 16, 16);
|
|
BiomeCacheBOPhell.getChunkManager(par1BiomeCache).getBiomeGenAt(this.biomes, par2 << 4, par3 << 4, 16, 16, false);
|
|
}
|
|
|
|
public BiomeGenBase getBiomeGenAt(int par1, int par2)
|
|
{
|
|
return this.biomes[par1 & 15 | (par2 & 15) << 4];
|
|
}
|
|
}
|