3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-14 20:10:05 +01:00
Paper/patches/server/0974-Improve-Maps-in-item-frames-performance-and-bug-fixe.patch

140 Zeilen
7.6 KiB
Diff

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Aikar <aikar@aikar.co>
Date: Fri, 29 Apr 2016 20:02:00 -0400
Subject: [PATCH] Improve Maps (in item frames) performance and bug fixes
Maps used a modified version of rendering to support plugin controlled
imaging on maps. The Craft Map Renderer is much slower than Vanilla,
causing maps in item frames to cause a noticeable hit on server performance.
This updates the map system to not use the Craft system if we detect that no
custom renderers are in use, defaulting to the much simpler Vanilla system.
Additionally, numerous issues to player position tracking on maps has been fixed.
Feature patch
2021-06-11 14:02:28 +02:00
diff --git a/src/main/java/net/minecraft/server/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
2024-10-27 18:11:15 +01:00
index 24df2baaeb34eccbe148ac0e518f44e9a869ffa5..ce148cf5930cdcf0163c7f6416cbbd89e4d22720 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
+++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
2024-10-27 18:11:15 +01:00
@@ -2333,6 +2333,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
2021-06-11 14:02:28 +02:00
{
2021-06-12 06:38:04 +02:00
if ( iter.next().player == entity )
{
+ map.decorations.remove(entity.getName().getString()); // Paper
iter.remove();
}
2021-06-11 14:02:28 +02:00
}
2024-10-24 20:40:24 +02:00
diff --git a/src/main/java/net/minecraft/server/level/ServerPlayer.java b/src/main/java/net/minecraft/server/level/ServerPlayer.java
2024-10-25 12:30:19 +02:00
index df21cd1bd2a3dda7169edbea18bbfdf043db76f8..b6b8687fc79c060cd65e04dc67c855c775ab7684 100644
2024-10-24 20:40:24 +02:00
--- a/src/main/java/net/minecraft/server/level/ServerPlayer.java
+++ b/src/main/java/net/minecraft/server/level/ServerPlayer.java
@@ -2811,6 +2811,14 @@ public class ServerPlayer extends net.minecraft.world.entity.player.Player {
this.awardStat(Stats.DROP);
2021-06-11 14:02:28 +02:00
}
2024-10-24 20:40:24 +02:00
2021-06-11 14:02:28 +02:00
+ // Paper start - remove player from map on drop
2024-10-25 12:30:19 +02:00
+ if (itemstack.getItem() == net.minecraft.world.item.Items.FILLED_MAP) {
2023-06-07 22:19:14 +02:00
+ net.minecraft.world.level.saveddata.maps.MapItemSavedData worldmap = net.minecraft.world.item.MapItem.getSavedData(itemstack, this.level());
+ if (worldmap != null) {
+ worldmap.tickCarriedBy(this, itemstack);
2024-10-24 20:40:24 +02:00
+ }
+ }
2021-06-11 14:02:28 +02:00
+ // Paper end
return entityitem;
}
2024-10-24 20:40:24 +02:00
}
2021-06-11 14:02:28 +02:00
diff --git a/src/main/java/net/minecraft/world/level/saveddata/maps/MapItemSavedData.java b/src/main/java/net/minecraft/world/level/saveddata/maps/MapItemSavedData.java
2024-10-24 20:40:24 +02:00
index 2d5e7380e8a14cbc01ba48cd05deccc0c7f53430..ae321b3b8d98e42ef07fd1f0f738c1a2b428f6db 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/level/saveddata/maps/MapItemSavedData.java
+++ b/src/main/java/net/minecraft/world/level/saveddata/maps/MapItemSavedData.java
2024-10-24 20:40:24 +02:00
@@ -80,6 +80,7 @@ public class MapItemSavedData extends SavedData {
2021-06-11 14:02:28 +02:00
public final Map<String, MapDecoration> decorations = Maps.newLinkedHashMap();
private final Map<String, MapFrame> frameMarkers = Maps.newHashMap();
2021-06-12 06:38:04 +02:00
private int trackedDecorationCount;
2021-06-11 14:02:28 +02:00
+ private org.bukkit.craftbukkit.map.RenderData vanillaRender = new org.bukkit.craftbukkit.map.RenderData(); // Paper
// CraftBukkit start
public final CraftMapView mapView;
2024-06-15 14:12:22 +02:00
@@ -105,6 +106,7 @@ public class MapItemSavedData extends SavedData {
2021-06-11 14:02:28 +02:00
// CraftBukkit start
2021-06-12 06:38:04 +02:00
this.mapView = new CraftMapView(this);
this.server = (CraftServer) org.bukkit.Bukkit.getServer();
+ this.vanillaRender.buffer = colors; // Paper
2021-06-11 14:02:28 +02:00
// CraftBukkit end
}
2024-06-15 14:12:22 +02:00
@@ -179,6 +181,7 @@ public class MapItemSavedData extends SavedData {
2021-06-12 06:38:04 +02:00
if (abyte.length == 16384) {
worldmap.colors = abyte;
2021-06-11 14:02:28 +02:00
}
2021-06-12 06:38:04 +02:00
+ worldmap.vanillaRender.buffer = abyte; // Paper
2021-06-11 14:02:28 +02:00
2024-10-24 20:40:24 +02:00
RegistryOps<Tag> registryops = registries.createSerializationContext(NbtOps.INSTANCE);
2024-04-25 11:42:10 +02:00
List<MapBanner> list = (List) MapBanner.LIST_CODEC.parse(registryops, nbt.get("banners")).resultOrPartial((s) -> {
2024-10-24 20:40:24 +02:00
@@ -367,7 +370,7 @@ public class MapItemSavedData extends SavedData {
--this.trackedDecorationCount;
}
- this.setDecorationsDirty();
+ if (mapicon != null) this.setDecorationsDirty(); // Paper - only mark dirty if a change occurs
}
public static void addTargetDecoration(ItemStack stack, BlockPos pos, String id, Holder<MapDecorationType> decorationType) {
2024-10-24 20:40:24 +02:00
@@ -621,6 +624,21 @@ public class MapItemSavedData extends SavedData {
2021-06-11 14:02:28 +02:00
public class HoldingPlayer {
+ // Paper start
+ private void addSeenPlayers(java.util.Collection<MapDecoration> icons) {
2021-06-12 06:38:04 +02:00
+ org.bukkit.entity.Player player = (org.bukkit.entity.Player) this.player.getBukkitEntity();
2021-06-11 14:02:28 +02:00
+ MapItemSavedData.this.decorations.forEach((name, mapIcon) -> {
+ // If this cursor is for a player check visibility with vanish system
+ org.bukkit.entity.Player other = org.bukkit.Bukkit.getPlayerExact(name); // Spigot
+ if (other == null || player.canSee(other)) {
+ icons.add(mapIcon);
+ }
+ });
+ }
+ private boolean shouldUseVanillaMap() {
+ return mapView.getRenderers().size() == 1 && mapView.getRenderers().get(0).getClass() == org.bukkit.craftbukkit.map.CraftMapRenderer.class;
+ }
+ // Paper end
public final Player player;
private boolean dirtyData = true;
private int minDirtyX;
2024-10-24 20:40:24 +02:00
@@ -654,7 +672,9 @@ public class MapItemSavedData extends SavedData {
2021-06-11 14:02:28 +02:00
@Nullable
2024-04-25 11:42:10 +02:00
Packet<?> nextUpdatePacket(MapId mapId) {
2024-10-24 20:40:24 +02:00
MapItemSavedData.MapPatch worldmap_c;
2021-06-11 14:02:28 +02:00
- org.bukkit.craftbukkit.map.RenderData render = MapItemSavedData.this.mapView.render((org.bukkit.craftbukkit.entity.CraftPlayer) this.player.getBukkitEntity()); // CraftBukkit
+ if (!this.dirtyData && this.tick % 5 != 0) { this.tick++; return null; } // Paper - this won't end up sending, so don't render it!
+ boolean vanillaMaps = shouldUseVanillaMap(); // Paper
+ org.bukkit.craftbukkit.map.RenderData render = !vanillaMaps ? MapItemSavedData.this.mapView.render((org.bukkit.craftbukkit.entity.CraftPlayer) this.player.getBukkitEntity()) : MapItemSavedData.this.vanillaRender; // CraftBukkit // Paper
2021-06-12 06:38:04 +02:00
if (this.dirtyData) {
this.dirtyData = false;
2024-10-24 20:40:24 +02:00
@@ -670,6 +690,8 @@ public class MapItemSavedData extends SavedData {
2021-06-12 06:38:04 +02:00
// CraftBukkit start
java.util.Collection<MapDecoration> icons = new java.util.ArrayList<MapDecoration>();
2021-06-11 14:02:28 +02:00
2021-06-12 06:38:04 +02:00
+ if (vanillaMaps) addSeenPlayers(icons); // Paper
+
for (org.bukkit.map.MapCursor cursor : render.cursors) {
if (cursor.isVisible()) {
2024-04-25 11:42:10 +02:00
icons.add(new MapDecoration(CraftMapCursor.CraftType.bukkitToMinecraftHolder(cursor.getType()), cursor.getX(), cursor.getY(), cursor.getDirection(), Optional.ofNullable(PaperAdventure.asVanilla(cursor.caption()))));
2021-06-11 14:02:28 +02:00
diff --git a/src/main/java/org/bukkit/craftbukkit/map/RenderData.java b/src/main/java/org/bukkit/craftbukkit/map/RenderData.java
index 256a131781721c86dd6cdbc329335964570cbe8c..5768cd512ec166f1e8d1f4a28792015347297c3f 100644
--- a/src/main/java/org/bukkit/craftbukkit/map/RenderData.java
+++ b/src/main/java/org/bukkit/craftbukkit/map/RenderData.java
@@ -5,7 +5,7 @@ import org.bukkit.map.MapCursor;
public class RenderData {
- public final byte[] buffer;
+ public byte[] buffer; // Paper
public final ArrayList<MapCursor> cursors;
public RenderData() {