package net.minecraft.world.gen.layer;
import net.minecraft.world.biome.BiomeGenBase;
public class GenLayerDeepOcean extends GenLayer
{
private static final String __OBFID = "CL_00000546";
public GenLayerDeepOcean(long p_i45472_1_, GenLayer p_i45472_3_)
{
super(p_i45472_1_);
this.parent = p_i45472_3_;
}
/**
* Returns a list of integer values generated by this layer. These may be interpreted as temperatures, rainfall
* amounts, or biomeList[] indices based on the particular GenLayer subclass.
*
* @param areaX The x-position of the area
* @param areaY The y-position of the area
* @param areaWidth The width of the area
* @param areaHeight The height of the area
*/
public int[] getInts(int areaX, int areaY, int areaWidth, int areaHeight)
{
int i1 = areaX - 1;
int j1 = areaY - 1;
int k1 = areaWidth + 2;
int l1 = areaHeight + 2;
int[] aint = this.parent.getInts(i1, j1, k1, l1);
int[] aint1 = IntCache.getIntCache(areaWidth * areaHeight);
for (int i2 = 0; i2 < areaHeight; ++i2)
{
for (int j2 = 0; j2 < areaWidth; ++j2)
{
int k2 = aint[j2 + 1 + (i2 + 1 - 1) * (areaWidth + 2)];
int l2 = aint[j2 + 1 + 1 + (i2 + 1) * (areaWidth + 2)];
int i3 = aint[j2 + 1 - 1 + (i2 + 1) * (areaWidth + 2)];
int j3 = aint[j2 + 1 + (i2 + 1 + 1) * (areaWidth + 2)];
int k3 = aint[j2 + 1 + (i2 + 1) * k1];
int l3 = 0;
if (k2 == 0)
{
++l3;
}
if (l2 == 0)
{
++l3;
}
if (i3 == 0)
{
++l3;
}
if (j3 == 0)
{
++l3;
}
if (k3 == 0 && l3 > 3)
{
aint1[j2 + i2 * areaWidth] = BiomeGenBase.deepOcean.biomeID;
}
else
{
aint1[j2 + i2 * areaWidth] = k3;
}
}
}
return aint1;
}
}