From 05c78126859231a68e199dc34613689bd0978e2f Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Mon, 11 Apr 2016 19:44:54 +0300 Subject: Initial commit --- .../PrecipitatorCondenserRecipeHandler.java | 73 ++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 ihl/nei_integration/PrecipitatorCondenserRecipeHandler.java (limited to 'ihl/nei_integration/PrecipitatorCondenserRecipeHandler.java') 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 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 getRecipeList() + { + return PrecipitatorCondenserTileEntity.getRecipes(); + } +} -- cgit v1.2.3