package zmaster587.advancedRocketry.world.gen;
import java.util.concurrent.Callable;
import zmaster587.advancedRocketry.api.AdvancedRocketryBiomes;
import net.minecraft.crash.CrashReport;
import net.minecraft.crash.CrashReportCategory;
import net.minecraft.util.ReportedException;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraft.world.gen.layer.GenLayer;
import net.minecraft.world.gen.layer.IntCache;
public class GenLayerEdgeExtendedBiomes extends GenLayerExtendedCompare {
public GenLayerEdgeExtendedBiomes(long p_i45475_1_, GenLayer p_i45475_3_) {
super(p_i45475_1_);
this.parent = p_i45475_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.
*/
public int[] getInts(int p_75904_1_, int p_75904_2_, int p_75904_3_, int p_75904_4_)
{
int[] aint = this.parent.getInts(p_75904_1_ - 1, p_75904_2_ - 1, p_75904_3_ + 2, p_75904_4_ + 2);
int[] aint1 = IntCache.getIntCache(p_75904_3_ * p_75904_4_);
for (int i1 = 0; i1 < p_75904_4_; ++i1)
{
for (int j1 = 0; j1 < p_75904_3_; ++j1)
{
this.initChunkSeed((long)(j1 + p_75904_1_), (long)(i1 + p_75904_2_));
int k1 = aint[j1 + 1 + (i1 + 1) * (p_75904_3_ + 2)];
if (!this.func_151636_a(aint, aint1, j1, i1, p_75904_3_, k1, BiomeGenBase.extremeHills.biomeID, BiomeGenBase.extremeHillsEdge.biomeID) && !this.func_151635_b(aint, aint1, j1, i1, p_75904_3_, k1, BiomeGenBase.mesaPlateau_F.biomeID, BiomeGenBase.mesa.biomeID) && !this.func_151635_b(aint, aint1, j1, i1, p_75904_3_, k1, BiomeGenBase.mesaPlateau.biomeID, BiomeGenBase.mesa.biomeID) && !this.func_151635_b(aint, aint1, j1, i1, p_75904_3_, k1, BiomeGenBase.megaTaiga.biomeID, BiomeGenBase.taiga.biomeID))
{
int l1;
int i2;
int j2;
int k2;
if (k1 == BiomeGenBase.desert.biomeID)
{
l1 = aint[j1 + 1 + (i1 + 1 - 1) * (p_75904_3_ + 2)];
i2 = aint[j1 + 1 + 1 + (i1 + 1) * (p_75904_3_ + 2)];
j2 = aint[j1 + 1 - 1 + (i1 + 1) * (p_75904_3_ + 2)];
k2 = aint[j1 + 1 + (i1 + 1 + 1) * (p_75904_3_ + 2)];
if (l1 != BiomeGenBase.icePlains.biomeID && i2 != BiomeGenBase.icePlains.biomeID && j2 != BiomeGenBase.icePlains.biomeID && k2 != BiomeGenBase.icePlains.biomeID)
{
aint1[j1 + i1 * p_75904_3_] = k1;
}
else
{
aint1[j1 + i1 * p_75904_3_] = BiomeGenBase.extremeHillsPlus.biomeID;
}
}
else if (k1 == BiomeGenBase.swampland.biomeID)
{
l1 = aint[j1 + 1 + (i1 + 1 - 1) * (p_75904_3_ + 2)];
i2 = aint[j1 + 1 + 1 + (i1 + 1) * (p_75904_3_ + 2)];
j2 = aint[j1 + 1 - 1 + (i1 + 1) * (p_75904_3_ + 2)];
k2 = aint[j1 + 1 + (i1 + 1 + 1) * (p_75904_3_ + 2)];
if (l1 != BiomeGenBase.desert.biomeID && i2 != BiomeGenBase.desert.biomeID && j2 != BiomeGenBase.desert.biomeID && k2 != BiomeGenBase.desert.biomeID && l1 != BiomeGenBase.coldTaiga.biomeID && i2 != BiomeGenBase.coldTaiga.biomeID && j2 != BiomeGenBase.coldTaiga.biomeID && k2 != BiomeGenBase.coldTaiga.biomeID && l1 != BiomeGenBase.icePlains.biomeID && i2 != BiomeGenBase.icePlains.biomeID && j2 != BiomeGenBase.icePlains.biomeID && k2 != BiomeGenBase.icePlains.biomeID)
{
if (l1 != BiomeGenBase.jungle.biomeID && k2 != BiomeGenBase.jungle.biomeID && i2 != BiomeGenBase.jungle.biomeID && j2 != BiomeGenBase.jungle.biomeID)
{
aint1[j1 + i1 * p_75904_3_] = k1;
}
else
{
aint1[j1 + i1 * p_75904_3_] = BiomeGenBase.jungleEdge.biomeID;
}
}
else
{
aint1[j1 + i1 * p_75904_3_] = BiomeGenBase.plains.biomeID;
}
}
else
{
aint1[j1 + i1 * p_75904_3_] = k1;
}
}
}
}
return aint1;
}
private boolean func_151636_a(int[] p_151636_1_, int[] p_151636_2_, int p_151636_3_, int p_151636_4_, int p_151636_5_, int p_151636_6_, int p_151636_7_, int p_151636_8_)
{
if (!compareBiomesById(p_151636_6_, p_151636_7_))
{
return false;
}
else
{
int k1 = p_151636_1_[p_151636_3_ + 1 + (p_151636_4_ + 1 - 1) * (p_151636_5_ + 2)];
int l1 = p_151636_1_[p_151636_3_ + 1 + 1 + (p_151636_4_ + 1) * (p_151636_5_ + 2)];
int i2 = p_151636_1_[p_151636_3_ + 1 - 1 + (p_151636_4_ + 1) * (p_151636_5_ + 2)];
int j2 = p_151636_1_[p_151636_3_ + 1 + (p_151636_4_ + 1 + 1) * (p_151636_5_ + 2)];
if (this.func_151634_b(k1, p_151636_7_) && this.func_151634_b(l1, p_151636_7_) && this.func_151634_b(i2, p_151636_7_) && this.func_151634_b(j2, p_151636_7_))
{
p_151636_2_[p_151636_3_ + p_151636_4_ * p_151636_5_] = p_151636_6_;
}
else
{
p_151636_2_[p_151636_3_ + p_151636_4_ * p_151636_5_] = p_151636_8_;
}
return true;
}
}
private boolean func_151635_b(int[] p_151635_1_, int[] p_151635_2_, int p_151635_3_, int p_151635_4_, int p_151635_5_, int p_151635_6_, int p_151635_7_, int p_151635_8_)
{
if (p_151635_6_ != p_151635_7_)
{
return false;
}
else
{
int k1 = p_151635_1_[p_151635_3_ + 1 + (p_151635_4_ + 1 - 1) * (p_151635_5_ + 2)];
int l1 = p_151635_1_[p_151635_3_ + 1 + 1 + (p_151635_4_ + 1) * (p_151635_5_ + 2)];
int i2 = p_151635_1_[p_151635_3_ + 1 - 1 + (p_151635_4_ + 1) * (p_151635_5_ + 2)];
int j2 = p_151635_1_[p_151635_3_ + 1 + (p_151635_4_ + 1 + 1) * (p_151635_5_ + 2)];
if (compareBiomesById(k1, p_151635_7_) && compareBiomesById(l1, p_151635_7_) && compareBiomesById(i2, p_151635_7_) && compareBiomesById(j2, p_151635_7_))
{
p_151635_2_[p_151635_3_ + p_151635_4_ * p_151635_5_] = p_151635_6_;
}
else
{
p_151635_2_[p_151635_3_ + p_151635_4_ * p_151635_5_] = p_151635_8_;
}
return true;
}
}
private boolean func_151634_b(int biomeA, int biomeB)
{
if (compareBiomesById(biomeA, biomeB))
{
return true;
}
else if (AdvancedRocketryBiomes.instance.getBiomeById(biomeA) != null && AdvancedRocketryBiomes.instance.getBiomeById(biomeB) != null)
{
BiomeGenBase.TempCategory tempcategory = AdvancedRocketryBiomes.instance.getBiomeById(biomeA).getTempCategory();
BiomeGenBase.TempCategory tempcategory1 = AdvancedRocketryBiomes.instance.getBiomeById(biomeB).getTempCategory();
return tempcategory == tempcategory1 || tempcategory == BiomeGenBase.TempCategory.MEDIUM || tempcategory1 == BiomeGenBase.TempCategory.MEDIUM;
}
else
{
return false;
}
}
}