2015-11-01 17:24:35 +01:00
|
|
|
package techreborn.compat.minetweaker;
|
|
|
|
|
2015-11-21 09:54:26 +01:00
|
|
|
import minetweaker.MineTweakerAPI;
|
2015-11-01 17:24:35 +01:00
|
|
|
import minetweaker.api.item.IIngredient;
|
|
|
|
import minetweaker.api.item.IItemStack;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import stanhebben.zenscript.annotations.ZenClass;
|
|
|
|
import stanhebben.zenscript.annotations.ZenMethod;
|
|
|
|
import techreborn.api.recipe.machines.AssemblingMachineRecipe;
|
2016-04-13 14:47:02 +02:00
|
|
|
import techreborn.api.Reference;
|
2015-11-01 17:24:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
@ZenClass("mods.techreborn.assemblingMachine")
|
2015-11-13 14:18:48 +01:00
|
|
|
public class MTAssemblingMachine extends MTGeneric {
|
2015-11-01 17:24:35 +01:00
|
|
|
|
2015-11-21 09:54:26 +01:00
|
|
|
|
2015-11-08 13:15:45 +01:00
|
|
|
@ZenMethod
|
|
|
|
public static void addRecipe(IItemStack output, IIngredient input1, IIngredient input2, int ticktime, int euTick) {
|
|
|
|
ItemStack oInput1 = (ItemStack) MinetweakerCompat.toObject(input1);
|
|
|
|
ItemStack oInput2 = (ItemStack) MinetweakerCompat.toObject(input2);
|
|
|
|
|
|
|
|
AssemblingMachineRecipe r = new AssemblingMachineRecipe(oInput1, oInput2, MinetweakerCompat.toStack(output), ticktime, euTick);
|
|
|
|
|
2015-11-13 14:18:48 +01:00
|
|
|
addRecipe(r);
|
2015-11-08 13:15:45 +01:00
|
|
|
}
|
|
|
|
|
2015-11-21 09:54:26 +01:00
|
|
|
@ZenMethod
|
|
|
|
public static void removeInputRecipe(IIngredient iIngredient) {
|
|
|
|
MineTweakerAPI.apply(new RemoveInput(iIngredient, getMachineName()));
|
|
|
|
}
|
|
|
|
|
|
|
|
@ZenMethod
|
|
|
|
public static void removeRecipe(IItemStack output) {
|
|
|
|
MineTweakerAPI.apply(new Remove(MinetweakerCompat.toStack(output), getMachineName()));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getMachineName() {
|
2015-11-13 14:18:48 +01:00
|
|
|
return Reference.assemblingMachineRecipe;
|
2015-11-08 13:15:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-01 17:24:35 +01:00
|
|
|
}
|