Paper/nms-patches/EntityVillager.patch

90 lines
4.0 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/EntityVillager.java
+++ b/net/minecraft/server/EntityVillager.java
2016-11-17 02:41:03 +01:00
@@ -6,6 +6,14 @@
2016-05-10 13:47:39 +02:00
import javax.annotation.Nullable;
2016-11-17 02:41:03 +01:00
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
2016-05-10 13:47:39 +02:00
+// CraftBukkit start
2016-02-29 22:32:46 +01:00
+import org.bukkit.Bukkit;
2016-05-10 13:47:39 +02:00
+import org.bukkit.craftbukkit.entity.CraftVillager;
2016-02-29 22:32:46 +01:00
+import org.bukkit.craftbukkit.inventory.CraftMerchantRecipe;
+import org.bukkit.entity.Villager;
+import org.bukkit.event.entity.VillagerAcquireTradeEvent;
+import org.bukkit.event.entity.VillagerReplenishTradeEvent;
2016-05-10 13:47:39 +02:00
+// CraftBukkit end
2016-11-17 02:41:03 +01:00
public class EntityVillager extends EntityAgeable implements NPC, IMerchant {
2017-12-31 11:21:03 +01:00
@@ -18,13 +26,13 @@
@Nullable
private EntityHuman tradingPlayer;
@Nullable
- private MerchantRecipeList trades;
+ public MerchantRecipeList trades; // PAIL private -> public
private int bF;
private boolean bG;
private boolean bH;
public int riches;
private String bJ;
- private int bK;
+ public int bK; // PAIL private -> public // PAIL rename careerID
private int bL;
private boolean bM;
private boolean bN;
2017-05-14 04:00:00 +02:00
@@ -37,7 +45,7 @@
public EntityVillager(World world, int i) {
super(world);
- this.inventory = new InventorySubcontainer("Items", false, 8);
+ this.inventory = new InventorySubcontainer("Items", false, 8, (CraftVillager) this.getBukkitEntity()); // CraftBukkit add argument
this.setProfession(i);
2016-02-29 22:32:46 +01:00
this.setSize(0.6F, 1.95F);
((Navigation) this.getNavigation()).a(true);
2017-05-14 04:00:00 +02:00
@@ -119,7 +127,14 @@
2016-02-29 22:32:46 +01:00
MerchantRecipe merchantrecipe = (MerchantRecipe) iterator.next();
if (merchantrecipe.h()) {
- merchantrecipe.a(this.random.nextInt(6) + this.random.nextInt(6) + 2);
+ // CraftBukkit start
+ int bonus = this.random.nextInt(6) + this.random.nextInt(6) + 2;
+ VillagerReplenishTradeEvent event = new VillagerReplenishTradeEvent((Villager) this.getBukkitEntity(), merchantrecipe.asBukkit(), bonus);
+ Bukkit.getPluginManager().callEvent(event);
+ if (!event.isCancelled()) {
+ merchantrecipe.a(event.getBonus());
+ }
+ // CraftBukkit end
}
}
2017-12-31 11:21:03 +01:00
@@ -432,7 +447,7 @@
return this.trades;
}
- private void dx() {
+ public void dx() { // CraftBukkit private -> public // PAIL rename populateTrades
EntityVillager.IMerchantRecipeOption[][][] aentityvillager_imerchantrecipeoption = EntityVillager.bP[this.getProfession()];
if (this.bK != 0 && this.bL != 0) {
2017-05-14 04:00:00 +02:00
@@ -460,7 +475,20 @@
2016-11-17 02:41:03 +01:00
for (int l = 0; l < k; ++l) {
EntityVillager.IMerchantRecipeOption entityvillager_imerchantrecipeoption = aentityvillager_imerchantrecipeoption3[l];
2016-02-29 22:32:46 +01:00
2016-11-17 02:41:03 +01:00
- entityvillager_imerchantrecipeoption.a(this, this.trades, this.random);
+ // CraftBukkit start
+ // this is a hack. this must be done because otherwise, if
+ // mojang adds a new type of villager merchant option, it will need to
+ // have event handling added manually. this is better than having to do that.
+ MerchantRecipeList list = new MerchantRecipeList();
+ entityvillager_imerchantrecipeoption.a(this, list, this.random);
+ for (MerchantRecipe recipe : list) {
+ VillagerAcquireTradeEvent event = new VillagerAcquireTradeEvent((Villager) getBukkitEntity(), recipe.asBukkit());
+ Bukkit.getPluginManager().callEvent(event);
+ if (!event.isCancelled()) {
+ this.trades.add(CraftMerchantRecipe.fromBukkit(event.getRecipe()).toMinecraft());
+ }
2016-02-29 22:32:46 +01:00
+ }
2016-11-17 02:41:03 +01:00
+ // CraftBukkit end
}
2016-02-29 22:32:46 +01:00
}