mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
118 lines
3.9 KiB
Diff
118 lines
3.9 KiB
Diff
--- a/net/minecraft/server/TileEntityChest.java
|
|
+++ b/net/minecraft/server/TileEntityChest.java
|
|
@@ -3,6 +3,11 @@
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
+import org.bukkit.entity.HumanEntity;
|
|
+// CraftBukkit end
|
|
+
|
|
public class TileEntityChest extends TileEntityContainer implements IUpdatePlayerListBox, IInventory {
|
|
|
|
private ItemStack[] items = new ItemStack[27];
|
|
@@ -20,6 +25,31 @@
|
|
|
|
public TileEntityChest() {}
|
|
|
|
+ // CraftBukkit start - add fields and methods
|
|
+ public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
|
|
+ private int maxStack = MAX_STACK;
|
|
+
|
|
+ public ItemStack[] getContents() {
|
|
+ return this.items;
|
|
+ }
|
|
+
|
|
+ public void onOpen(CraftHumanEntity who) {
|
|
+ transaction.add(who);
|
|
+ }
|
|
+
|
|
+ public void onClose(CraftHumanEntity who) {
|
|
+ transaction.remove(who);
|
|
+ }
|
|
+
|
|
+ public List<HumanEntity> getViewers() {
|
|
+ return transaction;
|
|
+ }
|
|
+
|
|
+ public void setMaxStackSize(int size) {
|
|
+ maxStack = size;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
public int getSize() {
|
|
return 27;
|
|
}
|
|
@@ -125,10 +155,11 @@
|
|
}
|
|
|
|
public int getMaxStackSize() {
|
|
- return 64;
|
|
+ return maxStack; // CraftBukkit
|
|
}
|
|
|
|
public boolean a(EntityHuman entityhuman) {
|
|
+ if (this.world == null) return true; // CraftBukkit
|
|
return this.world.getTileEntity(this.position) != this ? false : entityhuman.e((double) this.position.getX() + 0.5D, (double) this.position.getY() + 0.5D, (double) this.position.getZ() + 0.5D) <= 64.0D;
|
|
}
|
|
|
|
@@ -304,9 +335,21 @@
|
|
if (this.l < 0) {
|
|
this.l = 0;
|
|
}
|
|
+ int oldPower = Math.max(0, Math.min(15, this.l)); // CraftBukkit - Get power before new viewer is added
|
|
|
|
++this.l;
|
|
+ if (this.world == null) return; // CraftBukkit
|
|
this.world.playBlockAction(this.position, this.w(), 1, this.l);
|
|
+
|
|
+ // CraftBukkit start - Call redstone event
|
|
+ if (this.w() == Blocks.TRAPPED_CHEST) {
|
|
+ int newPower = Math.max(0, Math.min(15, this.l));
|
|
+
|
|
+ if (oldPower != newPower) {
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.callRedstoneChange(world, position.getX(), position.getY(), position.getZ(), oldPower, newPower);
|
|
+ }
|
|
+ }
|
|
+ // CraftBukkit end
|
|
this.world.applyPhysics(this.position, this.w());
|
|
this.world.applyPhysics(this.position.down(), this.w());
|
|
}
|
|
@@ -315,8 +358,20 @@
|
|
|
|
public void closeContainer(EntityHuman entityhuman) {
|
|
if (!entityhuman.isSpectator() && this.w() instanceof BlockChest) {
|
|
+ int oldPower = Math.max(0, Math.min(15, this.l)); // CraftBukkit - Get power before new viewer is added
|
|
--this.l;
|
|
+ if (this.world == null) return; // CraftBukkit
|
|
this.world.playBlockAction(this.position, this.w(), 1, this.l);
|
|
+
|
|
+ // CraftBukkit start - Call redstone event
|
|
+ if (this.w() == Blocks.TRAPPED_CHEST) {
|
|
+ int newPower = Math.max(0, Math.min(15, this.l));
|
|
+
|
|
+ if (oldPower != newPower) {
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.callRedstoneChange(world, position.getX(), position.getY(), position.getZ(), oldPower, newPower);
|
|
+ }
|
|
+ }
|
|
+ // CraftBukkit end
|
|
this.world.applyPhysics(this.position, this.w());
|
|
this.world.applyPhysics(this.position.down(), this.w());
|
|
}
|
|
@@ -370,6 +425,14 @@
|
|
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ // PAIL
|
|
+ @Override
|
|
+ public boolean F() {
|
|
+ return true;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
static class SyntheticClass_1 {
|
|
|
|
static final int[] a = new int[EnumDirection.values().length];
|