TechReborn/src/main/java/techreborn/compat/jei/BaseRecipeWrapper.java

97 lines
2.6 KiB
Java
Raw Normal View History

2016-03-13 17:08:30 +01:00
package techreborn.compat.jei;
2016-09-27 18:03:57 +02:00
import mezz.jei.api.ingredients.IIngredients;
2016-03-25 10:47:34 +01:00
import mezz.jei.api.recipe.BlankRecipeWrapper;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;
2016-03-25 10:47:34 +01:00
import net.minecraftforge.oredict.OreDictionary;
import techreborn.api.recipe.BaseRecipe;
2016-10-08 21:46:16 +02:00
import javax.annotation.Nonnull;
import java.util.*;
public abstract class BaseRecipeWrapper<T extends BaseRecipe> extends BlankRecipeWrapper {
2016-03-13 17:08:30 +01:00
protected final T baseRecipe;
@Nonnull
private final List<List<ItemStack>> inputs;
@Nonnull
private final List<List<ItemStack>> outputs;
2016-03-13 17:08:30 +01:00
2016-10-08 21:46:16 +02:00
public BaseRecipeWrapper(T baseRecipe) {
2016-03-13 17:08:30 +01:00
this.baseRecipe = baseRecipe;
inputs = new ArrayList<>();
outputs = new ArrayList<>();
for (Object input : baseRecipe.getInputs()) {
if(input instanceof ItemStack){
ItemStack stack = (ItemStack) input;
if (baseRecipe.useOreDic()) {
List<ItemStack> oreDictInputs = expandOreDict(stack);
inputs.add(oreDictInputs);
} else {
inputs.add(Collections.singletonList(stack));
}
} else if (input instanceof String){
inputs.add(OreDictionary.getOres((String) input));
2016-03-13 17:08:30 +01:00
}
}
for (ItemStack input : baseRecipe.getOutputs()) {
if (baseRecipe.useOreDic()) {
List<ItemStack> oreDictInputs = expandOreDict(input);
outputs.add(oreDictInputs);
} else {
outputs.add(Collections.singletonList(input));
}
}
2016-03-13 17:08:30 +01:00
}
2016-10-08 21:46:16 +02:00
private static List<ItemStack> expandOreDict(ItemStack itemStack) {
2016-03-13 17:08:30 +01:00
int[] oreIds = OreDictionary.getOreIDs(itemStack);
2016-10-08 21:46:16 +02:00
if (oreIds.length == 0) {
2016-03-13 17:08:30 +01:00
return Collections.singletonList(itemStack);
}
Set<ItemStack> itemStackSet = new HashSet<>();
2016-10-08 21:46:16 +02:00
for (int oreId : oreIds) {
2016-03-13 17:08:30 +01:00
String oreName = OreDictionary.getOreName(oreId);
List<ItemStack> ores = OreDictionary.getOres(oreName);
2016-10-08 21:46:16 +02:00
for (ItemStack ore : ores) {
if (ore.getCount() != itemStack.getCount()) {
2016-03-13 17:08:30 +01:00
ItemStack oreCopy = ore.copy();
oreCopy.setCount(itemStack.getCount());
2016-03-13 17:08:30 +01:00
itemStackSet.add(oreCopy);
2016-10-08 21:46:16 +02:00
} else {
2016-03-13 17:08:30 +01:00
itemStackSet.add(ore);
}
}
}
return new ArrayList<>(itemStackSet);
}
2016-09-27 18:03:57 +02:00
@Override
2016-10-08 21:46:16 +02:00
public void getIngredients(
@Nonnull
IIngredients ingredients) {
2016-09-27 18:03:57 +02:00
ingredients.setInputLists(ItemStack.class, inputs);
ingredients.setOutputs(ItemStack.class, baseRecipe.getOutputs());
}
2016-03-13 17:08:30 +01:00
@Nonnull
2016-10-08 21:46:16 +02:00
public List<List<ItemStack>> getInputs() {
2016-03-13 17:08:30 +01:00
return inputs;
}
2016-12-05 11:48:21 +01:00
public List<FluidStack> getFluidInputs() {
return new ArrayList<>();
}
2016-03-13 17:08:30 +01:00
@Nonnull
2016-10-08 21:46:16 +02:00
public List<ItemStack> getOutputs() {
List<ItemStack> stacks = new ArrayList<>();
2016-12-05 11:48:21 +01:00
for (List<ItemStack> stackList : outputs) {
stacks.addAll(stackList);
}
return stacks;
2016-03-13 17:08:30 +01:00
}
}