summaryrefslogtreecommitdiff
path: root/ihl/nei_integration/PrecipitatorCondenserRecipeHandler.java
diff options
context:
space:
mode:
authorFoghrye4 <foghrye4@gmail.com>2016-04-11 19:44:54 +0300
committerFoghrye4 <foghrye4@gmail.com>2016-04-11 19:44:54 +0300
commit05c78126859231a68e199dc34613689bd0978e2f (patch)
tree050bea104a18c72905095d29f31bec2935a27a24 /ihl/nei_integration/PrecipitatorCondenserRecipeHandler.java
Initial commit
Diffstat (limited to 'ihl/nei_integration/PrecipitatorCondenserRecipeHandler.java')
-rw-r--r--ihl/nei_integration/PrecipitatorCondenserRecipeHandler.java73
1 files changed, 73 insertions, 0 deletions
diff --git a/ihl/nei_integration/PrecipitatorCondenserRecipeHandler.java b/ihl/nei_integration/PrecipitatorCondenserRecipeHandler.java
new file mode 100644
index 0000000..530ebaf
--- /dev/null
+++ b/ihl/nei_integration/PrecipitatorCondenserRecipeHandler.java
@@ -0,0 +1,73 @@
+package ihl.nei_integration;
+
+import java.util.Map;
+
+import ihl.processing.chemistry.PrecipitatorCondenserTileEntity;
+import ihl.recipes.UniversalRecipeInput;
+import ihl.recipes.UniversalRecipeOutput;
+import net.minecraft.client.gui.inventory.GuiContainer;
+
+
+public class PrecipitatorCondenserRecipeHandler extends MachineRecipeHandler
+{
+ @Override
+ public Class <? extends GuiContainer > getGuiClass()
+ {
+ return null;
+ }
+
+ @Override
+ protected int[] getInputPosX()
+ {
+ return new int[]{6-5,6-5,106-5};
+ }
+
+ @Override
+ protected int[] getInputPosY()
+ {
+ return new int[]{33-11,53-11};
+ }
+
+ @Override
+ protected int[] getOutputPosX()
+ {
+ return new int[]{75-5};
+ }
+
+ @Override
+ protected int[] getOutputPosY()
+ {
+ return new int[]{53-11,31-11};
+ }
+
+
+ @Override
+ public String getRecipeName()
+ {
+ return "Precipitator/Condenser";
+ }
+
+ @Override
+ public String getRecipeId()
+ {
+ return "ihl.precipitatorCondenser";
+ }
+
+ @Override
+ public String getGuiTexture()
+ {
+ return "ihl:textures/gui/GUICondenserNEI.png";
+ }
+
+ @Override
+ public String getOverlayIdentifier()
+ {
+ return "condenser";
+ }
+
+ @Override
+ public Map<UniversalRecipeInput, UniversalRecipeOutput> getRecipeList()
+ {
+ return PrecipitatorCondenserTileEntity.getRecipes();
+ }
+}