2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/ShapedRecipes.java
|
|
|
|
+++ b/net/minecraft/server/ShapedRecipes.java
|
2017-05-19 13:00:13 +02:00
|
|
|
@@ -14,6 +14,10 @@
|
2017-05-14 04:00:00 +02:00
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Map.Entry;
|
|
|
|
import javax.annotation.Nullable;
|
2014-11-25 22:32:16 +01:00
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
|
|
+import org.bukkit.craftbukkit.inventory.CraftShapedRecipe;
|
|
|
|
+// CraftBukkit end
|
|
|
|
|
2017-05-30 13:25:59 +02:00
|
|
|
public class ShapedRecipes implements IRecipe {
|
2017-05-14 04:00:00 +02:00
|
|
|
|
2017-05-30 13:25:59 +02:00
|
|
|
@@ -22,6 +26,14 @@
|
|
|
|
private final NonNullList<RecipeItemStack> items;
|
|
|
|
private final ItemStack result;
|
|
|
|
private final String e;
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ public MinecraftKey key;
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setKey(MinecraftKey key) {
|
|
|
|
+ this.key = key;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
|
|
|
|
public ShapedRecipes(String s, int i, int j, NonNullList<RecipeItemStack> nonnulllist, ItemStack itemstack) {
|
|
|
|
this.e = s;
|
|
|
|
@@ -31,6 +43,63 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
this.result = itemstack;
|
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ public org.bukkit.inventory.ShapedRecipe toBukkitRecipe() {
|
|
|
|
+ CraftItemStack result = CraftItemStack.asCraftMirror(this.result);
|
|
|
|
+ CraftShapedRecipe recipe = new CraftShapedRecipe(result, this);
|
|
|
|
+ switch (this.height) {
|
|
|
|
+ case 1:
|
|
|
|
+ switch (this.width) {
|
|
|
|
+ case 1:
|
|
|
|
+ recipe.shape("a");
|
|
|
|
+ break;
|
|
|
|
+ case 2:
|
|
|
|
+ recipe.shape("ab");
|
|
|
|
+ break;
|
|
|
|
+ case 3:
|
|
|
|
+ recipe.shape("abc");
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
+ case 2:
|
|
|
|
+ switch (this.width) {
|
|
|
|
+ case 1:
|
|
|
|
+ recipe.shape("a","b");
|
|
|
|
+ break;
|
|
|
|
+ case 2:
|
|
|
|
+ recipe.shape("ab","cd");
|
|
|
|
+ break;
|
|
|
|
+ case 3:
|
|
|
|
+ recipe.shape("abc","def");
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
+ case 3:
|
|
|
|
+ switch (this.width) {
|
|
|
|
+ case 1:
|
|
|
|
+ recipe.shape("a","b","c");
|
|
|
|
+ break;
|
|
|
|
+ case 2:
|
|
|
|
+ recipe.shape("ab","cd","ef");
|
|
|
|
+ break;
|
|
|
|
+ case 3:
|
|
|
|
+ recipe.shape("abc","def","ghi");
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ char c = 'a';
|
2017-05-14 04:00:00 +02:00
|
|
|
+ for (RecipeItemStack list : this.items) {
|
|
|
|
+ if (list != null && list.choices.length > 0) {
|
|
|
|
+ net.minecraft.server.ItemStack stack = list.choices[0];
|
2017-06-14 23:23:08 +02:00
|
|
|
+ recipe.setIngredient(c, org.bukkit.craftbukkit.util.CraftMagicNumbers.getMaterial(stack.getItem()), (list.choices.length) > 1 ? 32767 : stack.getData());
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+ c++;
|
|
|
|
+ }
|
|
|
|
+ return recipe;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
public ItemStack b() {
|
|
|
|
return this.result;
|
2016-11-17 02:41:03 +01:00
|
|
|
}
|