2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 20 Dec 2017 17:36:49 -0500
|
|
|
|
Subject: [PATCH] Ability to apply mending to XP API
|
|
|
|
|
|
|
|
This allows plugins that give players the ability to apply the experience
|
|
|
|
points to the Item Mending formula, which will repair an item instead
|
|
|
|
of giving the player experience points.
|
|
|
|
|
|
|
|
Both an API To standalone mend, and apply mending logic to .giveExp has been added.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/ExperienceOrb.java b/src/main/java/net/minecraft/world/entity/ExperienceOrb.java
|
2021-06-12 17:06:20 +02:00
|
|
|
index 8203c93dcb56646df2614f2233aaf3a36f745d1c..71fb831ed3359e7986e279c987211f39c581ab23 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/ExperienceOrb.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/ExperienceOrb.java
|
2021-06-12 17:06:20 +02:00
|
|
|
@@ -344,10 +344,12 @@ public class ExperienceOrb extends Entity {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public final int durToXp(int i) { return durabilityToXp(i); } // Paper OBFHELPER
|
|
|
|
private int durabilityToXp(int repairAmount) {
|
|
|
|
return repairAmount / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public final int xpToDur(int i) { return xpToDurability(i); } // Paper OBFHELPER
|
|
|
|
private int xpToDurability(int experienceAmount) {
|
|
|
|
return experienceAmount * 2;
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/item/enchantment/EnchantmentHelper.java b/src/main/java/net/minecraft/world/item/enchantment/EnchantmentHelper.java
|
2021-06-12 17:06:20 +02:00
|
|
|
index 27cdfbeb6cb2159075b35dd4f9e9557ec0eac7c2..d2d7b303e66bbba489e2003cc130dcd53e2a9854 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/item/enchantment/EnchantmentHelper.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/item/enchantment/EnchantmentHelper.java
|
2021-06-12 17:06:20 +02:00
|
|
|
@@ -246,8 +246,8 @@ public class EnchantmentHelper {
|
2021-06-11 14:02:28 +02:00
|
|
|
return getItemEnchantmentLevel(Enchantments.CHANNELING, stack) > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
- @Nullable
|
|
|
|
- public static Entry<EquipmentSlot, ItemStack> getRandomItemWith(Enchantment enchantment, LivingEntity entity) {
|
|
|
|
+ public static @javax.annotation.Nonnull ItemStack getRandomEquippedItemWithEnchant(Enchantment enchantment, LivingEntity entityliving) { Entry<EquipmentSlot, ItemStack> entry = getRandomItemWith(enchantment, entityliving); return entry != null ? entry.getValue() : ItemStack.NULL_ITEM; } // Paper - OBFHELPER
|
|
|
|
+ @Nullable public static Entry<EquipmentSlot, ItemStack> getRandomItemWith(Enchantment enchantment, LivingEntity entity) {
|
2021-06-12 17:06:20 +02:00
|
|
|
return getRandomItemWith(enchantment, entity, (stack) -> {
|
2021-06-11 14:02:28 +02:00
|
|
|
return true;
|
|
|
|
});
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
|
2021-06-12 17:06:20 +02:00
|
|
|
index ed1c57f22adc8b96012eca426ed1e7b409e7d663..b1778f53de7974e03c7b56b0df69e31cdae8dd62 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
|
2021-06-12 17:06:20 +02:00
|
|
|
@@ -61,11 +61,14 @@ import net.minecraft.server.level.ServerPlayer;
|
2021-06-11 14:02:28 +02:00
|
|
|
import net.minecraft.server.network.ServerGamePacketListenerImpl;
|
|
|
|
import net.minecraft.server.players.UserWhiteListEntry;
|
|
|
|
import net.minecraft.world.entity.Entity;
|
|
|
|
+import net.minecraft.world.entity.ExperienceOrb;
|
|
|
|
import net.minecraft.world.entity.LivingEntity;
|
|
|
|
import net.minecraft.world.entity.ai.attributes.AttributeInstance;
|
|
|
|
import net.minecraft.world.entity.ai.attributes.AttributeMap;
|
|
|
|
import net.minecraft.world.entity.ai.attributes.Attributes;
|
|
|
|
import net.minecraft.world.inventory.AbstractContainerMenu;
|
|
|
|
+import net.minecraft.world.item.enchantment.EnchantmentHelper;
|
|
|
|
+import net.minecraft.world.item.enchantment.Enchantments;
|
|
|
|
import net.minecraft.world.level.GameType;
|
2021-06-12 17:06:20 +02:00
|
|
|
import net.minecraft.world.level.block.Blocks;
|
2021-06-11 14:02:28 +02:00
|
|
|
import net.minecraft.world.level.block.entity.SignBlockEntity;
|
2021-06-12 17:06:20 +02:00
|
|
|
@@ -1189,8 +1192,37 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
|
|
|
return GameMode.getByValue(this.getHandle().gameMode.getGameModeForPlayer().getId());
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
2021-06-12 17:06:20 +02:00
|
|
|
+ @Override
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public int applyMending(int amount) {
|
|
|
|
+ ServerPlayer handle = getHandle();
|
|
|
|
+ // Logic copied from EntityExperienceOrb and remapped to unobfuscated methods/properties
|
|
|
|
+ net.minecraft.world.item.ItemStack itemstack = EnchantmentHelper.getRandomEquippedItemWithEnchant(Enchantments.MENDING, handle);
|
|
|
|
+ if (!itemstack.isEmpty() && itemstack.getItem().canBeDepleted()) {
|
|
|
|
+
|
|
|
|
+ ExperienceOrb orb = net.minecraft.world.entity.EntityType.EXPERIENCE_ORB.create(handle.level);
|
|
|
|
+ orb.value = amount;
|
|
|
|
+ orb.spawnReason = org.bukkit.entity.ExperienceOrb.SpawnReason.CUSTOM;
|
|
|
|
+ orb.setPosRaw(handle.getX(), handle.getY(), handle.getZ());
|
|
|
|
+
|
|
|
|
+ int i = Math.min(orb.xpToDur(amount), itemstack.getDamageValue());
|
|
|
|
+ org.bukkit.event.player.PlayerItemMendEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerItemMendEvent(handle, orb, itemstack, i);
|
|
|
|
+ i = event.getRepairAmount();
|
|
|
|
+ orb.removed = true;
|
|
|
|
+ if (!event.isCancelled()) {
|
|
|
|
+ amount -= orb.durToXp(i);
|
|
|
|
+ itemstack.setDamageValue(itemstack.getDamageValue() - i);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return amount;
|
|
|
|
+ }
|
|
|
|
+
|
2021-06-12 17:06:20 +02:00
|
|
|
@Override
|
|
|
|
- public void giveExp(int exp) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public void giveExp(int exp, boolean applyMending) {
|
|
|
|
+ if (applyMending) {
|
|
|
|
+ exp = this.applyMending(exp);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2021-06-12 17:06:20 +02:00
|
|
|
this.getHandle().giveExperiencePoints(exp);
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|