summaryrefslogtreecommitdiffstats
path: root/nms-patches/ShapelessRecipes.patch
blob: 8b7e92dd6806a3da30f473cb000097f0748258f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
--- a/net/minecraft/server/ShapelessRecipes.java
+++ b/net/minecraft/server/ShapelessRecipes.java
@@ -5,6 +5,13 @@
 import com.google.gson.JsonParseException;
 import it.unimi.dsi.fastutil.ints.IntList;
 import java.util.Iterator;
+// CraftBukkit start
+import java.util.ArrayList;
+import java.util.List;
+import org.bukkit.craftbukkit.inventory.CraftItemStack;
+import org.bukkit.craftbukkit.inventory.CraftShapelessRecipe;
+import org.bukkit.craftbukkit.util.CraftMagicNumbers;
+// CraftBukkit end
 
 public class ShapelessRecipes implements IRecipe {
 
@@ -20,6 +27,26 @@
         this.ingredients = nonnulllist;
     }
 
+    // CraftBukkit start
+    @SuppressWarnings("unchecked")
+    public org.bukkit.inventory.ShapelessRecipe toBukkitRecipe() {
+        CraftItemStack result = CraftItemStack.asCraftMirror(this.result);
+        CraftShapelessRecipe recipe = new CraftShapelessRecipe(result, this);
+        recipe.setGroup(this.group);
+
+        for (RecipeItemStack list : this.ingredients) {
+            list.buildChoices();
+
+            List<org.bukkit.Material> choices = new ArrayList<>(list.choices.length);
+            for (ItemStack i : list.choices) {
+                choices.add(CraftMagicNumbers.getMaterial(i.getItem()));
+            }
+            recipe.addIngredient(new org.bukkit.inventory.RecipeChoice.MaterialChoice(choices));
+        }
+        return recipe;
+    }
+    // CraftBukkit end
+
     public MinecraftKey getKey() {
         return this.key;
     }
@@ -127,11 +154,11 @@
             packetdataserializer.a(shapelessrecipes.result);
         }
 
-        public IRecipe a(MinecraftKey minecraftkey, PacketDataSerializer packetdataserializer) {
+        public ShapelessRecipes a(MinecraftKey minecraftkey, PacketDataSerializer packetdataserializer) { // CraftBukkit - decompile error
             return this.b(minecraftkey, packetdataserializer);
         }
 
-        public IRecipe a(MinecraftKey minecraftkey, JsonObject jsonobject) {
+        public ShapelessRecipes a(MinecraftKey minecraftkey, JsonObject jsonobject) { // CraftBukkit - decompile error
             return this.b(minecraftkey, jsonobject);
         }
     }