TechReborn/src/main/java/techreborn/api/RollingMachineRecipe.java

122 lines
4.2 KiB
Java
Raw Normal View History

2015-04-15 18:27:05 +02:00
package techreborn.api;
2016-02-26 14:03:30 +01:00
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
2015-04-15 18:27:05 +02:00
import net.minecraft.block.Block;
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.item.crafting.ShapedRecipes;
import net.minecraft.item.crafting.ShapelessRecipes;
import net.minecraft.world.World;
2015-11-11 16:54:19 +01:00
import net.minecraftforge.oredict.ShapedOreRecipe;
import net.minecraftforge.oredict.ShapelessOreRecipe;
2015-04-15 18:27:05 +02:00
public class RollingMachineRecipe {
private final List<IRecipe> recipes = new ArrayList<IRecipe>();
2015-04-24 15:20:09 +02:00
public static final RollingMachineRecipe instance = new RollingMachineRecipe();
2015-04-24 15:20:09 +02:00
2015-11-11 16:54:19 +01:00
public void addShapedOreRecipe(ItemStack outputItemStack,
Object... objectInputs) {
recipes.add(new ShapedOreRecipe(outputItemStack, objectInputs));
}
public void addShapelessOreRecipe(ItemStack outputItemStack,
Object... objectInputs) {
recipes
.add(new ShapelessOreRecipe(outputItemStack, objectInputs));
}
public void addRecipe(ItemStack output, Object... components) {
String s = "";
int i = 0;
int j = 0;
int k = 0;
if (components[i] instanceof String[]) {
String as[] = (String[]) components[i++];
for (int l = 0; l < as.length; l++) {
String s2 = as[l];
k++;
j = s2.length();
s = (new StringBuilder()).append(s).append(s2).toString();
}
} else {
while (components[i] instanceof String) {
String s1 = (String) components[i++];
k++;
j = s1.length();
s = (new StringBuilder()).append(s).append(s1).toString();
}
}
HashMap hashmap = new HashMap();
for (; i < components.length; i += 2) {
Character character = (Character) components[i];
ItemStack itemstack1 = null;
if (components[i + 1] instanceof Item) {
itemstack1 = new ItemStack((Item) components[i + 1]);
} else if (components[i + 1] instanceof Block) {
itemstack1 = new ItemStack((Block) components[i + 1], 1, -1);
} else if (components[i + 1] instanceof ItemStack) {
itemstack1 = (ItemStack) components[i + 1];
}
hashmap.put(character, itemstack1);
}
2015-04-24 15:20:09 +02:00
ItemStack recipeArray[] = new ItemStack[j * k];
for (int i1 = 0; i1 < j * k; i1++) {
char c = s.charAt(i1);
if (hashmap.containsKey(Character.valueOf(c))) {
recipeArray[i1] = ((ItemStack) hashmap
.get(Character.valueOf(c))).copy();
} else {
recipeArray[i1] = null;
}
}
2015-04-24 15:20:09 +02:00
recipes.add(new ShapedRecipes(j, k, recipeArray, output));
}
2015-04-24 15:20:09 +02:00
public void addShapelessRecipe(ItemStack output, Object... components) {
List<ItemStack> ingredients = new ArrayList<ItemStack>();
for (int j = 0; j < components.length; j++) {
Object obj = components[j];
if (obj instanceof ItemStack) {
ingredients.add(((ItemStack) obj).copy());
continue;
}
if (obj instanceof Item) {
ingredients.add(new ItemStack((Item) obj));
continue;
}
if (obj instanceof Block) {
ingredients.add(new ItemStack((Block) obj));
} else {
throw new RuntimeException("Invalid shapeless recipe!");
}
}
2015-04-24 15:20:09 +02:00
recipes.add(new ShapelessRecipes(output, ingredients));
}
2015-04-24 15:20:09 +02:00
public ItemStack findMatchingRecipe(InventoryCrafting inv, World world) {
for (int k = 0; k < recipes.size(); k++) {
IRecipe irecipe = (IRecipe) recipes.get(k);
if (irecipe.matches(inv, world)) {
return irecipe.getCraftingResult(inv);
}
}
2015-04-24 15:20:09 +02:00
return null;
}
2015-04-24 15:20:09 +02:00
public List<IRecipe> getRecipeList() {
return recipes;
}
2015-04-15 18:27:05 +02:00
}