aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gregtech/api/util/CustomRecipeMap.java
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-12-20 23:39:49 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-12-20 23:39:49 +1000
commit5715a32d2901922503fd850f3a68503fb77467c3 (patch)
tree7e12520fbc23844e99493d55af4410a785538e35 /src/Java/gregtech/api/util/CustomRecipeMap.java
parent2a4795f65d98ff60a177d7d6a5552fd687d9f6e8 (diff)
downloadGT5-Unofficial-5715a32d2901922503fd850f3a68503fb77467c3.tar.gz
GT5-Unofficial-5715a32d2901922503fd850f3a68503fb77467c3.tar.bz2
GT5-Unofficial-5715a32d2901922503fd850f3a68503fb77467c3.zip
- Disabled some logging.
% Minor Project Clean-up, added missing Override annotations to 100+ methods & removed pointless casts. % Moved Logging to it's own class. $ Fixed Multi-block handling of Pollution. $ Fixed the GT 5.09 material enabler system. (From My Side, it's still borked on GTs). + Added a Dynamic Proxy invocation for IMaterialHandler. + Added an AutoMap data type, which is a Auto-incremental ID'd Hashmap wrapper.
Diffstat (limited to 'src/Java/gregtech/api/util/CustomRecipeMap.java')
-rw-r--r--src/Java/gregtech/api/util/CustomRecipeMap.java48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/Java/gregtech/api/util/CustomRecipeMap.java b/src/Java/gregtech/api/util/CustomRecipeMap.java
index a4a1b0b061..5096947886 100644
--- a/src/Java/gregtech/api/util/CustomRecipeMap.java
+++ b/src/Java/gregtech/api/util/CustomRecipeMap.java
@@ -7,7 +7,7 @@ import java.util.*;
import gregtech.api.GregTech_API;
import gregtech.api.interfaces.tileentity.IHasWorldObjectAndCoords;
import gregtech.api.objects.GT_ItemStack;
-import gtPlusPlus.core.util.Utils;
+import gtPlusPlus.api.objects.Logger;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.FluidStack;
@@ -214,7 +214,7 @@ public class CustomRecipeMap/* extends GT_Recipe_Map*/{
public GT_Recipe findRecipe(final IHasWorldObjectAndCoords aTileEntity, final GT_Recipe aRecipe, final boolean aNotUnificated, final long aVoltage, final FluidStack[] aFluids, final ItemStack aSpecialSlot, ItemStack... aInputs) {
// No Recipes? Well, nothing to be found then.
if (this.mRecipeList.isEmpty()) {
- Utils.LOG_WARNING("BAD RECIPE");
+ Logger.WARNING("BAD RECIPE");
return null;
}
@@ -223,7 +223,7 @@ public class CustomRecipeMap/* extends GT_Recipe_Map*/{
if (GregTech_API.sPostloadFinished) {
if (this.mMinimalInputFluids > 0) {
if (aFluids == null) {
- Utils.LOG_WARNING("BAD RECIPE [1]");
+ Logger.WARNING("BAD RECIPE [1]");
return null;
}
int tAmount = 0;
@@ -233,13 +233,13 @@ public class CustomRecipeMap/* extends GT_Recipe_Map*/{
}
}
if (tAmount < this.mMinimalInputFluids) {
- Utils.LOG_WARNING("BAD RECIPE [2]");
+ Logger.WARNING("BAD RECIPE [2]");
return null;
}
}
if (this.mMinimalInputItems > 0) {
if (aInputs == null) {
- Utils.LOG_WARNING("BAD RECIPE [3]");
+ Logger.WARNING("BAD RECIPE [3]");
return null;
}
int tAmount = 0;
@@ -249,7 +249,7 @@ public class CustomRecipeMap/* extends GT_Recipe_Map*/{
}
}
if (tAmount < this.mMinimalInputItems) {
- Utils.LOG_WARNING("BAD RECIPE [4]");
+ Logger.WARNING("BAD RECIPE [4]");
return null;
}
}
@@ -263,38 +263,38 @@ public class CustomRecipeMap/* extends GT_Recipe_Map*/{
// Check the Recipe which has been used last time in order to not have to search for it again, if possible.
if (aRecipe != null) {
if (!aRecipe.mFakeRecipe && aRecipe.mCanBeBuffered && aRecipe.isRecipeInputEqual(false, true, aFluids, aInputs)) {
- Utils.LOG_WARNING("BAD RECIPE [a]");
+ Logger.WARNING("BAD RECIPE [a]");
return aRecipe.mEnabled && ((aVoltage * this.mAmperage) >= aRecipe.mEUt) ? aRecipe : null;
}
}
// Now look for the Recipes inside the Item HashMaps, but only when the Recipes usually have Items.
if ((this.mUsualInputCount > 0) && (aInputs != null)) {
- Utils.LOG_WARNING("BAD RECIPE [b0]");
+ Logger.WARNING("BAD RECIPE [b0]");
for (final ItemStack tStack : aInputs) {
- Utils.LOG_WARNING("BAD RECIPE [b1]");
+ Logger.WARNING("BAD RECIPE [b1]");
if (tStack != null) {
- Utils.LOG_WARNING("BAD RECIPE [b2] | "+tStack.getDisplayName());
+ Logger.WARNING("BAD RECIPE [b2] | "+tStack.getDisplayName());
Collection<GT_Recipe>
tRecipes = this.mRecipeItemMap.get(new GT_ItemStack(tStack));
if (tRecipes != null) {
- Utils.LOG_WARNING("BAD RECIPE [b3]");
+ Logger.WARNING("BAD RECIPE [b3]");
for (final GT_Recipe tRecipe : tRecipes) {
- Utils.LOG_WARNING("BAD RECIPE [b4]");
+ Logger.WARNING("BAD RECIPE [b4]");
if (!tRecipe.mFakeRecipe && tRecipe.isRecipeInputEqual(false, true, aFluids, aInputs)) {
- Utils.LOG_WARNING("BAD RECIPE [b5]");
+ Logger.WARNING("BAD RECIPE [b5]");
return tRecipe.mEnabled && ((aVoltage * this.mAmperage) >= tRecipe.mEUt) ? tRecipe : null;
}
}
}
- Utils.LOG_WARNING("BAD RECIPE [b6]");
+ Logger.WARNING("BAD RECIPE [b6]");
tRecipes = this.mRecipeItemMap.get(new GT_ItemStack(GT_Utility.copyMetaData(W, tStack)));
if (tRecipes != null) {
- Utils.LOG_WARNING("BAD RECIPE [b7]");
+ Logger.WARNING("BAD RECIPE [b7]");
for (final GT_Recipe tRecipe : tRecipes) {
- Utils.LOG_WARNING("BAD RECIPE [b8]");
+ Logger.WARNING("BAD RECIPE [b8]");
if (!tRecipe.mFakeRecipe && tRecipe.isRecipeInputEqual(false, true, aFluids, aInputs)) {
- Utils.LOG_WARNING("BAD RECIPE [b9]");
+ Logger.WARNING("BAD RECIPE [b9]");
return tRecipe.mEnabled && ((aVoltage * this.mAmperage) >= tRecipe.mEUt) ? tRecipe : null;
}
}
@@ -305,19 +305,19 @@ public class CustomRecipeMap/* extends GT_Recipe_Map*/{
// If the minimal Amount of Items for the Recipe is 0, then it could be a Fluid-Only Recipe, so check that Map too.
if ((this.mMinimalInputItems == 0) && (aFluids != null && aFluids.length > 0)) {
- Utils.LOG_WARNING("BAD RECIPE [c0] "+aFluids.length);
+ Logger.WARNING("BAD RECIPE [c0] "+aFluids.length);
for (final FluidStack aFluid : aFluids) {
- Utils.LOG_WARNING("BAD RECIPE [c1]");
+ Logger.WARNING("BAD RECIPE [c1]");
if (aFluid != null) {
- Utils.LOG_WARNING("BAD RECIPE [c2]");
+ Logger.WARNING("BAD RECIPE [c2]");
final Collection<GT_Recipe>
tRecipes = this.mRecipeFluidMap.get(aFluid.getFluid());
if (tRecipes != null) {
- Utils.LOG_WARNING("BAD RECIPE [c3]");
+ Logger.WARNING("BAD RECIPE [c3]");
for (final GT_Recipe tRecipe : tRecipes) {
- Utils.LOG_WARNING("BAD RECIPE [c4]");
+ Logger.WARNING("BAD RECIPE [c4]");
if (!tRecipe.mFakeRecipe && tRecipe.isRecipeInputEqual(false, true, aFluids, aInputs)) {
- Utils.LOG_WARNING("BAD RECIPE [c5]");
+ Logger.WARNING("BAD RECIPE [c5]");
return tRecipe.mEnabled && ((aVoltage * this.mAmperage) >= tRecipe.mEUt) ? tRecipe : null;
}
}
@@ -327,7 +327,7 @@ public class CustomRecipeMap/* extends GT_Recipe_Map*/{
}
// And nothing has been found.
- Utils.LOG_WARNING("BAD RECIPE [5]");
+ Logger.WARNING("BAD RECIPE [5]");
return null;
}