Applied-Energistics-2-tiler.../src/main/java/appeng/integration/modules/NEIHelpers/NEIAEShapelessRecipeHandler.java
LordMZTE f67fb6a129
Some checks failed
continuous-integration/drone/push Build is failing
chore: format code
2022-12-02 17:40:47 +01:00

237 lines
8.7 KiB
Java

/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
package appeng.integration.modules.NEIHelpers;
import java.awt.*;
import java.util.ArrayList;
import java.util.List;
import appeng.api.exceptions.MissingIngredientError;
import appeng.api.exceptions.RegistrationError;
import appeng.api.recipes.IIngredient;
import appeng.core.AEConfig;
import appeng.recipes.game.ShapelessRecipe;
import appeng.util.Platform;
import codechicken.nei.NEIClientUtils;
import codechicken.nei.NEIServerUtils;
import codechicken.nei.PositionedStack;
import codechicken.nei.api.DefaultOverlayRenderer;
import codechicken.nei.api.IOverlayHandler;
import codechicken.nei.api.IRecipeOverlayRenderer;
import codechicken.nei.api.IStackPositioner;
import codechicken.nei.recipe.RecipeInfo;
import codechicken.nei.recipe.TemplateRecipeHandler;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.gui.inventory.GuiCrafting;
import net.minecraft.inventory.Container;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.CraftingManager;
import net.minecraft.item.crafting.IRecipe;
public class NEIAEShapelessRecipeHandler extends TemplateRecipeHandler {
@Override
public void loadTransferRects() {
this.transferRects.add(new TemplateRecipeHandler.RecipeTransferRect(
new Rectangle(84, 23, 24, 18), "crafting"
));
}
@Override
public void loadCraftingRecipes(final String outputId, final Object... results) {
if ((outputId.equals("crafting"))
&& (this.getClass() == NEIAEShapelessRecipeHandler.class)) {
final List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList();
for (final IRecipe recipe : recipes) {
if ((recipe instanceof ShapelessRecipe)) {
if (((ShapelessRecipe) recipe).isEnabled()) {
final CachedShapelessRecipe cachedRecipe
= new CachedShapelessRecipe((ShapelessRecipe) recipe);
cachedRecipe.computeVisuals();
this.arecipes.add(cachedRecipe);
}
}
}
} else {
super.loadCraftingRecipes(outputId, results);
}
}
@Override
public void loadCraftingRecipes(final ItemStack result) {
final List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList();
for (final IRecipe recipe : recipes) {
if ((recipe instanceof ShapelessRecipe)) {
if (((ShapelessRecipe) recipe).isEnabled()
&& NEIServerUtils.areStacksSameTypeCrafting(
recipe.getRecipeOutput(), result
)) {
final CachedShapelessRecipe cachedRecipe
= new CachedShapelessRecipe((ShapelessRecipe) recipe);
cachedRecipe.computeVisuals();
this.arecipes.add(cachedRecipe);
}
}
}
}
@Override
public void loadUsageRecipes(final ItemStack ingredient) {
final List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList();
for (final IRecipe recipe : recipes) {
if ((recipe instanceof ShapelessRecipe)) {
final CachedShapelessRecipe cachedRecipe
= new CachedShapelessRecipe((ShapelessRecipe) recipe);
if (((ShapelessRecipe) recipe).isEnabled()
&& cachedRecipe.contains(
cachedRecipe.ingredients, ingredient.getItem()
)) {
cachedRecipe.computeVisuals();
if (cachedRecipe.contains(cachedRecipe.ingredients, ingredient)) {
cachedRecipe.setIngredientPermutation(
cachedRecipe.ingredients, ingredient
);
this.arecipes.add(cachedRecipe);
}
}
}
}
}
@Override
public String getGuiTexture() {
return "textures/gui/container/crafting_table.png";
}
@Override
public String getOverlayIdentifier() {
return "crafting";
}
@Override
public Class<? extends GuiContainer> getGuiClass() {
return GuiCrafting.class;
}
@Override
public boolean
hasOverlay(final GuiContainer gui, final Container container, final int recipe) {
return (super.hasOverlay(gui, container, recipe))
|| ((this.isRecipe2x2(recipe))
&& (RecipeInfo.hasDefaultOverlay(gui, "crafting2x2")));
}
@Override
public IRecipeOverlayRenderer
getOverlayRenderer(final GuiContainer gui, final int recipe) {
final IRecipeOverlayRenderer renderer = super.getOverlayRenderer(gui, recipe);
if (renderer != null) {
return renderer;
}
final IStackPositioner positioner
= RecipeInfo.getStackPositioner(gui, "crafting2x2");
if (positioner == null) {
return null;
}
return new DefaultOverlayRenderer(this.getIngredientStacks(recipe), positioner);
}
@Override
public IOverlayHandler getOverlayHandler(final GuiContainer gui, final int recipe) {
final IOverlayHandler handler = super.getOverlayHandler(gui, recipe);
if (handler != null) {
return handler;
}
return RecipeInfo.getOverlayHandler(gui, "crafting2x2");
}
private boolean isRecipe2x2(final int recipe) {
for (final PositionedStack stack : this.getIngredientStacks(recipe)) {
if ((stack.relx > 43) || (stack.rely > 24)) {
return false;
}
}
return true;
}
@Override
public String getRecipeName() {
return NEIClientUtils.translate("recipe.shapeless");
}
private class CachedShapelessRecipe extends TemplateRecipeHandler.CachedRecipe {
private final List<PositionedStack> ingredients;
private final PositionedStack result;
public CachedShapelessRecipe(final ShapelessRecipe recipe) {
this.result = new PositionedStack(recipe.getRecipeOutput(), 119, 24);
this.ingredients = new ArrayList<PositionedStack>();
this.setIngredients(recipe.getInput().toArray());
}
@Override
public PositionedStack getResult() {
return this.result;
}
@Override
public List<PositionedStack> getIngredients() {
return this.getCycledIngredients(
NEIAEShapelessRecipeHandler.this.cycleticks / 20, this.ingredients
);
}
private void setIngredients(final Object[] items) {
final boolean useSingleItems
= AEConfig.instance.disableColoredCableRecipesInNEI();
for (int x = 0; x < 3; x++) {
for (int y = 0; y < 3; y++) {
if (items.length > (y * 3 + x)) {
final IIngredient ing = (IIngredient) items[(y * 3 + x)];
try {
final ItemStack[] is = ing.getItemStackSet();
final PositionedStack stack = new PositionedStack(
useSingleItems ? Platform.findPreferred(is)
: ing.getItemStackSet(),
25 + x * 18,
6 + y * 18,
false
);
stack.setMaxSize(1);
this.ingredients.add(stack);
} catch (final RegistrationError ignored) {
} catch (final MissingIngredientError ignored) {}
}
}
}
}
private void computeVisuals() {
for (final PositionedStack p : this.ingredients) {
p.generatePermutations();
}
this.result.generatePermutations();
}
}
}