package com.hbm.handler.nei; import java.awt.Rectangle; import java.util.ArrayList; import java.util.Arrays; import java.util.LinkedList; import java.util.List; import java.util.Map; import com.hbm.handler.nei.ShredderRecipeHandler.Fuel; import com.hbm.inventory.MachineRecipes; import com.hbm.inventory.gui.GUIMachineEPress; import com.hbm.inventory.gui.GUIMachinePress; import com.hbm.inventory.gui.GUIMachineShredder; import com.hbm.items.ModItems; import com.hbm.lib.RefStrings; import codechicken.nei.NEIServerUtils; import codechicken.nei.PositionedStack; import codechicken.nei.recipe.TemplateRecipeHandler; import net.minecraft.client.gui.inventory.GuiContainer; import net.minecraft.item.ItemStack; public class PressRecipeHandler extends TemplateRecipeHandler { public LinkedList transferRectsRec = new LinkedList(); public LinkedList transferRectsGui = new LinkedList(); public LinkedList> guiRec = new LinkedList>(); public LinkedList> guiGui = new LinkedList>(); public class SmeltingSet extends TemplateRecipeHandler.CachedRecipe { PositionedStack input; PositionedStack result; public ArrayList fuels = new ArrayList(); public SmeltingSet(List stamp, ItemStack input, ItemStack result) { input.stackSize = 1; this.input = new PositionedStack(input, 83 - 35, 5 + 36 + 1); this.result = new PositionedStack(result, 83 + 28, 5 + 18 + 1); if(stamp.isEmpty()) fuels.add(new Fuel(new ItemStack(ModItems.nothing))); else for(ItemStack sta : stamp) fuels.add(new Fuel(sta)); } @Override public List getIngredients() { return getCycledIngredients(cycleticks / 48, Arrays.asList(new PositionedStack[] {input})); } @Override public List getOtherStacks() { List stacks = new ArrayList(); stacks.add(fuels.get((cycleticks / 24) % fuels.size()).stack); return stacks; } @Override public PositionedStack getResult() { return result; } } public static class Fuel { public Fuel(ItemStack ingred) { this.stack = new PositionedStack(ingred, 83 - 35, 6, false); } public PositionedStack stack; } @Override public String getRecipeName() { return "Burner Press"; } @Override public String getGuiTexture() { return RefStrings.MODID + ":textures/gui/gui_nei_press.png"; } @Override public void loadCraftingRecipes(String outputId, Object... results) { if ((outputId.equals("pressing")) && getClass() == PressRecipeHandler.class) { Map recipes = MachineRecipes.instance().getPressRecipes(); for (Map.Entry recipe : recipes.entrySet()) { this.arecipes.add(new SmeltingSet((List)recipe.getKey()[0], (ItemStack)recipe.getKey()[1], (ItemStack)recipe.getValue())); } } else { super.loadCraftingRecipes(outputId, results); } } @Override public void loadCraftingRecipes(ItemStack result) { Map recipes = MachineRecipes.instance().getPressRecipes(); for (Map.Entry recipe : recipes.entrySet()) { if (NEIServerUtils.areStacksSameType((ItemStack)recipe.getValue(), result)) this.arecipes.add(new SmeltingSet((List)recipe.getKey()[0], (ItemStack)recipe.getKey()[1], (ItemStack)recipe.getValue())); } } @Override public void loadUsageRecipes(String inputId, Object... ingredients) { if ((inputId.equals("pressing")) && getClass() == PressRecipeHandler.class) { loadCraftingRecipes("pressing", new Object[0]); } else { super.loadUsageRecipes(inputId, ingredients); } } @Override public void loadUsageRecipes(ItemStack ingredient) { Map recipes = MachineRecipes.instance().getPressRecipes(); for (Map.Entry recipe : recipes.entrySet()) { boolean b = false; for(int i = 0; i < ((List)recipe.getKey()[0]).size(); i++) { if(NEIServerUtils.areStacksSameType(((List)recipe.getKey()[0]).get(i), ingredient)) { b = true; break; } } if (b || NEIServerUtils.areStacksSameType(ingredient, (ItemStack)recipe.getKey()[1])) this.arecipes.add(new SmeltingSet((List)recipe.getKey()[0], (ItemStack)recipe.getKey()[1], (ItemStack)recipe.getValue())); } } @Override public Class getGuiClass() { //return GUIMachineShredder.class; return null; } @Override public void loadTransferRects() { //transferRectsRec = new LinkedList(); transferRectsGui = new LinkedList(); //guiRec = new LinkedList>(); guiGui = new LinkedList>(); transferRects.add(new RecipeTransferRect(new Rectangle(74 + 6, 23, 24, 18), "pressing")); transferRectsGui.add(new RecipeTransferRect(new Rectangle(74 + 6 + 18, 23, 24, 18), "pressing")); //guiRec.add(GuiRecipe.class); guiGui.add(GUIMachinePress.class); guiGui.add(GUIMachineEPress.class); RecipeTransferRectHandler.registerRectsToGuis(getRecipeTransferRectGuis(), transferRects); //RecipeTransferRectHandler.registerRectsToGuis(guiRec, transferRectsRec); RecipeTransferRectHandler.registerRectsToGuis(guiGui, transferRectsGui); //for(Class r : getRecipeTransferRectGuis()) // System.out.println(r.toString()); } @Override public void drawExtras(int recipe) { drawProgressBar(47, 24, 0, 86, 18, 18, 20, 1); } @Override public TemplateRecipeHandler newInstance() { return super.newInstance(); } }