From 1fa7f88a775116473e1e0c8339872f495b240c08 Mon Sep 17 00:00:00 2001 From: Jared Date: Sun, 17 Jan 2021 19:22:37 +0200 Subject: [PATCH] Add CraftTweaker Support (#1751) * Register the recipe types with the correct name * Add CraftTweaker to the build.gradle Going to change this to compile only when I'm done * Add ARC support * Add BloodAltar support * Add Alchemy Array support * Add TartaricForge Support * Add AlchemyTable support * Update CraftTweaker --- build.gradle | 3 + .../common/recipe/BloodMagicRecipeType.java | 11 +-- .../bloodmagic/compat/crt/ARCManager.java | 74 +++++++++++++++++++ .../compat/crt/AlchemyArrayManager.java | 63 ++++++++++++++++ .../compat/crt/AlchemyTableManager.java | 63 ++++++++++++++++ .../compat/crt/BloodAltarManager.java | 67 +++++++++++++++++ .../compat/crt/TartaricForgeManager.java | 68 +++++++++++++++++ 7 files changed, 344 insertions(+), 5 deletions(-) create mode 100644 src/main/java/wayoftime/bloodmagic/compat/crt/ARCManager.java create mode 100644 src/main/java/wayoftime/bloodmagic/compat/crt/AlchemyArrayManager.java create mode 100644 src/main/java/wayoftime/bloodmagic/compat/crt/AlchemyTableManager.java create mode 100644 src/main/java/wayoftime/bloodmagic/compat/crt/BloodAltarManager.java create mode 100644 src/main/java/wayoftime/bloodmagic/compat/crt/TartaricForgeManager.java diff --git a/build.gradle b/build.gradle index 3d6920b6..0ab49402 100644 --- a/build.gradle +++ b/build.gradle @@ -118,6 +118,9 @@ dependencies { compileOnly fg.deobf("vazkii.patchouli:Patchouli:${patchouli_version}:api") runtimeOnly fg.deobf("vazkii.patchouli:Patchouli:${patchouli_version}") + + compileOnly fg.deobf("com.blamejared.crafttweaker:CraftTweaker-1.16.4:7.1.0.84") + // You may put jars on which you depend on in ./libs or you may define them like so.. // compile "some.group:artifact:version:classifier" // compile "some.group:artifact:version" diff --git a/src/main/java/wayoftime/bloodmagic/common/recipe/BloodMagicRecipeType.java b/src/main/java/wayoftime/bloodmagic/common/recipe/BloodMagicRecipeType.java index 7c70c83f..bd699910 100644 --- a/src/main/java/wayoftime/bloodmagic/common/recipe/BloodMagicRecipeType.java +++ b/src/main/java/wayoftime/bloodmagic/common/recipe/BloodMagicRecipeType.java @@ -1,6 +1,7 @@ package wayoftime.bloodmagic.common.recipe; import net.minecraft.item.crafting.IRecipeType; +import wayoftime.bloodmagic.BloodMagic; import wayoftime.bloodmagic.recipe.RecipeARC; import wayoftime.bloodmagic.recipe.RecipeAlchemyArray; import wayoftime.bloodmagic.recipe.RecipeAlchemyTable; @@ -9,9 +10,9 @@ import wayoftime.bloodmagic.recipe.RecipeTartaricForge; public class BloodMagicRecipeType { - public static final IRecipeType ALTAR = IRecipeType.register("altar"); - public static final IRecipeType ARRAY = IRecipeType.register("array"); - public static final IRecipeType TARTARICFORGE = IRecipeType.register("soulforge"); - public static final IRecipeType ARC = IRecipeType.register("arc"); - public static final IRecipeType ALCHEMYTABLE = IRecipeType.register("alchemytable"); + public static final IRecipeType ALTAR = IRecipeType.register(BloodMagic.MODID + ":altar"); + public static final IRecipeType ARRAY = IRecipeType.register(BloodMagic.MODID + ":array"); + public static final IRecipeType TARTARICFORGE = IRecipeType.register(BloodMagic.MODID + ":soulforge"); + public static final IRecipeType ARC = IRecipeType.register(BloodMagic.MODID + ":arc"); + public static final IRecipeType ALCHEMYTABLE = IRecipeType.register(BloodMagic.MODID + ":alchemytable"); } diff --git a/src/main/java/wayoftime/bloodmagic/compat/crt/ARCManager.java b/src/main/java/wayoftime/bloodmagic/compat/crt/ARCManager.java new file mode 100644 index 00000000..dc2c4749 --- /dev/null +++ b/src/main/java/wayoftime/bloodmagic/compat/crt/ARCManager.java @@ -0,0 +1,74 @@ +package wayoftime.bloodmagic.compat.crt; + +import com.blamejared.crafttweaker.api.CraftTweakerAPI; +import com.blamejared.crafttweaker.api.annotations.ZenRegister; +import com.blamejared.crafttweaker.api.fluid.IFluidStack; +import com.blamejared.crafttweaker.api.item.IIngredient; +import com.blamejared.crafttweaker.api.item.IItemStack; +import com.blamejared.crafttweaker.api.managers.IRecipeManager; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionAddRecipe; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionRemoveOutputRecipe; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionRemoveRecipeByOutput; +import com.blamejared.crafttweaker.impl.item.MCItemStackMutable; +import com.blamejared.crafttweaker.impl.item.MCWeightedItemStack; +import net.minecraft.item.ItemStack; +import net.minecraft.item.crafting.IRecipe; +import net.minecraft.item.crafting.IRecipeType; +import net.minecraft.util.ResourceLocation; +import org.apache.commons.lang3.tuple.Pair; +import org.openzen.zencode.java.ZenCodeType; +import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType; +import wayoftime.bloodmagic.recipe.RecipeARC; +import wayoftime.bloodmagic.recipe.helper.FluidStackIngredient; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@ZenRegister +@ZenCodeType.Name("mods.bloodmagic.ARC") +public class ARCManager implements IRecipeManager { + + @ZenCodeType.Method + public void addRecipe(String name, IItemStack output, IFluidStack outputFluid, IIngredient input, IFluidStack inputFluid, IIngredient arcTool, boolean consumeIngredient, @ZenCodeType.Optional MCWeightedItemStack[] addedItems) { + name = fixRecipeName(name); + ResourceLocation location = new ResourceLocation("crafttweaker", name); + List> addedItemsList = new ArrayList<>(); + if(addedItems != null) { + addedItemsList = Arrays.stream(addedItems).map(mcWeightedItemStack -> Pair.of(mcWeightedItemStack.getItemStack().getInternal(), mcWeightedItemStack.getWeight())).collect(Collectors.toList()); + } + RecipeARC recipeARC = new RecipeARC(location, input.asVanillaIngredient(), arcTool.asVanillaIngredient(), inputFluid.getInternal().isEmpty() ? null : FluidStackIngredient.from(inputFluid.getInternal()), output.getInternal(), addedItemsList, outputFluid.getInternal(), consumeIngredient); + CraftTweakerAPI.apply(new ActionAddRecipe(this, recipeARC, "")); + } + + @Override + public void removeRecipe(IItemStack output) { + + CraftTweakerAPI.apply(new ActionRemoveRecipeByOutput(this, output) { + @Override + public void apply() { + List toRemove = new ArrayList<>(); + for(ResourceLocation location : getManager().getRecipes().keySet()) { + IRecipe recipe = getManager().getRecipes().get(location); + if(recipe instanceof RecipeARC) { + RecipeARC recipeARC = (RecipeARC) recipe; + List allListedOutputs = recipeARC.getAllListedOutputs(); + // no other way to get the main output, and there may not even be a main output + if(allListedOutputs.size() > 0) { + if(output.matches(new MCItemStackMutable(allListedOutputs.get(0)))) { + toRemove.add(location); + } + } + } + } + toRemove.forEach(getManager().getRecipes()::remove); + } + }); + } + + @Override + public IRecipeType getRecipeType() { + return BloodMagicRecipeType.ARC; + } +} diff --git a/src/main/java/wayoftime/bloodmagic/compat/crt/AlchemyArrayManager.java b/src/main/java/wayoftime/bloodmagic/compat/crt/AlchemyArrayManager.java new file mode 100644 index 00000000..abc6a449 --- /dev/null +++ b/src/main/java/wayoftime/bloodmagic/compat/crt/AlchemyArrayManager.java @@ -0,0 +1,63 @@ +package wayoftime.bloodmagic.compat.crt; + +import com.blamejared.crafttweaker.api.CraftTweakerAPI; +import com.blamejared.crafttweaker.api.annotations.ZenRegister; +import com.blamejared.crafttweaker.api.item.IIngredient; +import com.blamejared.crafttweaker.api.item.IItemStack; +import com.blamejared.crafttweaker.api.managers.IRecipeManager; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionAddRecipe; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionRemoveRecipeByOutput; +import com.blamejared.crafttweaker.impl.item.MCItemStackMutable; +import net.minecraft.item.ItemStack; +import net.minecraft.item.crafting.IRecipe; +import net.minecraft.item.crafting.IRecipeType; +import net.minecraft.util.ResourceLocation; +import org.openzen.zencode.java.ZenCodeType; +import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType; +import wayoftime.bloodmagic.recipe.RecipeAlchemyArray; +import wayoftime.bloodmagic.recipe.RecipeAlchemyTable; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@ZenRegister +@ZenCodeType.Name("mods.bloodmagic.AlchemyArray") +public class AlchemyArrayManager implements IRecipeManager { + + @ZenCodeType.Method + public void addRecipe(String name, IItemStack output, IIngredient baseInput, IIngredient addedInput, ResourceLocation texture) { + name = fixRecipeName(name); + ResourceLocation location = new ResourceLocation("crafttweaker", name); + RecipeAlchemyArray recipe = new RecipeAlchemyArray(location, texture, baseInput.asVanillaIngredient(), addedInput.asVanillaIngredient(), output.getInternal()); + CraftTweakerAPI.apply(new ActionAddRecipe(this, recipe, "")); + } + + @Override + public void removeRecipe(IItemStack output) { + + CraftTweakerAPI.apply(new ActionRemoveRecipeByOutput(this, output) { + @Override + public void apply() { + List toRemove = new ArrayList<>(); + for(ResourceLocation location : getManager().getRecipes().keySet()) { + IRecipe recipe = getManager().getRecipes().get(location); + if(recipe instanceof RecipeAlchemyArray) { + RecipeAlchemyArray recipeAT = (RecipeAlchemyArray) recipe; + ItemStack recipeOutput = recipeAT.getOutput(); + if(output.matches(new MCItemStackMutable(recipeOutput))) { + toRemove.add(location); + } + } + } + toRemove.forEach(getManager().getRecipes()::remove); + } + }); + } + + @Override + public IRecipeType getRecipeType() { + return BloodMagicRecipeType.ARRAY; + } +} diff --git a/src/main/java/wayoftime/bloodmagic/compat/crt/AlchemyTableManager.java b/src/main/java/wayoftime/bloodmagic/compat/crt/AlchemyTableManager.java new file mode 100644 index 00000000..4a2e5221 --- /dev/null +++ b/src/main/java/wayoftime/bloodmagic/compat/crt/AlchemyTableManager.java @@ -0,0 +1,63 @@ +package wayoftime.bloodmagic.compat.crt; + +import com.blamejared.crafttweaker.api.CraftTweakerAPI; +import com.blamejared.crafttweaker.api.annotations.ZenRegister; +import com.blamejared.crafttweaker.api.item.IIngredient; +import com.blamejared.crafttweaker.api.item.IItemStack; +import com.blamejared.crafttweaker.api.managers.IRecipeManager; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionAddRecipe; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionRemoveRecipeByOutput; +import com.blamejared.crafttweaker.impl.item.MCItemStackMutable; +import net.minecraft.item.ItemStack; +import net.minecraft.item.crafting.IRecipe; +import net.minecraft.item.crafting.IRecipeType; +import net.minecraft.util.ResourceLocation; +import org.openzen.zencode.java.ZenCodeType; +import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType; +import wayoftime.bloodmagic.recipe.RecipeAlchemyTable; +import wayoftime.bloodmagic.recipe.RecipeTartaricForge; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@ZenRegister +@ZenCodeType.Name("mods.bloodmagic.AlchemyTable") +public class AlchemyTableManager implements IRecipeManager { + + @ZenCodeType.Method + public void addRecipe(String name, IItemStack output, IIngredient[] input, int syphon, int ticks, int minimumTier) { + name = fixRecipeName(name); + ResourceLocation location = new ResourceLocation("crafttweaker", name); + RecipeAlchemyTable recipe = new RecipeAlchemyTable(location, Arrays.stream(input).map(IIngredient::asVanillaIngredient).collect(Collectors.toList()), output.getInternal(), syphon, ticks, minimumTier); + CraftTweakerAPI.apply(new ActionAddRecipe(this, recipe, "")); + } + + @Override + public void removeRecipe(IItemStack output) { + + CraftTweakerAPI.apply(new ActionRemoveRecipeByOutput(this, output) { + @Override + public void apply() { + List toRemove = new ArrayList<>(); + for(ResourceLocation location : getManager().getRecipes().keySet()) { + IRecipe recipe = getManager().getRecipes().get(location); + if(recipe instanceof RecipeAlchemyTable) { + RecipeAlchemyTable recipeAT = (RecipeAlchemyTable) recipe; + ItemStack recipeOutput = recipeAT.getOutput(); + if(output.matches(new MCItemStackMutable(recipeOutput))) { + toRemove.add(location); + } + } + } + toRemove.forEach(getManager().getRecipes()::remove); + } + }); + } + + @Override + public IRecipeType getRecipeType() { + return BloodMagicRecipeType.ALCHEMYTABLE; + } +} diff --git a/src/main/java/wayoftime/bloodmagic/compat/crt/BloodAltarManager.java b/src/main/java/wayoftime/bloodmagic/compat/crt/BloodAltarManager.java new file mode 100644 index 00000000..5a740bfa --- /dev/null +++ b/src/main/java/wayoftime/bloodmagic/compat/crt/BloodAltarManager.java @@ -0,0 +1,67 @@ +package wayoftime.bloodmagic.compat.crt; + +import com.blamejared.crafttweaker.api.CraftTweakerAPI; +import com.blamejared.crafttweaker.api.annotations.ZenRegister; +import com.blamejared.crafttweaker.api.fluid.IFluidStack; +import com.blamejared.crafttweaker.api.item.IIngredient; +import com.blamejared.crafttweaker.api.item.IItemStack; +import com.blamejared.crafttweaker.api.managers.IRecipeManager; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionAddRecipe; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionRemoveRecipeByOutput; +import com.blamejared.crafttweaker.impl.item.MCItemStackMutable; +import com.blamejared.crafttweaker.impl.item.MCWeightedItemStack; +import net.minecraft.item.ItemStack; +import net.minecraft.item.crafting.IRecipe; +import net.minecraft.item.crafting.IRecipeType; +import net.minecraft.util.ResourceLocation; +import org.apache.commons.lang3.tuple.Pair; +import org.openzen.zencode.java.ZenCodeType; +import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType; +import wayoftime.bloodmagic.recipe.RecipeARC; +import wayoftime.bloodmagic.recipe.RecipeBloodAltar; +import wayoftime.bloodmagic.recipe.helper.FluidStackIngredient; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@ZenRegister +@ZenCodeType.Name("mods.bloodmagic.BloodAltar") +public class BloodAltarManager implements IRecipeManager { + + @ZenCodeType.Method + public void addRecipe(String name, IItemStack output, IIngredient input, int minimumTier, int syphon, int consumeRate, int drainRate) { + name = fixRecipeName(name); + ResourceLocation location = new ResourceLocation("crafttweaker", name); + RecipeBloodAltar recipeARC = new RecipeBloodAltar(location, input.asVanillaIngredient(), output.getInternal(), minimumTier, syphon, consumeRate, drainRate); + CraftTweakerAPI.apply(new ActionAddRecipe(this, recipeARC, "")); + } + + @Override + public void removeRecipe(IItemStack output) { + + CraftTweakerAPI.apply(new ActionRemoveRecipeByOutput(this, output) { + @Override + public void apply() { + List toRemove = new ArrayList<>(); + for(ResourceLocation location : getManager().getRecipes().keySet()) { + IRecipe recipe = getManager().getRecipes().get(location); + if(recipe instanceof RecipeBloodAltar) { + RecipeBloodAltar recipeBloodAltar = (RecipeBloodAltar) recipe; + ItemStack recOut = recipeBloodAltar.getOutput(); + if(output.matches(new MCItemStackMutable(recOut))) { + toRemove.add(location); + } + } + } + toRemove.forEach(getManager().getRecipes()::remove); + } + }); + } + + @Override + public IRecipeType getRecipeType() { + return BloodMagicRecipeType.ALTAR; + } +} diff --git a/src/main/java/wayoftime/bloodmagic/compat/crt/TartaricForgeManager.java b/src/main/java/wayoftime/bloodmagic/compat/crt/TartaricForgeManager.java new file mode 100644 index 00000000..1a45d208 --- /dev/null +++ b/src/main/java/wayoftime/bloodmagic/compat/crt/TartaricForgeManager.java @@ -0,0 +1,68 @@ +package wayoftime.bloodmagic.compat.crt; + +import com.blamejared.crafttweaker.api.CraftTweakerAPI; +import com.blamejared.crafttweaker.api.annotations.ZenRegister; +import com.blamejared.crafttweaker.api.fluid.IFluidStack; +import com.blamejared.crafttweaker.api.item.IIngredient; +import com.blamejared.crafttweaker.api.item.IItemStack; +import com.blamejared.crafttweaker.api.managers.IRecipeManager; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionAddRecipe; +import com.blamejared.crafttweaker.impl.actions.recipes.ActionRemoveRecipeByOutput; +import com.blamejared.crafttweaker.impl.item.MCItemStackMutable; +import com.blamejared.crafttweaker.impl.item.MCWeightedItemStack; +import net.minecraft.item.ItemStack; +import net.minecraft.item.crafting.IRecipe; +import net.minecraft.item.crafting.IRecipeType; +import net.minecraft.util.ResourceLocation; +import org.apache.commons.lang3.tuple.Pair; +import org.openzen.zencode.java.ZenCodeType; +import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType; +import wayoftime.bloodmagic.recipe.RecipeARC; +import wayoftime.bloodmagic.recipe.RecipeTartaricForge; +import wayoftime.bloodmagic.recipe.helper.FluidStackIngredient; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.function.BiFunction; +import java.util.stream.Collectors; + +@ZenRegister +@ZenCodeType.Name("mods.bloodmagic.TartaricForge") +public class TartaricForgeManager implements IRecipeManager { + + @ZenCodeType.Method + public void addRecipe(String name, IItemStack output, IIngredient[] input, double minimumSouls, double soulDrain) { + name = fixRecipeName(name); + ResourceLocation location = new ResourceLocation("crafttweaker", name); + RecipeTartaricForge recipe = new RecipeTartaricForge(location, Arrays.stream(input).map(IIngredient::asVanillaIngredient).collect(Collectors.toList()), output.getInternal(), minimumSouls, soulDrain); + CraftTweakerAPI.apply(new ActionAddRecipe(this, recipe, "")); + } + + @Override + public void removeRecipe(IItemStack output) { + + CraftTweakerAPI.apply(new ActionRemoveRecipeByOutput(this, output) { + @Override + public void apply() { + List toRemove = new ArrayList<>(); + for(ResourceLocation location : getManager().getRecipes().keySet()) { + IRecipe recipe = getManager().getRecipes().get(location); + if(recipe instanceof RecipeTartaricForge) { + RecipeTartaricForge recipeTF = (RecipeTartaricForge) recipe; + ItemStack recipeOutput = recipeTF.getOutput(); + if(output.matches(new MCItemStackMutable(recipeOutput))) { + toRemove.add(location); + } + } + } + toRemove.forEach(getManager().getRecipes()::remove); + } + }); + } + + @Override + public IRecipeType getRecipeType() { + return BloodMagicRecipeType.TARTARICFORGE; + } +}