TechReborn/ToAddBack/compat/nei/recipes/IndustrialElectrolyzerRecipeHandler.java

74 lines
2.6 KiB
Java
Raw Normal View History

2015-06-22 06:40:05 +02:00
package techreborn.compat.nei.recipes;
import codechicken.nei.PositionedStack;
import codechicken.nei.recipe.TemplateRecipeHandler;
2015-06-22 06:40:05 +02:00
import net.minecraft.client.gui.inventory.GuiContainer;
2015-11-08 13:15:45 +01:00
import reborncore.common.util.ItemUtils;
2015-06-22 06:40:05 +02:00
import techreborn.api.recipe.IBaseRecipeType;
import techreborn.client.gui.GuiIndustrialElectrolyzer;
2015-07-24 23:29:00 +02:00
import techreborn.lib.Reference;
2015-06-22 06:40:05 +02:00
import java.awt.*;
2015-06-22 06:40:05 +02:00
import java.util.List;
public class IndustrialElectrolyzerRecipeHandler extends GenericRecipeHander implements INeiBaseRecipe {
@Override
public void addPositionedStacks(List<PositionedStack> input, List<PositionedStack> outputs, IBaseRecipeType recipeType) {
int offset = 4;
if (recipeType.getInputs().size() > 0) {
2015-09-11 14:34:20 +02:00
PositionedStack pStack = new PositionedStack(ItemUtils.getStackWithAllOre(recipeType.getInputs().get(0)), 80 - offset, 51 - offset, false);
input.add(pStack);
}
2015-06-22 06:40:05 +02:00
if (recipeType.getInputs().size() > 1) {
2015-09-11 14:34:20 +02:00
PositionedStack pStack2 = new PositionedStack(ItemUtils.getStackWithAllOre(recipeType.getInputs().get(1)), 50 - offset, 51 - offset, false);
input.add(pStack2);
}
2015-06-22 06:40:05 +02:00
if (recipeType.getOutputsSize() > 0) {
2015-09-11 14:34:20 +02:00
PositionedStack pStack3 = new PositionedStack(recipeType.getOutput(0), 50 - offset, 19 - offset, false);
outputs.add(pStack3);
}
2015-06-22 06:40:05 +02:00
if (recipeType.getOutputsSize() > 1) {
2015-09-11 14:34:20 +02:00
PositionedStack pStack4 = new PositionedStack(recipeType.getOutput(1), 70 - offset, 19 - offset, false);
outputs.add(pStack4);
}
if (recipeType.getOutputsSize() > 2) {
2015-09-11 14:34:20 +02:00
PositionedStack pStack5 = new PositionedStack(recipeType.getOutput(2), 90 - offset, 19 - offset, false);
outputs.add(pStack5);
}
if (recipeType.getOutputsSize() > 3) {
2015-09-11 14:34:20 +02:00
PositionedStack pStack6 = new PositionedStack(recipeType.getOutput(3), 110 - offset, 19 - offset, false);
outputs.add(pStack6);
}
}
2015-06-22 06:40:05 +02:00
@Override
public String getRecipeName() {
return Reference.industrialElectrolyzerRecipe;
}
2015-06-22 06:40:05 +02:00
@Override
public String getGuiTexture() {
return "techreborn:textures/gui/industrial_electrolyzer.png";
}
2015-06-22 06:40:05 +02:00
@Override
public Class<? extends GuiContainer> getGuiClass() {
return GuiIndustrialElectrolyzer.class;
}
@Override
public INeiBaseRecipe getNeiBaseRecipe() {
return this;
}
@Override
public void loadTransferRects() {
this.transferRects.add(new TemplateRecipeHandler.RecipeTransferRect(
new Rectangle(80, 20, 15, 15), getNeiBaseRecipe().getRecipeName(), new Object[0]));
}
2015-06-22 06:40:05 +02:00
}