Paper/nms-patches/TileEntityChest.patch

127 lines
4.0 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/TileEntityChest.java
+++ b/net/minecraft/server/TileEntityChest.java
2020-08-11 23:00:00 +02:00
@@ -2,6 +2,10 @@
2018-07-15 02:00:00 +02:00
2016-11-17 02:41:03 +01:00
import java.util.Iterator;
import java.util.List;
+// CraftBukkit start
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
+import org.bukkit.entity.HumanEntity;
+// CraftBukkit end
2016-11-17 02:41:03 +01:00
public class TileEntityChest extends TileEntityLootable implements ITickable {
2020-08-11 23:00:00 +02:00
@@ -11,6 +15,37 @@
public int viewingCount;
2019-04-23 04:00:00 +02:00
private int j;
2015-02-26 23:41:06 +01:00
+ // CraftBukkit start - add fields and methods
+ public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
+ private int maxStack = MAX_STACK;
+ public boolean opened;
+
2016-11-17 02:41:03 +01:00
+ public List<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;
+ }
+
2019-04-23 04:00:00 +02:00
+ @Override
+ public int getMaxStackSize() {
+ return maxStack;
+ }
+
+ public void setMaxStackSize(int size) {
+ maxStack = size;
+ }
+ // CraftBukkit end
2015-02-26 23:41:06 +01:00
+
2018-07-15 02:00:00 +02:00
protected TileEntityChest(TileEntityTypes<?> tileentitytypes) {
super(tileentitytypes);
2020-06-25 02:00:00 +02:00
this.items = NonNullList.a(27, ItemStack.b);
@@ -61,6 +96,13 @@
this.b = this.a;
float f = 0.1F;
+ // CraftBukkit start - If chest is forced open by API, remove a viewer due to playBlockAction() call and don't tick to prevent sound effects.
+ if (opened) {
+ this.viewingCount--;
+ return;
+ }
+ // CraftBukkit end
+
if (this.viewingCount > 0 && this.a == 0.0F) {
2020-08-11 23:00:00 +02:00
this.playOpenSound(SoundEffects.BLOCK_CHEST_OPEN);
}
@@ -155,8 +197,20 @@
2019-04-23 04:00:00 +02:00
if (this.viewingCount < 0) {
this.viewingCount = 0;
}
2019-04-23 04:00:00 +02:00
+ int oldPower = Math.max(0, Math.min(15, this.viewingCount)); // CraftBukkit - Get power before new viewer is added
2019-04-23 04:00:00 +02:00
++this.viewingCount;
+ if (this.world == null) return; // CraftBukkit
+
+ // CraftBukkit start - Call redstone event
2019-04-23 04:00:00 +02:00
+ if (this.getBlock().getBlock() == Blocks.TRAPPED_CHEST) {
+ int newPower = Math.max(0, Math.min(15, this.viewingCount));
+
+ if (oldPower != newPower) {
2018-07-15 02:00:00 +02:00
+ org.bukkit.craftbukkit.event.CraftEventFactory.callRedstoneChange(world, position, oldPower, newPower);
+ }
+ }
+ // CraftBukkit end
2019-04-23 04:00:00 +02:00
this.onOpen();
2018-07-15 02:00:00 +02:00
}
@@ -165,7 +219,18 @@
2019-04-23 04:00:00 +02:00
@Override
public void closeContainer(EntityHuman entityhuman) {
2018-07-15 02:00:00 +02:00
if (!entityhuman.isSpectator()) {
2019-04-23 04:00:00 +02:00
+ int oldPower = Math.max(0, Math.min(15, this.viewingCount)); // CraftBukkit - Get power before new viewer is added
--this.viewingCount;
2015-02-26 23:41:06 +01:00
+
+ // CraftBukkit start - Call redstone event
2019-04-23 04:00:00 +02:00
+ if (this.getBlock().getBlock() == Blocks.TRAPPED_CHEST) {
+ int newPower = Math.max(0, Math.min(15, this.viewingCount));
+
+ if (oldPower != newPower) {
2018-07-15 02:00:00 +02:00
+ org.bukkit.craftbukkit.event.CraftEventFactory.callRedstoneChange(world, position, oldPower, newPower);
+ }
2018-07-15 02:00:00 +02:00
+ }
+ // CraftBukkit end
2019-04-23 04:00:00 +02:00
this.onOpen();
}
2016-03-30 21:50:59 +02:00
@@ -175,7 +240,7 @@
Block block = this.getBlock().getBlock();
if (block instanceof BlockChest) {
- this.world.playBlockAction(this.position, block, 1, this.viewingCount);
+ if (!opened) this.world.playBlockAction(this.position, block, 1, this.viewingCount); // CraftBukkit
this.world.applyPhysics(this.position, block);
}
@@ -216,4 +281,11 @@
2019-04-23 04:00:00 +02:00
protected Container createContainer(int i, PlayerInventory playerinventory) {
return ContainerChest.a(i, playerinventory, this);
2016-11-17 02:41:03 +01:00
}
+
+ // CraftBukkit start
+ @Override
2016-02-29 22:32:46 +01:00
+ public boolean isFilteredNBT() {
+ return true;
+ }
+ // CraftBukkit end
2016-11-17 02:41:03 +01:00
}