/** * 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 override int[] getInts(int areaX, int areaY, int areaWidth, int areaHeight) { int[] aint = parent.getInts(areaX - 1, areaY - 1, areaWidth + 2, areaHeight + 2); int[] aint1 = IntCache.getIntCache(areaWidth * areaHeight); for (int i = 0; i < areaHeight; ++i) { for (int j = 0; j < areaWidth; ++j) { initChunkSeed((long)(j + areaX), (long)(i + areaY)); int k = aint[j + 1 + (i + 1) * (areaWidth + 2)]; BiomeGenBase biomegenbase = BiomeGenBase.getBiome(k); if (k == BiomeGenBase.mushroomIsland.biomeID) { int j2 = aint[j + 1 + (i + 1 - 1) * (areaWidth + 2)]; int i3 = aint[j + 1 + 1 + (i + 1) * (areaWidth + 2)]; int l3 = aint[j + 1 - 1 + (i + 1) * (areaWidth + 2)]; int k4 = aint[j + 1 + (i + 1 + 1) * (areaWidth + 2)]; if (j2 != BiomeGenBase.ocean.biomeID && i3 != BiomeGenBase.ocean.biomeID && l3 != BiomeGenBase.ocean.biomeID && k4 != BiomeGenBase.ocean.biomeID) { aint1[j + i * areaWidth] = k; } else { aint1[j + i * areaWidth] = BiomeGenBase.mushroomIslandShore.biomeID; } } else if (biomegenbase != null && biomegenbase.GetType().ToString() == "BiomeGenJungle") { int i2 = aint[j + 1 + (i + 1 - 1) * (areaWidth + 2)]; int l2 = aint[j + 1 + 1 + (i + 1) * (areaWidth + 2)]; int k3 = aint[j + 1 - 1 + (i + 1) * (areaWidth + 2)]; int j4 = aint[j + 1 + (i + 1 + 1) * (areaWidth + 2)]; if (this.func_151631_c(i2) && this.func_151631_c(l2) && this.func_151631_c(k3) && this.func_151631_c(j4)) { if (!isBiomeOceanic(i2) && !isBiomeOceanic(l2) && !isBiomeOceanic(k3) && !isBiomeOceanic(j4)) { aint1[j + i * areaWidth] = k; } else { aint1[j + i * areaWidth] = BiomeGenBase.beach.biomeID; } } else { aint1[j + i * areaWidth] = BiomeGenBase.jungleEdge.biomeID; } } else if (k != BiomeGenBase.extremeHills.biomeID && k != BiomeGenBase.extremeHillsPlus.biomeID && k != BiomeGenBase.extremeHillsEdge.biomeID) { if (biomegenbase != null && biomegenbase.isSnowyBiome()) { this.func_151632_a(aint, aint1, j, i, areaWidth, k, BiomeGenBase.coldBeach.biomeID); } else if (k != BiomeGenBase.mesa.biomeID && k != BiomeGenBase.mesaPlateau_F.biomeID) { if (k != BiomeGenBase.ocean.biomeID && k != BiomeGenBase.deepOcean.biomeID && k != BiomeGenBase.river.biomeID && k != BiomeGenBase.swampland.biomeID) { int l1 = aint[j + 1 + (i + 1 - 1) * (areaWidth + 2)]; int k2 = aint[j + 1 + 1 + (i + 1) * (areaWidth + 2)]; int j3 = aint[j + 1 - 1 + (i + 1) * (areaWidth + 2)]; int i4 = aint[j + 1 + (i + 1 + 1) * (areaWidth + 2)]; if (!isBiomeOceanic(l1) && !isBiomeOceanic(k2) && !isBiomeOceanic(j3) && !isBiomeOceanic(i4)) { aint1[j + i * areaWidth] = k; } else { aint1[j + i * areaWidth] = BiomeGenBase.beach.biomeID; } } else { aint1[j + i * areaWidth] = k; } } else { int l = aint[j + 1 + (i + 1 - 1) * (areaWidth + 2)]; int i1 = aint[j + 1 + 1 + (i + 1) * (areaWidth + 2)]; int j1 = aint[j + 1 - 1 + (i + 1) * (areaWidth + 2)]; int k1 = aint[j + 1 + (i + 1 + 1) * (areaWidth + 2)]; if (!isBiomeOceanic(l) && !isBiomeOceanic(i1) && !isBiomeOceanic(j1) && !isBiomeOceanic(k1)) { if (this.func_151633_d(l) && this.func_151633_d(i1) && this.func_151633_d(j1) && this.func_151633_d(k1)) { aint1[j + i * areaWidth] = k; } else { aint1[j + i * areaWidth] = BiomeGenBase.desert.biomeID; } } else { aint1[j + i * areaWidth] = k; } } } else { this.func_151632_a(aint, aint1, j, i, areaWidth, k, BiomeGenBase.stoneBeach.biomeID); } } } return(aint1); }
/** * returns true if the biome specified is equal to this biome */ public bool isEqualTo(BiomeGenBase biome) { return(biome == this ? true : (biome == null ? false : GetType() == biome.GetType())); }