2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 23 May 2020 17:03:41 -0400
|
|
|
|
Subject: [PATCH] Optimize sending packets to nearby locations (sounds/effects)
|
|
|
|
|
|
|
|
Instead of using the entire world or player list, use the distance
|
|
|
|
maps to only iterate players who are even seeing the chunk the packet
|
|
|
|
is originating from.
|
|
|
|
|
|
|
|
This will drastically cut down on packet sending cost for worlds with
|
|
|
|
lots of players in them.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/players/PlayerList.java b/src/main/java/net/minecraft/server/players/PlayerList.java
|
2021-10-17 18:57:00 +02:00
|
|
|
index 004381c9a7366b6caabc14160ec6ff58874c75af..60abb3e64c083a6867c242a473d0d7049c1eb1cd 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/players/PlayerList.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/players/PlayerList.java
|
2021-10-17 18:57:00 +02:00
|
|
|
@@ -1138,16 +1138,40 @@ public abstract class PlayerList {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void broadcast(@Nullable net.minecraft.world.entity.player.Player player, double x, double y, double z, double distance, ResourceKey<Level> worldKey, Packet<?> packet) {
|
|
|
|
- for (int i = 0; i < this.players.size(); ++i) {
|
|
|
|
- ServerPlayer entityplayer = (ServerPlayer) this.players.get(i);
|
|
|
|
+ ServerLevel world = null;
|
|
|
|
+ if (player != null && player.level instanceof ServerLevel) {
|
|
|
|
+ world = (ServerLevel) player.level;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- // CraftBukkit start - Test if player receiving packet can see the source of the packet
|
|
|
|
- if (player != null && player instanceof ServerPlayer && !entityplayer.getBukkitEntity().canSee(((ServerPlayer) player).getBukkitEntity())) {
|
|
|
|
- continue;
|
|
|
|
+ // Paper start
|
|
|
|
+ if (world == null) {
|
|
|
|
+ world = server.getLevel(worldKey);
|
|
|
|
+ }
|
2021-06-14 08:45:29 +02:00
|
|
|
+ net.minecraft.server.level.ChunkMap chunkMap = world != null ? world.getChunkSource().chunkMap : null;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ Object[] backingSet;
|
|
|
|
+ if (chunkMap == null) {
|
|
|
|
+ // Really shouldn't happen...
|
|
|
|
+ backingSet = world != null ? world.players.toArray() : players.toArray();
|
|
|
|
+ } else {
|
|
|
|
+ com.destroystokyo.paper.util.misc.PooledLinkedHashSets.PooledObjectLinkedOpenHashSet<ServerPlayer> nearbyPlayers = chunkMap.playerViewDistanceBroadcastMap.getObjectsInRange(MCUtil.fastFloor(x) >> 4, MCUtil.fastFloor(z) >> 4);
|
|
|
|
+ if (nearbyPlayers == null) {
|
|
|
|
+ return;
|
|
|
|
}
|
|
|
|
+ backingSet = nearbyPlayers.getBackingSet();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ for (Object object : backingSet) {
|
|
|
|
+ if (!(object instanceof ServerPlayer)) continue;
|
|
|
|
+ ServerPlayer entityplayer = (ServerPlayer) object;
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
+ // CraftBukkit start - Test if player receiving packet can see the source of the packet
|
|
|
|
+ //if (entityhuman != null && entityhuman instanceof EntityPlayer && !entityplayer.getBukkitEntity().canSee(((EntityPlayer) entityhuman).getBukkitEntity())) { // Paper
|
|
|
|
+ //continue; // Paper
|
|
|
|
+ //} // Paper
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
- if (entityplayer != player && entityplayer.level.dimension() == worldKey) {
|
|
|
|
+ if (entityplayer != player && entityplayer.level.dimension() == worldKey && (!(player instanceof ServerPlayer) || entityplayer.getBukkitEntity().canSee(((ServerPlayer) player).getBukkitEntity()))) { // Paper
|
|
|
|
double d4 = x - entityplayer.getX();
|
|
|
|
double d5 = y - entityplayer.getY();
|
|
|
|
double d6 = z - entityplayer.getZ();
|