Got the RollingMachine working
This commit is contained in:
parent
8e7d6b011e
commit
b7ccae4b8c
7 changed files with 278 additions and 151 deletions
112
src/main/java/techreborn/api/RollingMachineRecipe.java
Normal file
112
src/main/java/techreborn/api/RollingMachineRecipe.java
Normal file
|
@ -0,0 +1,112 @@
|
|||
package techreborn.api;
|
||||
|
||||
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;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
public class RollingMachineRecipe {
|
||||
|
||||
private final List<IRecipe> recipes = new ArrayList<IRecipe>();
|
||||
|
||||
public static final RollingMachineRecipe instance = new RollingMachineRecipe();
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
recipes.add(new ShapedRecipes(j, k, recipeArray, output));
|
||||
}
|
||||
|
||||
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!");
|
||||
}
|
||||
}
|
||||
|
||||
recipes.add(new ShapelessRecipes(output, ingredients));
|
||||
}
|
||||
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
public List<IRecipe> getRecipeList() {
|
||||
return recipes;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue