Skip to content

Commit c02ad46

Browse files
committed
Update SmithingTripRecipe
1 parent de93fda commit c02ad46

File tree

2 files changed

+28
-11
lines changed

2 files changed

+28
-11
lines changed

paper-api/src/main/java/org/bukkit/inventory/SmithingTrimRecipe.java

+16-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import org.bukkit.Material;
44
import org.bukkit.NamespacedKey;
5+
import org.bukkit.inventory.meta.trim.TrimPattern;
56
import org.jetbrains.annotations.NotNull;
67
import org.jetbrains.annotations.Nullable;
78

@@ -11,6 +12,7 @@
1112
public class SmithingTrimRecipe extends SmithingRecipe implements ComplexRecipe {
1213

1314
private final RecipeChoice template;
15+
private final TrimPattern pattern;
1416

1517
/**
1618
* Create a smithing recipe to produce the specified result ItemStack.
@@ -20,9 +22,10 @@ public class SmithingTrimRecipe extends SmithingRecipe implements ComplexRecipe
2022
* @param base The base ingredient ({@link RecipeChoice#empty()} can be used)
2123
* @param addition The addition ingredient ({@link RecipeChoice#empty()} can be used)
2224
*/
23-
public SmithingTrimRecipe(@NotNull NamespacedKey key, @NotNull RecipeChoice template, @NotNull RecipeChoice base, @NotNull RecipeChoice addition) { // Paper - fix issues with recipe api - prevent null choices
25+
public SmithingTrimRecipe(@NotNull NamespacedKey key, @NotNull RecipeChoice template, @NotNull RecipeChoice base, @NotNull RecipeChoice addition, @NotNull TrimPattern pattern) { // Paper - fix issues with recipe api - prevent null choices
2426
super(key, new ItemStack(Material.AIR), base, addition);
2527
this.template = template == null ? RecipeChoice.empty() : template.validate(true).clone(); // Paper
28+
this.pattern = pattern;
2629
}
2730
// Paper start
2831
/**
@@ -34,9 +37,10 @@ public SmithingTrimRecipe(@NotNull NamespacedKey key, @NotNull RecipeChoice temp
3437
* @param addition The addition ingredient ({@link RecipeChoice#empty()} can be used)
3538
* @param copyDataComponents whether to copy the data components from the input base item to the output
3639
*/
37-
public SmithingTrimRecipe(@NotNull NamespacedKey key, @NotNull RecipeChoice template, @NotNull RecipeChoice base, @NotNull RecipeChoice addition, boolean copyDataComponents) { // Paper - fix issues with recipe api - prevent null choices
40+
public SmithingTrimRecipe(@NotNull NamespacedKey key, @NotNull RecipeChoice template, @NotNull RecipeChoice base, @NotNull RecipeChoice addition, @NotNull TrimPattern pattern, boolean copyDataComponents) { // Paper - fix issues with recipe api - prevent null choices
3841
super(key, new ItemStack(Material.AIR), base, addition, copyDataComponents);
3942
this.template = template == null ? RecipeChoice.empty() : template.validate(true).clone(); // Paper
43+
this.pattern = pattern;
4044
}
4145
// Paper end
4246

@@ -49,4 +53,14 @@ public SmithingTrimRecipe(@NotNull NamespacedKey key, @NotNull RecipeChoice temp
4953
public RecipeChoice getTemplate() {
5054
return (template != null) ? template.clone() : null;
5155
}
56+
57+
/**
58+
* Get the trim pattern.
59+
*
60+
* @return trim pattern
61+
*/
62+
@NotNull
63+
public TrimPattern getTrimPattern() {
64+
return pattern;
65+
}
5266
}

paper-server/src/main/java/org/bukkit/craftbukkit/inventory/CraftSmithingTrimRecipe.java

+12-9
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,37 @@
33
import net.minecraft.server.MinecraftServer;
44
import net.minecraft.world.item.crafting.RecipeHolder;
55
import org.bukkit.NamespacedKey;
6+
import org.bukkit.craftbukkit.inventory.trim.CraftTrimPattern;
67
import org.bukkit.inventory.RecipeChoice;
78
import org.bukkit.inventory.SmithingTrimRecipe;
9+
import org.bukkit.inventory.meta.trim.TrimPattern;
810

911
public class CraftSmithingTrimRecipe extends SmithingTrimRecipe implements CraftRecipe {
1012

11-
public CraftSmithingTrimRecipe(NamespacedKey key, RecipeChoice template, RecipeChoice base, RecipeChoice addition) {
12-
super(key, template, base, addition);
13+
public CraftSmithingTrimRecipe(NamespacedKey key, RecipeChoice template, RecipeChoice base, RecipeChoice addition, TrimPattern pattern) {
14+
super(key, template, base, addition, pattern);
1315
}
1416
// Paper start - Option to prevent data components copy
15-
public CraftSmithingTrimRecipe(NamespacedKey key, RecipeChoice template, RecipeChoice base, RecipeChoice addition, boolean copyDataComponents) {
16-
super(key, template, base, addition, copyDataComponents);
17+
public CraftSmithingTrimRecipe(NamespacedKey key, RecipeChoice template, RecipeChoice base, RecipeChoice addition, TrimPattern pattern, boolean copyDataComponents) {
18+
super(key, template, base, addition, pattern, copyDataComponents);
1719
}
1820
// Paper end - Option to prevent data components copy
1921

2022
public static CraftSmithingTrimRecipe fromBukkitRecipe(SmithingTrimRecipe recipe) {
2123
if (recipe instanceof CraftSmithingTrimRecipe) {
2224
return (CraftSmithingTrimRecipe) recipe;
2325
}
24-
CraftSmithingTrimRecipe ret = new CraftSmithingTrimRecipe(recipe.getKey(), recipe.getTemplate(), recipe.getBase(), recipe.getAddition(), recipe.willCopyDataComponents()); // Paper - Option to prevent data components copy
26+
CraftSmithingTrimRecipe ret = new CraftSmithingTrimRecipe(recipe.getKey(), recipe.getTemplate(), recipe.getBase(), recipe.getAddition(), recipe.getTrimPattern(), recipe.willCopyDataComponents()); // Paper - Option to prevent data components copy
2527
return ret;
2628
}
2729

2830
@Override
2931
public void addToCraftingManager() {
30-
final SmithingTrimRecipe recipe = new SmithingTrimRecipe(
31-
this.toNMSOptional(this.getTemplate(), false),
32-
this.toNMSOptional(this.getBase(), false),
33-
this.toNMSOptional(this.getAddition(), false),
32+
final net.minecraft.world.item.crafting.SmithingTrimRecipe recipe = new net.minecraft.world.item.crafting.SmithingTrimRecipe(
33+
this.toNMS(this.getTemplate(), false),
34+
this.toNMS(this.getBase(), false),
35+
this.toNMS(this.getAddition(), false),
36+
CraftTrimPattern.bukkitToMinecraftHolder(this.getTrimPattern()),
3437
this.willCopyDataComponents()
3538
);
3639
MinecraftServer.getServer().getRecipeManager().addRecipe(new RecipeHolder<>(CraftRecipe.toMinecraft(this.getKey()), recipe));

0 commit comments

Comments
 (0)