2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/ContainerEnchantTable.java
|
|
|
|
+++ b/net/minecraft/server/ContainerEnchantTable.java
|
2016-12-11 01:10:38 +01:00
|
|
|
@@ -3,6 +3,19 @@
|
2016-11-17 02:41:03 +01:00
|
|
|
import java.util.List;
|
2014-11-25 22:32:16 +01:00
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
+// CraftBukkit start
|
2016-12-11 01:10:38 +01:00
|
|
|
+import java.util.Collections;
|
2014-11-25 22:32:16 +01:00
|
|
|
+import java.util.Map;
|
2016-02-29 22:32:46 +01:00
|
|
|
+import org.bukkit.Location;
|
2014-11-25 22:32:16 +01:00
|
|
|
+import org.bukkit.craftbukkit.inventory.CraftInventoryEnchanting;
|
|
|
|
+import org.bukkit.craftbukkit.inventory.CraftInventoryView;
|
|
|
|
+import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
2016-12-11 01:10:38 +01:00
|
|
|
+import org.bukkit.enchantments.EnchantmentOffer;
|
2014-11-25 22:32:16 +01:00
|
|
|
+import org.bukkit.event.enchantment.EnchantItemEvent;
|
|
|
|
+import org.bukkit.event.enchantment.PrepareItemEnchantEvent;
|
|
|
|
+import org.bukkit.entity.Player;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public class ContainerEnchantTable extends Container {
|
|
|
|
|
2016-12-01 23:29:33 +01:00
|
|
|
public IInventory enchantSlots = new InventorySubcontainer("Enchant", true, 2) {
|
2016-12-11 01:10:38 +01:00
|
|
|
@@ -14,6 +27,13 @@
|
2016-02-29 22:32:46 +01:00
|
|
|
super.update();
|
|
|
|
ContainerEnchantTable.this.a((IInventory) this);
|
|
|
|
}
|
|
|
|
+
|
2016-12-01 23:29:33 +01:00
|
|
|
+ // CraftBukkit start
|
2016-02-29 22:32:46 +01:00
|
|
|
+ @Override
|
|
|
|
+ public Location getLocation() {
|
|
|
|
+ return new org.bukkit.Location(world.getWorld(), position.getX(), position.getY(), position.getZ());
|
|
|
|
+ }
|
2016-12-01 23:29:33 +01:00
|
|
|
+ // CraftBukkit end
|
2016-02-29 22:32:46 +01:00
|
|
|
};
|
2016-06-09 03:43:49 +02:00
|
|
|
public World world;
|
|
|
|
private final BlockPosition position;
|
2016-12-11 01:10:38 +01:00
|
|
|
@@ -22,6 +42,10 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
public int[] costs = new int[3];
|
|
|
|
public int[] h = new int[] { -1, -1, -1};
|
2016-02-29 22:32:46 +01:00
|
|
|
public int[] i = new int[] { -1, -1, -1};
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ private CraftInventoryView bukkitEntity = null;
|
|
|
|
+ private Player player;
|
|
|
|
+ // CraftBukkit end
|
|
|
|
|
|
|
|
public ContainerEnchantTable(PlayerInventory playerinventory, World world, BlockPosition blockposition) {
|
|
|
|
this.world = world;
|
2016-12-11 01:10:38 +01:00
|
|
|
@@ -54,6 +78,9 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
this.a(new Slot(playerinventory, i, 8 + i * 18, 142));
|
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ player = (Player) playerinventory.player.getBukkitEntity();
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
protected void c(ICrafting icrafting) {
|
2016-12-11 01:10:38 +01:00
|
|
|
@@ -90,7 +117,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
ItemStack itemstack = iinventory.getItem(0);
|
|
|
|
int i;
|
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
- if (!itemstack.isEmpty() && itemstack.canEnchant()) {
|
|
|
|
+ if (!itemstack.isEmpty()) { // CraftBukkit - relax condition
|
2015-02-26 23:41:06 +01:00
|
|
|
if (!this.world.isClientSide) {
|
2014-11-25 22:32:16 +01:00
|
|
|
i = 0;
|
|
|
|
|
2016-12-11 01:10:38 +01:00
|
|
|
@@ -152,6 +179,41 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ CraftItemStack item = CraftItemStack.asCraftMirror(itemstack);
|
2016-12-11 01:10:38 +01:00
|
|
|
+ org.bukkit.enchantments.EnchantmentOffer[] offers = new EnchantmentOffer[3];
|
|
|
|
+ for (i = 0; i < 3; ++i) {
|
2016-12-11 23:35:31 +01:00
|
|
|
+ org.bukkit.enchantments.Enchantment enchantment = (this.h[i] >= 0) ? org.bukkit.enchantments.Enchantment.getById(this.h[i]) : null;
|
|
|
|
+ offers[i] = (enchantment != null) ? new EnchantmentOffer(enchantment, this.i[i], this.costs[i]) : null;
|
2016-12-11 01:10:38 +01:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ PrepareItemEnchantEvent event = new PrepareItemEnchantEvent(player, this.getBukkitView(), this.world.getWorld().getBlockAt(position.getX(), position.getY(), position.getZ()), item, offers, i);
|
2016-11-17 02:41:03 +01:00
|
|
|
+ event.setCancelled(!itemstack.canEnchant());
|
2014-11-25 22:32:16 +01:00
|
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
+
|
|
|
|
+ if (event.isCancelled()) {
|
|
|
|
+ for (i = 0; i < 3; ++i) {
|
|
|
|
+ this.costs[i] = 0;
|
2016-12-11 01:10:38 +01:00
|
|
|
+ this.h[i] = -1;
|
|
|
|
+ this.i[i] = -1;
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+ return;
|
|
|
|
+ }
|
2016-12-11 01:10:38 +01:00
|
|
|
+
|
|
|
|
+ for (i = 0; i < 3; i++) {
|
|
|
|
+ EnchantmentOffer offer = event.getOffers()[i];
|
|
|
|
+ if (offer != null) {
|
|
|
|
+ this.costs[i] = offer.getCost();
|
|
|
|
+ this.h[i] = offer.getEnchantment().getId();
|
|
|
|
+ this.i[i] = offer.getEnchantmentLevel();
|
|
|
|
+ } else {
|
|
|
|
+ this.costs[i] = 0;
|
|
|
|
+ this.h[i] = -1;
|
|
|
|
+ this.i[i] = -1;
|
|
|
|
+ }
|
|
|
|
+ }
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2016-12-11 01:10:38 +01:00
|
|
|
this.b();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
@@ -174,27 +236,59 @@
|
|
|
|
return false;
|
2016-11-17 02:41:03 +01:00
|
|
|
} else if (this.costs[i] > 0 && !itemstack.isEmpty() && (entityhuman.expLevel >= j && entityhuman.expLevel >= this.costs[i] || entityhuman.abilities.canInstantlyBuild)) {
|
2015-02-26 23:41:06 +01:00
|
|
|
if (!this.world.isClientSide) {
|
2016-12-11 01:10:38 +01:00
|
|
|
- List list = this.a(itemstack, i, this.costs[i]);
|
|
|
|
+ // CraftBukkit start - Use the data generated by the PostPrepareItemEnchantEvent
|
|
|
|
+ List list;
|
|
|
|
+ if (this.h[i] < 0) {
|
|
|
|
+ list = this.a(itemstack, i, this.costs[i]);
|
|
|
|
+ } else {
|
|
|
|
+ list = Collections.singletonList(new WeightedRandomEnchant(Enchantment.c(this.h[i]), this.i[i]));
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2016-11-17 02:41:03 +01:00
|
|
|
+ boolean flag = itemstack.getItem() == Items.BOOK;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
- if (!list.isEmpty()) {
|
2015-07-30 08:56:52 +02:00
|
|
|
- entityhuman.enchantDone(j);
|
2016-11-17 02:41:03 +01:00
|
|
|
- boolean flag = itemstack.getItem() == Items.BOOK;
|
|
|
|
+ if (list != null) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ Map<org.bukkit.enchantments.Enchantment, Integer> enchants = new java.util.HashMap<org.bukkit.enchantments.Enchantment, Integer>();
|
|
|
|
+ for (Object obj : list) {
|
|
|
|
+ WeightedRandomEnchant instance = (WeightedRandomEnchant) obj;
|
2016-02-29 22:32:46 +01:00
|
|
|
+ enchants.put(org.bukkit.enchantments.Enchantment.getById(Enchantment.getId(instance.enchantment)), instance.level);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+ CraftItemStack item = CraftItemStack.asCraftMirror(itemstack);
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
+ EnchantItemEvent event = new EnchantItemEvent((Player) entityhuman.getBukkitEntity(), this.getBukkitView(), this.world.getWorld().getBlockAt(position.getX(), position.getY(), position.getZ()), item, this.costs[i], enchants, i);
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
2016-11-17 02:41:03 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ int level = event.getExpLevelCost();
|
|
|
|
+ if (event.isCancelled() || (level > entityhuman.expLevel && !entityhuman.abilities.canInstantlyBuild) || event.getEnchantsToAdd().isEmpty()) {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
if (flag) {
|
2016-11-17 02:41:03 +01:00
|
|
|
itemstack = new ItemStack(Items.ENCHANTED_BOOK);
|
|
|
|
this.enchantSlots.setItem(0, itemstack);
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
|
|
|
|
- for (int k = 0; k < list.size(); ++k) {
|
|
|
|
- WeightedRandomEnchant weightedrandomenchant = (WeightedRandomEnchant) list.get(k);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ for (Map.Entry<org.bukkit.enchantments.Enchantment, Integer> entry : event.getEnchantsToAdd().entrySet()) {
|
|
|
|
+ try {
|
|
|
|
+ if (flag) {
|
|
|
|
+ int enchantId = entry.getKey().getId();
|
2016-02-29 22:32:46 +01:00
|
|
|
+ if (Enchantment.c(enchantId) == null) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- if (flag) {
|
|
|
|
- Items.ENCHANTED_BOOK.a(itemstack, weightedrandomenchant);
|
|
|
|
- } else {
|
|
|
|
- itemstack.addEnchantment(weightedrandomenchant.enchantment, weightedrandomenchant.level);
|
2016-02-29 22:32:46 +01:00
|
|
|
+ WeightedRandomEnchant weightedrandomenchant = new WeightedRandomEnchant(Enchantment.c(enchantId), entry.getValue());
|
|
|
|
+ Items.ENCHANTED_BOOK.a(itemstack, weightedrandomenchant);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ } else {
|
|
|
|
+ item.addUnsafeEnchantment(entry.getKey(), entry.getValue());
|
|
|
|
+ }
|
|
|
|
+ } catch (IllegalArgumentException e) {
|
|
|
|
+ /* Just swallow invalid enchantments */
|
|
|
|
}
|
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2015-07-30 08:56:52 +02:00
|
|
|
+ entityhuman.enchantDone(j);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit - TODO: let plugins change this
|
|
|
|
if (!entityhuman.abilities.canInstantlyBuild) {
|
2016-11-17 02:41:03 +01:00
|
|
|
itemstack1.subtract(j);
|
|
|
|
if (itemstack1.isEmpty()) {
|
2016-12-11 01:10:38 +01:00
|
|
|
@@ -229,6 +323,11 @@
|
2015-01-31 17:43:37 +01:00
|
|
|
|
|
|
|
public void b(EntityHuman entityhuman) {
|
|
|
|
super.b(entityhuman);
|
|
|
|
+ // CraftBukkit Start - If an enchantable was opened from a null location, set the world to the player's world, preventing a crash
|
2016-06-09 03:43:49 +02:00
|
|
|
+ if (this.world == null) {
|
2015-01-31 17:43:37 +01:00
|
|
|
+ this.world = entityhuman.getWorld();
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
if (!this.world.isClientSide) {
|
2015-01-31 17:43:37 +01:00
|
|
|
for (int i = 0; i < this.enchantSlots.getSize(); ++i) {
|
|
|
|
ItemStack itemstack = this.enchantSlots.splitWithoutUpdate(i);
|
2016-12-11 01:10:38 +01:00
|
|
|
@@ -242,6 +341,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a(EntityHuman entityhuman) {
|
|
|
|
+ if (!this.checkReachable) return true; // CraftBukkit
|
2016-11-17 02:41:03 +01:00
|
|
|
return this.world.getType(this.position).getBlock() != Blocks.ENCHANTING_TABLE ? false : entityhuman.d((double) this.position.getX() + 0.5D, (double) this.position.getY() + 0.5D, (double) this.position.getZ() + 0.5D) <= 64.0D;
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2016-12-11 01:10:38 +01:00
|
|
|
@@ -294,4 +394,17 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
return itemstack;
|
2015-02-26 23:41:06 +01:00
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
+
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ @Override
|
|
|
|
+ public CraftInventoryView getBukkitView() {
|
|
|
|
+ if (bukkitEntity != null) {
|
|
|
|
+ return bukkitEntity;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ CraftInventoryEnchanting inventory = new CraftInventoryEnchanting(this.enchantSlots);
|
|
|
|
+ bukkitEntity = new CraftInventoryView(this.player, inventory, this);
|
|
|
|
+ return bukkitEntity;
|
2015-02-26 23:41:06 +01:00
|
|
|
+ }
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|