2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/PlayerInventory.java
|
|
|
|
+++ b/net/minecraft/server/PlayerInventory.java
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -6,6 +6,15 @@
|
|
|
|
import java.util.function.Predicate;
|
2016-05-10 13:47:39 +02:00
|
|
|
import javax.annotation.Nullable;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+// CraftBukkit start
|
2016-11-17 02:41:03 +01:00
|
|
|
+import java.util.ArrayList;
|
2014-11-25 22:32:16 +01:00
|
|
|
+import java.util.List;
|
2016-02-29 22:32:46 +01:00
|
|
|
+import org.bukkit.Location;
|
2014-11-25 22:32:16 +01:00
|
|
|
+
|
|
|
|
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
|
|
+import org.bukkit.entity.HumanEntity;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public class PlayerInventory implements IInventory {
|
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
public final NonNullList<ItemStack> items;
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -17,6 +26,49 @@
|
2016-02-29 22:32:46 +01:00
|
|
|
private ItemStack carried;
|
2017-05-19 13:00:13 +02:00
|
|
|
private int h;
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start - add fields and methods
|
|
|
|
+ public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
|
|
|
|
+ private int maxStack = MAX_STACK;
|
|
|
|
+
|
2016-11-17 02:41:03 +01:00
|
|
|
+ public List<ItemStack> getContents() {
|
|
|
|
+ List<ItemStack> combined = new ArrayList<ItemStack>(items.size() + armor.size() + extraSlots.size());
|
2017-05-19 13:00:13 +02:00
|
|
|
+ for (List<net.minecraft.server.ItemStack> sub : this.f) {
|
2016-11-17 02:41:03 +01:00
|
|
|
+ combined.addAll(sub);
|
|
|
|
+ }
|
|
|
|
+
|
2016-03-01 06:40:12 +01:00
|
|
|
+ return combined;
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+
|
2016-11-17 02:41:03 +01:00
|
|
|
+ public List<ItemStack> getArmorContents() {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ return this.armor;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void onOpen(CraftHumanEntity who) {
|
|
|
|
+ transaction.add(who);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void onClose(CraftHumanEntity who) {
|
|
|
|
+ transaction.remove(who);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public List<HumanEntity> getViewers() {
|
|
|
|
+ return transaction;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public org.bukkit.inventory.InventoryHolder getOwner() {
|
|
|
|
+ return this.player.getBukkitEntity();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setMaxStackSize(int size) {
|
|
|
|
+ maxStack = size;
|
|
|
|
+ }
|
2016-02-29 22:32:46 +01:00
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public Location getLocation() {
|
|
|
|
+ return player.getBukkitEntity().getLocation();
|
|
|
|
+ }
|
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
|
|
|
public PlayerInventory(EntityHuman entityhuman) {
|
2016-11-17 02:41:03 +01:00
|
|
|
this.items = NonNullList.a(36, ItemStack.a);
|
|
|
|
this.armor = NonNullList.a(4, ItemStack.a);
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -42,6 +94,23 @@
|
|
|
|
return itemstack.getItem() == itemstack1.getItem() && ItemStack.equals(itemstack, itemstack1);
|
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 - Watch method above! :D
|
|
|
|
+ public int canHold(ItemStack itemstack) {
|
2016-11-17 02:41:03 +01:00
|
|
|
+ int remains = itemstack.getCount();
|
|
|
|
+ for (int i = 0; i < this.items.size(); ++i) {
|
|
|
|
+ ItemStack itemstack1 = this.getItem(i);
|
|
|
|
+ if (itemstack1.isEmpty()) return itemstack.getCount();
|
2014-11-25 22:32:16 +01:00
|
|
|
+
|
|
|
|
+ // Taken from firstPartial(ItemStack)
|
2018-07-15 02:00:00 +02:00
|
|
|
+ if (!this.a(itemstack, itemstack1)) {
|
2016-11-17 02:41:03 +01:00
|
|
|
+ remains -= (itemstack1.getMaxStackSize() < this.getMaxStackSize() ? itemstack1.getMaxStackSize() : this.getMaxStackSize()) - itemstack1.getCount();
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
2016-11-17 02:41:03 +01:00
|
|
|
+ if (remains <= 0) return itemstack.getCount();
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
2016-11-17 02:41:03 +01:00
|
|
|
+ return itemstack.getCount() - remains;
|
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
|
|
|
public int getFirstEmptySlotIndex() {
|
2016-11-17 02:41:03 +01:00
|
|
|
for (int i = 0; i < this.items.size(); ++i) {
|
|
|
|
if (((ItemStack) this.items.get(i)).isEmpty()) {
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -502,7 +571,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getMaxStackSize() {
|
|
|
|
- return 64;
|
|
|
|
+ return maxStack; // CraftBukkit
|
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
public boolean b(IBlockData iblockdata) {
|
2018-08-26 04:00:00 +02:00
|
|
|
@@ -554,6 +623,11 @@
|
2016-11-17 02:41:03 +01:00
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
public ItemStack getCarried() {
|
|
|
|
+ // CraftBukkit start
|
2016-11-17 02:41:03 +01:00
|
|
|
+ if (this.carried.isEmpty()) {
|
|
|
|
+ this.setCarried(ItemStack.a);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2016-02-29 22:32:46 +01:00
|
|
|
return this.carried;
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|