package com.hbm.handler.nei; import java.awt.Rectangle; import java.util.Arrays; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import com.hbm.blocks.ModBlocks; import com.hbm.handler.imc.ICompatNHNEI; import com.hbm.interfaces.Untested; import com.hbm.inventory.RecipesCommon.AStack; import com.hbm.inventory.RecipesCommon.ComparableStack; import com.hbm.inventory.gui.GUIMachineEPress; import com.hbm.inventory.gui.GUIMachinePress; import com.hbm.inventory.recipes.PressRecipes; import com.hbm.items.machine.ItemStamp; import com.hbm.items.machine.ItemStamp.StampType; import com.hbm.lib.RefStrings; import com.hbm.util.Tuple.Pair; 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; @Untested public class PressRecipeHandler extends TemplateRecipeHandler implements ICompatNHNEI { @Override public ItemStack[] getMachinesForRecipe() { return new ItemStack[]{ new ItemStack(ModBlocks.machine_press), new ItemStack(ModBlocks.machine_epress), new ItemStack(ModBlocks.machine_conveyor_press)}; } @Override public String getRecipeID() { return "pressing"; } 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; PositionedStack stamp; public SmeltingSet(Object stamp, AStack input, ItemStack result) { input.stacksize = 1; this.input = new PositionedStack(input.extractForNEI(), 83 - 35, 5 + 36 + 1); this.result = new PositionedStack(result, 83 + 28, 5 + 18 + 1); this.stamp = new PositionedStack(stamp, 83 - 35, 6, false); } @Override public List getIngredients() { return getCycledIngredients(cycleticks / 48, Arrays.asList(input, stamp)); } @Override public PositionedStack getResult() { return result; } } @Override public String getRecipeName() { return "Press"; } @Override public String getGuiTexture() { return RefStrings.MODID + ":textures/gui/nei/gui_nei_press.png"; } @Override public void loadCraftingRecipes(String outputId, Object... results) { if((outputId.equals("pressing")) && getClass() == PressRecipeHandler.class) { HashMap, ItemStack> recipes = PressRecipes.recipes; for(Map.Entry, ItemStack> recipe : recipes.entrySet()) { this.arecipes.add(new SmeltingSet(ItemStamp.stamps.get(recipe.getKey().getValue()), recipe.getKey().getKey(), recipe.getValue())); } } else { super.loadCraftingRecipes(outputId, results); } } @Override public void loadCraftingRecipes(ItemStack result) { HashMap, ItemStack> recipes = PressRecipes.recipes; for(Map.Entry, ItemStack> recipe : recipes.entrySet()) { if(NEIServerUtils.areStacksSameType(recipe.getValue(), result)) this.arecipes.add(new SmeltingSet(ItemStamp.stamps.get(recipe.getKey().getValue()), recipe.getKey().getKey(), 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) { HashMap, ItemStack> recipes = PressRecipes.recipes; for(Map.Entry, ItemStack> recipe : recipes.entrySet()) { AStack in = recipe.getKey().getKey(); StampType stamp = recipe.getKey().getValue(); if(in.matchesRecipe(ingredient, true)) this.arecipes.add(new SmeltingSet(ItemStamp.stamps.get(recipe.getKey().getValue()), new ComparableStack(ingredient), recipe.getValue())); else if(ingredient.getItem() instanceof ItemStamp && ((ItemStamp)ingredient.getItem()).getStampType(ingredient.getItem(), ingredient.getItemDamage()) == stamp) this.arecipes.add(new SmeltingSet(ingredient, recipe.getKey().getKey(), recipe.getValue())); } } @Override public Class getGuiClass() { // return GUIMachineShredder.class; return null; } @Override public void loadTransferRects() { transferRectsGui = 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")); guiGui.add(GUIMachinePress.class); guiGui.add(GUIMachineEPress.class); RecipeTransferRectHandler.registerRectsToGuis(getRecipeTransferRectGuis(), transferRects); RecipeTransferRectHandler.registerRectsToGuis(guiGui, transferRectsGui); } @Override public void drawExtras(int recipe) { drawProgressBar(47, 24, 0, 86, 18, 18, 20, 1); } @Override public TemplateRecipeHandler newInstance() { return super.newInstance(); } }