2019-08-05 18:35:40 +02:00
From cc69a9a63cd4b9e2e5248acd36fa6f8117868852 Mon Sep 17 00:00:00 2001
2018-07-23 01:39:56 +02:00
From: Aikar <aikar@aikar.co>
Date: Sun, 8 Mar 2015 22:55:25 -0600
2018-07-15 03:53:17 +02:00
Subject: [PATCH] Optimize TileEntity Ticking
diff --git a/src/main/java/net/minecraft/server/TileEntityChest.java b/src/main/java/net/minecraft/server/TileEntityChest.java
2019-08-05 18:35:40 +02:00
index ffaf16cff8..6b94826536 100644
2018-07-15 03:53:17 +02:00
--- a/src/main/java/net/minecraft/server/TileEntityChest.java
+++ b/src/main/java/net/minecraft/server/TileEntityChest.java
@@ -7,7 +7,7 @@ import org.bukkit.craftbukkit.entity.CraftHumanEntity;
import org.bukkit.entity.HumanEntity;
// CraftBukkit end
-public class TileEntityChest extends TileEntityLootable implements ITickable {
+public class TileEntityChest extends TileEntityLootable { // Paper - Remove ITickable
private NonNullList<ItemStack> items;
protected float a;
2019-08-05 18:35:40 +02:00
@@ -101,22 +101,31 @@ public class TileEntityChest extends TileEntityLootable implements ITickable {
2019-04-24 03:00:24 +02:00
return nbttagcompound;
}
- @Override
public void tick() {
int i = this.position.getX();
int j = this.position.getY();
2018-07-15 03:53:17 +02:00
int k = this.position.getZ();
2019-04-24 03:00:24 +02:00
++this.j;
2019-08-05 18:35:40 +02:00
- this.viewingCount = a(this.world, this, this.j, i, j, k, this.viewingCount);
2018-07-15 03:53:17 +02:00
+ }
2019-04-24 03:00:24 +02:00
+
+ public void doOpenLogic() {
2018-07-15 03:53:17 +02:00
+ int i = this.position.getX();
+ int j = this.position.getY();
+ int k = this.position.getZ();
2019-04-24 03:00:24 +02:00
+
2019-08-05 18:35:40 +02:00
+ //this.viewingCount = a(this.world, this, this.j, i, j, k, this.viewingCount); // Paper - check is faulty given our logic is called before active container set
2019-04-24 03:00:24 +02:00
this.b = this.a;
float f = 0.1F;
2019-08-05 18:35:40 +02:00
2019-04-24 03:00:24 +02:00
if (this.viewingCount > 0 && this.a == 0.0F) {
2018-07-15 03:53:17 +02:00
this.a(SoundEffects.BLOCK_CHEST_OPEN);
}
+ }
2019-04-24 03:00:24 +02:00
- if (this.viewingCount == 0 && this.a > 0.0F || this.viewingCount > 0 && this.a < 1.0F) {
+ public void doCloseLogic() {
+ if (this.viewingCount == 0 /* && this.a > 0.0F || this.viewingCount > 0 && this.a < 1.0F */) { // Paper - disable all but player count check
+ /* // Paper - disable animation stuff
2018-07-15 03:53:17 +02:00
float f1 = this.a;
2018-07-23 01:39:56 +02:00
2019-04-24 03:00:24 +02:00
if (this.viewingCount > 0) {
@@ -132,8 +141,11 @@ public class TileEntityChest extends TileEntityLootable implements ITickable {
2018-07-23 01:39:56 +02:00
float f2 = 0.5F;
if (this.a < 0.5F && f1 >= 0.5F) {
- this.a(SoundEffects.BLOCK_CHEST_CLOSE);
- }
2019-04-24 03:00:24 +02:00
+ */
+ MCUtil.scheduleTask(10, () -> {
+ this.a(SoundEffects.BLOCK_CHEST_CLOSE);
2018-07-23 01:39:56 +02:00
+ });
2019-04-24 03:00:24 +02:00
+ //} // Paper end
2018-07-23 01:39:56 +02:00
if (this.a < 0.0F) {
this.a = 0.0F;
2019-05-27 06:36:37 +02:00
@@ -172,6 +184,7 @@ public class TileEntityChest extends TileEntityLootable implements ITickable {
}
private void a(SoundEffect soundeffect) {
+ if (!this.getBlock().hasProperty(BlockChest.b)) { return; } // Paper - this can be delayed, double check exists - Fixes GH-2074
BlockPropertyChestType blockpropertychesttype = (BlockPropertyChestType) this.getBlock().get(BlockChest.b);
if (blockpropertychesttype != BlockPropertyChestType.LEFT) {
@@ -210,6 +223,7 @@ public class TileEntityChest extends TileEntityLootable implements ITickable {
2018-07-15 03:53:17 +02:00
2019-04-24 03:00:24 +02:00
++this.viewingCount;
2018-07-15 03:53:17 +02:00
if (this.world == null) return; // CraftBukkit
+ doOpenLogic(); // Paper
// CraftBukkit start - Call redstone event
2019-04-24 03:00:24 +02:00
if (this.getBlock().getBlock() == Blocks.TRAPPED_CHEST) {
2019-05-27 06:36:37 +02:00
@@ -232,6 +246,7 @@ public class TileEntityChest extends TileEntityLootable implements ITickable {
2019-04-24 03:00:24 +02:00
--this.viewingCount;
2018-07-15 03:53:17 +02:00
// CraftBukkit start - Call redstone event
+ doCloseLogic(); // Paper
2019-04-24 03:00:24 +02:00
if (this.getBlock().getBlock() == Blocks.TRAPPED_CHEST) {
int newPower = Math.max(0, Math.min(15, this.viewingCount));
2018-07-15 03:53:17 +02:00
diff --git a/src/main/java/net/minecraft/server/TileEntityEnderChest.java b/src/main/java/net/minecraft/server/TileEntityEnderChest.java
2019-07-20 06:01:24 +02:00
index 0fae06d3a0..ae6784b6aa 100644
2018-07-15 03:53:17 +02:00
--- a/src/main/java/net/minecraft/server/TileEntityEnderChest.java
+++ b/src/main/java/net/minecraft/server/TileEntityEnderChest.java
@@ -1,6 +1,6 @@
package net.minecraft.server;
-public class TileEntityEnderChest extends TileEntity implements ITickable {
+public class TileEntityEnderChest extends TileEntity { // Paper - Remove ITickable
2019-01-01 04:15:55 +01:00
2018-07-15 03:53:17 +02:00
public float a;
2019-04-24 03:00:24 +02:00
public float b;
@@ -11,18 +11,28 @@ public class TileEntityEnderChest extends TileEntity implements ITickable {
super(TileEntityTypes.ENDER_CHEST);
}
- @Override
public void tick() {
if (++this.g % 20 * 4 == 0) {
this.world.playBlockAction(this.position, Blocks.ENDER_CHEST, 1, this.c);
2018-07-15 03:53:17 +02:00
}
2019-04-24 03:00:24 +02:00
this.b = this.a;
+ /* // Paper
2018-07-15 03:53:17 +02:00
int i = this.position.getX();
int j = this.position.getY();
int k = this.position.getZ();
2019-01-01 04:15:55 +01:00
float f = 0.1F;
double d0;
2018-07-15 03:53:17 +02:00
+ // Paper start
2019-04-24 03:00:24 +02:00
+ */
2018-07-15 03:53:17 +02:00
+ }
2019-04-24 03:00:24 +02:00
+
2018-07-15 03:53:17 +02:00
+ private void doOpenLogic() {
+ int i = this.position.getX();
+ int j = this.position.getY();
+ int k = this.position.getZ();
2019-04-24 03:00:24 +02:00
+ double d0;
2018-07-15 03:53:17 +02:00
+ // Paper end
2019-01-01 04:15:55 +01:00
2019-04-24 03:00:24 +02:00
if (this.c > 0 && this.a == 0.0F) {
double d1 = (double) i + 0.5D;
2019-06-16 15:00:08 +02:00
@@ -30,8 +40,17 @@ public class TileEntityEnderChest extends TileEntity implements ITickable {
2019-04-24 03:00:24 +02:00
d0 = (double) k + 0.5D;
2019-07-20 06:01:24 +02:00
this.world.playSound((EntityHuman) null, d1, (double) j + 0.5D, d0, SoundEffects.BLOCK_ENDER_CHEST_OPEN, SoundCategory.BLOCKS, 0.5F, this.world.random.nextFloat() * 0.1F + 0.9F);
2018-07-15 03:53:17 +02:00
}
+ // Paper start
+ }
2019-04-24 03:00:24 +02:00
2019-06-16 15:00:08 +02:00
- if (this.c == 0 && this.a > 0.0F || this.c > 0 && this.a < 1.0F) {
2018-07-15 03:53:17 +02:00
+ private void doCloseLogic() {
+ int i = this.position.getX();
+ int j = this.position.getY();
+ int k = this.position.getZ();
+ double d0;
2019-06-16 15:00:08 +02:00
+
+ if (this.c == 0) { /* && this.a > 0.0F || this.c > 0 && this.a < 1.0F) {
2018-07-15 03:53:17 +02:00
+ // Paper end
2019-01-01 04:15:55 +01:00
float f1 = this.a;
2019-06-16 15:00:08 +02:00
if (this.c > 0) {
2019-07-20 06:01:24 +02:00
@@ -47,11 +66,14 @@ public class TileEntityEnderChest extends TileEntity implements ITickable {
2019-06-16 15:00:08 +02:00
float f2 = 0.5F;
if (this.a < 0.5F && f1 >= 0.5F) {
+ // Paper start
+ */
d0 = (double) i + 0.5D;
double d2 = (double) k + 0.5D;
+ MCUtil.scheduleTask(10, () -> {
2019-07-20 06:01:24 +02:00
this.world.playSound((EntityHuman) null, d0, (double) j + 0.5D, d2, SoundEffects.BLOCK_ENDER_CHEST_CLOSE, SoundCategory.BLOCKS, 0.5F, this.world.random.nextFloat() * 0.1F + 0.9F);
2019-06-16 15:00:08 +02:00
- }
+ });
if (this.a < 0.0F) {
this.a = 0.0F;
2019-07-20 06:01:24 +02:00
@@ -79,11 +101,13 @@ public class TileEntityEnderChest extends TileEntity implements ITickable {
2019-05-28 01:01:45 +02:00
public void d() {
2019-04-24 03:00:24 +02:00
++this.c;
this.world.playBlockAction(this.position, Blocks.ENDER_CHEST, 1, this.c);
2018-07-15 03:53:17 +02:00
+ doOpenLogic(); // Paper
}
2019-05-28 01:01:45 +02:00
public void f() {
2019-04-24 03:00:24 +02:00
--this.c;
this.world.playBlockAction(this.position, Blocks.ENDER_CHEST, 1, this.c);
2018-07-15 03:53:17 +02:00
+ doCloseLogic(); // Paper
}
public boolean a(EntityHuman entityhuman) {
--
2019-06-16 15:00:08 +02:00
2.22.0
2018-07-15 03:53:17 +02:00