package net.minecraft.world.gen.layer; import net.minecraft.world.biome.BiomeGenBase; public class GenLayerShore extends GenLayer { public GenLayerShore(long par1, GenLayer par3GenLayer) { super(par1); this.parent = par3GenLayer; } /** * 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. */ public int[] getInts(int par1, int par2, int par3, int par4) { int[] aint = this.parent.getInts(par1 - 1, par2 - 1, par3 + 2, par4 + 2); int[] aint1 = IntCache.getIntCache(par3 * par4); for (int i1 = 0; i1 < par4; ++i1) { for (int j1 = 0; j1 < par3; ++j1) { this.initChunkSeed((long)(j1 + par1), (long)(i1 + par2)); int k1 = aint[j1 + 1 + (i1 + 1) * (par3 + 2)]; int l1; int i2; int j2; int k2; if (k1 == BiomeGenBase.mushroomIsland.biomeID) { l1 = aint[j1 + 1 + (i1 + 1 - 1) * (par3 + 2)]; i2 = aint[j1 + 1 + 1 + (i1 + 1) * (par3 + 2)]; j2 = aint[j1 + 1 - 1 + (i1 + 1) * (par3 + 2)]; k2 = aint[j1 + 1 + (i1 + 1 + 1) * (par3 + 2)]; if (l1 != BiomeGenBase.ocean.biomeID && i2 != BiomeGenBase.ocean.biomeID && j2 != BiomeGenBase.ocean.biomeID && k2 != BiomeGenBase.ocean.biomeID) { aint1[j1 + i1 * par3] = k1; } else { aint1[j1 + i1 * par3] = BiomeGenBase.mushroomIslandShore.biomeID; } } else if (k1 != BiomeGenBase.ocean.biomeID && k1 != BiomeGenBase.river.biomeID && k1 != BiomeGenBase.swampland.biomeID && k1 != BiomeGenBase.extremeHills.biomeID) { l1 = aint[j1 + 1 + (i1 + 1 - 1) * (par3 + 2)]; i2 = aint[j1 + 1 + 1 + (i1 + 1) * (par3 + 2)]; j2 = aint[j1 + 1 - 1 + (i1 + 1) * (par3 + 2)]; k2 = aint[j1 + 1 + (i1 + 1 + 1) * (par3 + 2)]; if (l1 != BiomeGenBase.ocean.biomeID && i2 != BiomeGenBase.ocean.biomeID && j2 != BiomeGenBase.ocean.biomeID && k2 != BiomeGenBase.ocean.biomeID) { aint1[j1 + i1 * par3] = k1; } else { aint1[j1 + i1 * par3] = BiomeGenBase.beach.biomeID; } } else if (k1 == BiomeGenBase.extremeHills.biomeID) { l1 = aint[j1 + 1 + (i1 + 1 - 1) * (par3 + 2)]; i2 = aint[j1 + 1 + 1 + (i1 + 1) * (par3 + 2)]; j2 = aint[j1 + 1 - 1 + (i1 + 1) * (par3 + 2)]; k2 = aint[j1 + 1 + (i1 + 1 + 1) * (par3 + 2)]; if (l1 == BiomeGenBase.extremeHills.biomeID && i2 == BiomeGenBase.extremeHills.biomeID && j2 == BiomeGenBase.extremeHills.biomeID && k2 == BiomeGenBase.extremeHills.biomeID) { aint1[j1 + i1 * par3] = k1; } else { aint1[j1 + i1 * par3] = BiomeGenBase.extremeHillsEdge.biomeID; } } else { aint1[j1 + i1 * par3] = k1; } } } return aint1; } }