2019-03-20 02:46:00 +01:00
|
|
|
From 6af80d440e9fb1675a85122c6535be9121f54af3 Mon Sep 17 00:00:00 2001
|
2018-03-23 04:19:59 +01:00
|
|
|
From: Minecrell <minecrell@minecrell.net>
|
|
|
|
Date: Wed, 11 Oct 2017 15:56:26 +0200
|
|
|
|
Subject: [PATCH] Implement extended PaperServerListPingEvent
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/network/PaperServerListPingEventImpl.java b/src/main/java/com/destroystokyo/paper/network/PaperServerListPingEventImpl.java
|
|
|
|
new file mode 100644
|
2018-12-15 02:17:27 +01:00
|
|
|
index 000000000..c1a8e295b
|
2018-03-23 04:19:59 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/network/PaperServerListPingEventImpl.java
|
|
|
|
@@ -0,0 +1,31 @@
|
|
|
|
+package com.destroystokyo.paper.network;
|
|
|
|
+
|
|
|
|
+import com.destroystokyo.paper.event.server.PaperServerListPingEvent;
|
|
|
|
+import net.minecraft.server.EntityPlayer;
|
|
|
|
+import net.minecraft.server.MinecraftServer;
|
|
|
|
+import org.bukkit.entity.Player;
|
|
|
|
+import org.bukkit.util.CachedServerIcon;
|
|
|
|
+
|
|
|
|
+import javax.annotation.Nullable;
|
|
|
|
+
|
|
|
|
+class PaperServerListPingEventImpl extends PaperServerListPingEvent {
|
|
|
|
+
|
|
|
|
+ private final MinecraftServer server;
|
|
|
|
+
|
|
|
|
+ PaperServerListPingEventImpl(MinecraftServer server, StatusClient client, int protocolVersion, @Nullable CachedServerIcon icon) {
|
|
|
|
+ super(client, server.getMotd(), server.getPlayerCount(), server.getMaxPlayers(),
|
|
|
|
+ server.getServerModName() + ' ' + server.getVersion(), protocolVersion, icon);
|
|
|
|
+ this.server = server;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ protected final Object[] getOnlinePlayers() {
|
|
|
|
+ return this.server.getPlayerList().players.toArray();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ protected final Player getBukkitPlayer(Object player) {
|
|
|
|
+ return ((EntityPlayer) player).getBukkitEntity();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/network/PaperStatusClient.java b/src/main/java/com/destroystokyo/paper/network/PaperStatusClient.java
|
|
|
|
new file mode 100644
|
2018-12-15 02:17:27 +01:00
|
|
|
index 000000000..a2a409e63
|
2018-03-23 04:19:59 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/network/PaperStatusClient.java
|
|
|
|
@@ -0,0 +1,11 @@
|
|
|
|
+package com.destroystokyo.paper.network;
|
|
|
|
+
|
|
|
|
+import net.minecraft.server.NetworkManager;
|
|
|
|
+
|
|
|
|
+class PaperStatusClient extends PaperNetworkClient implements StatusClient {
|
|
|
|
+
|
|
|
|
+ PaperStatusClient(NetworkManager networkManager) {
|
|
|
|
+ super(networkManager);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/network/StandardPaperServerListPingEventImpl.java b/src/main/java/com/destroystokyo/paper/network/StandardPaperServerListPingEventImpl.java
|
|
|
|
new file mode 100644
|
2019-02-06 20:15:46 +01:00
|
|
|
index 000000000..a85466bc7
|
2018-03-23 04:19:59 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/network/StandardPaperServerListPingEventImpl.java
|
|
|
|
@@ -0,0 +1,112 @@
|
|
|
|
+package com.destroystokyo.paper.network;
|
|
|
|
+
|
|
|
|
+import com.destroystokyo.paper.profile.CraftPlayerProfile;
|
|
|
|
+import com.destroystokyo.paper.profile.PlayerProfile;
|
|
|
|
+import com.google.common.base.MoreObjects;
|
|
|
|
+import com.google.common.base.Strings;
|
|
|
|
+import com.mojang.authlib.GameProfile;
|
|
|
|
+import net.minecraft.server.ChatComponentText;
|
|
|
|
+import net.minecraft.server.MinecraftServer;
|
|
|
|
+import net.minecraft.server.NetworkManager;
|
|
|
|
+import net.minecraft.server.PacketStatusOutServerInfo;
|
|
|
|
+import net.minecraft.server.ServerPing;
|
|
|
|
+
|
|
|
|
+import java.util.List;
|
|
|
|
+import java.util.UUID;
|
|
|
|
+
|
|
|
|
+import javax.annotation.Nonnull;
|
|
|
|
+
|
|
|
|
+public final class StandardPaperServerListPingEventImpl extends PaperServerListPingEventImpl {
|
|
|
|
+
|
|
|
|
+ private static final GameProfile[] EMPTY_PROFILES = new GameProfile[0];
|
|
|
|
+ private static final UUID FAKE_UUID = new UUID(0, 0);
|
|
|
|
+
|
|
|
|
+ private GameProfile[] originalSample;
|
|
|
|
+
|
|
|
|
+ private StandardPaperServerListPingEventImpl(MinecraftServer server, NetworkManager networkManager, ServerPing ping) {
|
2019-02-06 20:15:46 +01:00
|
|
|
+ super(server, new PaperStatusClient(networkManager), ping.getServerData() != null ? ping.getServerData().getProtocolVersion() : -1, server.server.getServerIcon());
|
2018-09-23 05:55:30 +02:00
|
|
|
+ this.originalSample = ping.getPlayers() == null ? null : ping.getPlayers().getSample(); // GH-1473 - pre-tick race condition NPE
|
2018-03-23 04:19:59 +01:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Nonnull
|
|
|
|
+ @Override
|
|
|
|
+ public List<PlayerProfile> getPlayerSample() {
|
|
|
|
+ List<PlayerProfile> sample = super.getPlayerSample();
|
|
|
|
+
|
|
|
|
+ if (this.originalSample != null) {
|
|
|
|
+ for (GameProfile profile : this.originalSample) {
|
2018-03-23 04:32:55 +01:00
|
|
|
+ sample.add(CraftPlayerProfile.asBukkitCopy(profile));
|
2018-03-23 04:19:59 +01:00
|
|
|
+ }
|
|
|
|
+ this.originalSample = null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return sample;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private GameProfile[] getPlayerSampleHandle() {
|
|
|
|
+ if (this.originalSample != null) {
|
|
|
|
+ return this.originalSample;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ List<PlayerProfile> entries = super.getPlayerSample();
|
|
|
|
+ if (entries.isEmpty()) {
|
|
|
|
+ return EMPTY_PROFILES;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ GameProfile[] profiles = new GameProfile[entries.size()];
|
|
|
|
+ for (int i = 0; i < profiles.length; i++) {
|
|
|
|
+ /*
|
|
|
|
+ * Avoid null UUIDs/names since that will make the response invalid
|
|
|
|
+ * on the client.
|
|
|
|
+ * Instead, fall back to a fake/empty UUID and an empty string as name.
|
|
|
|
+ * This can be used to create custom lines in the player list that do not
|
|
|
|
+ * refer to a specific player.
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+ PlayerProfile profile = entries.get(i);
|
|
|
|
+ if (profile.getId() != null && profile.getName() != null) {
|
|
|
|
+ profiles[i] = CraftPlayerProfile.asAuthlib(profile);
|
|
|
|
+ } else {
|
|
|
|
+ profiles[i] = new GameProfile(MoreObjects.firstNonNull(profile.getId(), FAKE_UUID), Strings.nullToEmpty(profile.getName()));
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return profiles;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @SuppressWarnings("deprecation")
|
|
|
|
+ public static void processRequest(MinecraftServer server, NetworkManager networkManager) {
|
|
|
|
+ StandardPaperServerListPingEventImpl event = new StandardPaperServerListPingEventImpl(server, networkManager, server.getServerPing());
|
|
|
|
+ server.server.getPluginManager().callEvent(event);
|
|
|
|
+
|
|
|
|
+ // Close connection immediately if event is cancelled
|
|
|
|
+ if (event.isCancelled()) {
|
|
|
|
+ networkManager.close(null);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Setup response
|
|
|
|
+ ServerPing ping = new ServerPing();
|
|
|
|
+
|
|
|
|
+ // Description
|
|
|
|
+ ping.setMOTD(new ChatComponentText(event.getMotd()));
|
|
|
|
+
|
|
|
|
+ // Players
|
|
|
|
+ if (!event.shouldHidePlayers()) {
|
|
|
|
+ ping.setPlayerSample(new ServerPing.ServerPingPlayerSample(event.getMaxPlayers(), event.getNumPlayers()));
|
|
|
|
+ ping.getPlayers().setSample(event.getPlayerSampleHandle());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Version
|
|
|
|
+ ping.setServerInfo(new ServerPing.ServerData(event.getVersion(), event.getProtocolVersion()));
|
|
|
|
+
|
|
|
|
+ // Favicon
|
|
|
|
+ if (event.getServerIcon() != null) {
|
|
|
|
+ ping.setFavicon(event.getServerIcon().getData());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Send response
|
|
|
|
+ networkManager.sendPacket(new PacketStatusOutServerInfo(ping));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2019-03-20 02:46:00 +01:00
|
|
|
index 5517c5fe8..476a729dd 100644
|
2018-03-23 04:19:59 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -1,6 +1,7 @@
|
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import co.aikar.timings.Timings;
|
|
|
|
+import com.destroystokyo.paper.event.server.PaperServerListPingEvent;
|
|
|
|
import com.google.common.base.Stopwatch;
|
|
|
|
import com.google.common.collect.Lists;
|
|
|
|
import com.google.common.collect.Maps;
|
2019-01-06 18:15:21 +01:00
|
|
|
@@ -939,7 +940,7 @@ public abstract class MinecraftServer implements IAsyncTaskHandler, IMojangStati
|
2018-07-18 20:55:52 +02:00
|
|
|
if (i - this.Y >= 5000000000L) {
|
|
|
|
this.Y = i;
|
2018-12-17 06:18:06 +01:00
|
|
|
this.m.setPlayerSample(new ServerPing.ServerPingPlayerSample(this.getMaxPlayers(), this.getPlayerCount()));
|
|
|
|
- GameProfile[] agameprofile = new GameProfile[Math.min(this.getPlayerCount(), 12)];
|
|
|
|
+ GameProfile[] agameprofile = new GameProfile[Math.min(this.getPlayerCount(), org.spigotmc.SpigotConfig.playerSample)]; // Paper
|
|
|
|
int j = MathHelper.nextInt(this.n, 0, this.getPlayerCount() - agameprofile.length);
|
2018-03-23 04:19:59 +01:00
|
|
|
|
|
|
|
for (int k = 0; k < agameprofile.length; ++k) {
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PacketStatusListener.java b/src/main/java/net/minecraft/server/PacketStatusListener.java
|
2018-12-15 02:17:27 +01:00
|
|
|
index c9edd289a..8aa121e2f 100644
|
2018-03-23 04:19:59 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/PacketStatusListener.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PacketStatusListener.java
|
|
|
|
@@ -30,6 +30,8 @@ public class PacketStatusListener implements PacketStatusInListener {
|
|
|
|
this.networkManager.close(PacketStatusListener.a);
|
|
|
|
} else {
|
|
|
|
this.d = true;
|
|
|
|
+ // Paper start - Replace everything
|
|
|
|
+ /*
|
|
|
|
// CraftBukkit start
|
|
|
|
// this.networkManager.sendPacket(new PacketStatusOutServerInfo(this.minecraftServer.getServerPing()));
|
|
|
|
final Object[] players = minecraftServer.getPlayerList().players.toArray();
|
|
|
|
@@ -125,6 +127,9 @@ public class PacketStatusListener implements PacketStatusInListener {
|
|
|
|
ping.setServerInfo(new ServerPing.ServerData(minecraftServer.getServerModName() + " " + minecraftServer.getVersion(), version));
|
|
|
|
|
|
|
|
this.networkManager.sendPacket(new PacketStatusOutServerInfo(ping));
|
|
|
|
+ */
|
|
|
|
+ com.destroystokyo.paper.network.StandardPaperServerListPingEventImpl.processRequest(this.minecraftServer, this.networkManager);
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ServerPing.java b/src/main/java/net/minecraft/server/ServerPing.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index aa125a52d..ea52e89bd 100644
|
2018-03-23 04:19:59 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/ServerPing.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ServerPing.java
|
|
|
|
@@ -29,6 +29,7 @@ public class ServerPing {
|
|
|
|
this.a = ichatbasecomponent;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public ServerPingPlayerSample getPlayers() { return b(); } // Paper - OBFHELPER
|
|
|
|
public ServerPing.ServerPingPlayerSample b() {
|
|
|
|
return this.b;
|
|
|
|
}
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -160,10 +161,12 @@ public class ServerPing {
|
2018-03-23 04:19:59 +01:00
|
|
|
return this.b;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public GameProfile[] getSample() { return c(); } // Paper - OBFHELPER
|
|
|
|
public GameProfile[] c() {
|
|
|
|
return this.c;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public void setSample(GameProfile[] sample) { a(sample); } // Paper - OBFHELPER
|
|
|
|
public void a(GameProfile[] agameprofile) {
|
|
|
|
this.c = agameprofile;
|
|
|
|
}
|
2018-03-30 18:53:15 +02:00
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 56f135f24..9c442dee2 100644
|
2018-03-30 18:53:15 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -290,7 +290,7 @@ public class SpigotConfig
|
2018-03-30 18:53:15 +02:00
|
|
|
public static int playerSample;
|
|
|
|
private static void playerSample()
|
|
|
|
{
|
|
|
|
- playerSample = getInt( "settings.sample-count", 12 );
|
|
|
|
+ playerSample = Math.max(getInt( "settings.sample-count", 12 ), 0); // Paper - Avoid negative counts
|
|
|
|
Bukkit.getLogger().log( Level.INFO, "Server Ping Player Sample Count: {0}", playerSample ); // Paper - Use logger
|
|
|
|
}
|
|
|
|
|
2018-03-23 04:19:59 +01:00
|
|
|
--
|
2019-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2018-03-23 04:19:59 +01:00
|
|
|
|