2019-07-23 21:17:32 +02:00
|
|
|
From 669429b5aee9103951c2c3163b42193b8c7239b1 Mon Sep 17 00:00:00 2001
|
2016-11-27 05:35:42 +01:00
|
|
|
From: Alfie Cleveland <alfeh@me.com>
|
|
|
|
Date: Fri, 25 Nov 2016 13:22:40 +0000
|
|
|
|
Subject: [PATCH] Optimise removeQueue
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2019-07-23 21:17:32 +02:00
|
|
|
index 3c67a03a9..d5344d5c8 100644
|
2016-11-27 05:35:42 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -4,7 +4,9 @@ import com.google.common.collect.Lists;
|
|
|
|
import com.mojang.authlib.GameProfile;
|
2019-04-27 08:26:04 +02:00
|
|
|
import com.mojang.datafixers.util.Either;
|
2018-07-16 22:08:09 +02:00
|
|
|
import io.netty.util.concurrent.Future;
|
2016-11-27 05:35:42 +01:00
|
|
|
+import java.util.ArrayDeque; // Paper
|
|
|
|
import java.util.Collection;
|
|
|
|
+import java.util.Deque; // Paper
|
|
|
|
import java.util.Iterator;
|
|
|
|
import java.util.List;
|
2019-04-27 08:26:04 +02:00
|
|
|
import java.util.OptionalInt;
|
2019-05-06 04:58:04 +02:00
|
|
|
@@ -41,7 +43,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2019-04-27 08:26:04 +02:00
|
|
|
public PlayerConnection playerConnection;
|
|
|
|
public final MinecraftServer server;
|
2016-11-27 05:35:42 +01:00
|
|
|
public final PlayerInteractManager playerInteractManager;
|
|
|
|
- public final List<Integer> removeQueue = Lists.newLinkedList();
|
|
|
|
+ public final Deque<Integer> removeQueue = new ArrayDeque<>(); // Paper
|
2019-04-27 08:26:04 +02:00
|
|
|
private final AdvancementDataPlayer advancementDataPlayer;
|
|
|
|
private final ServerStatisticManager serverStatisticManager;
|
|
|
|
private float lastHealthScored = Float.MIN_VALUE;
|
2019-06-25 03:47:58 +02:00
|
|
|
@@ -367,13 +369,20 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2018-08-26 20:11:49 +02:00
|
|
|
while (!this.removeQueue.isEmpty()) {
|
|
|
|
int i = Math.min(this.removeQueue.size(), Integer.MAX_VALUE);
|
|
|
|
int[] aint = new int[i];
|
2019-01-01 04:15:55 +01:00
|
|
|
- Iterator<Integer> iterator = this.removeQueue.iterator();
|
|
|
|
+ //Iterator<Integer> iterator = this.removeQueue.iterator(); // Paper
|
2016-11-27 05:35:42 +01:00
|
|
|
int j = 0;
|
|
|
|
|
|
|
|
- while (iterator.hasNext() && j < i) {
|
|
|
|
+ // Paper start
|
|
|
|
+ /* while (iterator.hasNext() && j < i) {
|
2018-12-08 11:09:55 +01:00
|
|
|
aint[j++] = (Integer) iterator.next();
|
2016-11-27 05:35:42 +01:00
|
|
|
iterator.remove();
|
|
|
|
+ } */
|
|
|
|
+
|
|
|
|
+ Integer integer;
|
|
|
|
+ while (j < i && (integer = this.removeQueue.poll()) != null) {
|
|
|
|
+ aint[j++] = integer.intValue();
|
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
this.playerConnection.sendPacket(new PacketPlayOutEntityDestroy(aint));
|
|
|
|
}
|
2019-07-23 21:17:32 +02:00
|
|
|
@@ -1323,7 +1332,14 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2016-11-27 05:35:42 +01:00
|
|
|
this.lastHealthSent = -1.0F;
|
2018-12-17 06:18:06 +01:00
|
|
|
this.lastFoodSent = -1;
|
|
|
|
// this.recipeBook.a((RecipeBook) entityplayer.recipeBook); // CraftBukkit
|
2017-05-14 20:05:01 +02:00
|
|
|
- this.removeQueue.addAll(entityplayer.removeQueue);
|
2018-08-26 20:11:49 +02:00
|
|
|
+ // Paper start - Optimize remove queue - vanilla copies player objects, but CB doesn't. This method currently only
|
|
|
|
+ // Applies to the same player, so we need to not duplicate our removal queue. The rest of this method does "resetting"
|
|
|
|
+ // type logic so it does need to be called, maybe? This is silly.
|
2017-05-21 06:41:39 +02:00
|
|
|
+ //this.removeQueue.addAll(entityplayer.removeQueue);
|
2017-05-14 20:05:01 +02:00
|
|
|
+ if (this.removeQueue != entityplayer.removeQueue) {
|
|
|
|
+ this.removeQueue.addAll(entityplayer.removeQueue);
|
2016-11-27 05:35:42 +01:00
|
|
|
+ }
|
2018-08-26 20:11:49 +02:00
|
|
|
+ // Paper end
|
2019-04-27 08:26:04 +02:00
|
|
|
this.cp = entityplayer.cp;
|
|
|
|
this.cu = entityplayer.cu;
|
2017-05-14 20:05:01 +02:00
|
|
|
this.setShoulderEntityLeft(entityplayer.getShoulderEntityLeft());
|
2016-11-27 05:35:42 +01:00
|
|
|
--
|
2019-06-16 12:15:21 +02:00
|
|
|
2.22.0
|
2016-11-27 05:35:42 +01:00
|
|
|
|