2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								From: Aikar <aikar@aikar.co>
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Date: Tue, 1 Mar 2016 23:09:29 -0600
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Subject: [PATCH] Further improve server tick loop
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Improves how the catchup buffer is handled, allowing it to roll both ways
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								increasing the effeciency of the thread sleep so it only will sleep once.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Also increases the buffer of the catchup to ensure server stays at 20 TPS unless extreme conditions
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Previous implementation did not calculate TPS correctly.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Switch to a realistic rolling average and factor in std deviation as an extra reporting variable
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
 
							 
						 
					
						
							
								
									
										
										
										
											2024-04-26 16:17:13 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								index c91eb69bbab3ca563d77de7165d5ef39f0a6b532..8ead44e27598c01249f710e10a765dd1796ed249 100644
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								--- a/src/main/java/net/minecraft/server/MinecraftServer.java
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
 
							 
						 
					
						
							
								
									
										
										
										
											2024-04-23 14:12:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								@@ -289,7 +289,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     public org.bukkit.craftbukkit.CraftServer server;
							 
						 
					
						
							
								
									
										
										
										
											2023-08-28 13:05:48 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								     public OptionSet options;
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								     public org.bukkit.command.ConsoleCommandSender console;
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-    public static int currentTick = (int) (System.currentTimeMillis() / 50);
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+    public static int currentTick; // Paper - improve tick loop
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								     public java.util.Queue<Runnable> processQueue = new java.util.concurrent.ConcurrentLinkedQueue<Runnable>();
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     public int autosavePeriod;
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     public Commands vanillaCommandDispatcher;
							 
						 
					
						
							
								
									
										
										
										
											2024-04-23 14:12:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								@@ -298,7 +298,8 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								     // Spigot start
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     public static final int TPS = 20;
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 15:37:16 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								     public static final int TICK_TIME = 1000000000 / MinecraftServer.TPS;
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								-    private static final int SAMPLE_INTERVAL = 100;
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+    private static final int SAMPLE_INTERVAL = 20; // Paper - improve server tick loop
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    @Deprecated(forRemoval = true) // Paper
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								     public final double[] recentTps = new double[ 3 ];
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     // Spigot end
							 
						 
					
						
							
								
									
										
										
										
											2024-01-13 12:31:02 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								     public final io.papermc.paper.configuration.PaperConfigurations paperConfigurations; // Paper - add paper configuration files
							 
						 
					
						
							
								
									
										
										
										
											2024-04-23 14:12:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								@@ -1013,6 +1014,57 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								     {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         return ( avg * exp ) + ( tps * ( 1 - exp ) );
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    // Paper start - Further improve server tick loop
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    private static final long SEC_IN_NANO = 1000000000;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    private static final long MAX_CATCHUP_BUFFER = TICK_TIME * TPS * 60L;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    private long lastTick = 0;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    private long catchupTime = 0;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    public final RollingAverage tps1 = new RollingAverage(60);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    public final RollingAverage tps5 = new RollingAverage(60 * 5);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    public final RollingAverage tps15 = new RollingAverage(60 * 15);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    public static class RollingAverage {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        private final int size;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        private long time;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        private java.math.BigDecimal total;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        private int index = 0;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        private final java.math.BigDecimal[] samples;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        private final long[] times;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        RollingAverage(int size) {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            this.size = size;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            this.time = size * SEC_IN_NANO;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            this.total = dec(TPS).multiply(dec(SEC_IN_NANO)).multiply(dec(size));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            this.samples = new java.math.BigDecimal[size];
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            this.times = new long[size];
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            for (int i = 0; i < size; i++) {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                this.samples[i] = dec(TPS);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                this.times[i] = SEC_IN_NANO;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        private static java.math.BigDecimal dec(long t) {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            return new java.math.BigDecimal(t);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        public void add(java.math.BigDecimal x, long t) {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            time -= times[index];
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            total = total.subtract(samples[index].multiply(dec(times[index])));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            samples[index] = x;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            times[index] = t;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            time += t;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            total = total.add(x.multiply(dec(t)));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            if (++index == size) {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                index = 0;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        public double getAverage() {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            return total.divide(dec(time), 30, java.math.RoundingMode.HALF_UP).doubleValue();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    private static final java.math.BigDecimal TPS_BASE = new java.math.BigDecimal(1E9).multiply(new java.math.BigDecimal(SAMPLE_INTERVAL));
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-19 22:13:42 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+    // Paper end
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								     // Spigot End
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								     protected void runServer() {
							 
						 
					
						
							
								
									
										
										
										
											2024-04-23 14:12:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								@@ -1027,7 +1079,10 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								             // Spigot start
							 
						 
					
						
							
								
									
										
										
										
											2023-10-26 16:34:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								             Arrays.fill( this.recentTps, 20 );
							 
						 
					
						
							
								
									
										
										
										
											2023-12-05 20:39:26 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-            long tickSection = Util.getMillis(), tickCount = 1;
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+            // Paper start - further improve server tick loop
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            long tickSection = Util.getNanos();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            long currentTime;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            // Paper end - further improve server tick loop
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-07 21:15:06 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								             while (this.running) {
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								                 long i;
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
									
										
										
										
											2024-04-23 14:12:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								@@ -1050,15 +1105,22 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
 
							 
						 
					
						
							
								
									
										
										
										
											2023-09-22 13:13:57 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								                 }
							 
						 
					
						
							
								
									
										
										
										
											2023-12-05 20:39:26 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								                 // Spigot start
							 
						 
					
						
							
								
									
										
										
										
											2024-01-13 12:31:02 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								                 ++MinecraftServer.currentTickLong; // Paper - track current tick as a long
							 
						 
					
						
							
								
									
										
										
										
											2022-06-07 21:15:06 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-                if ( tickCount++ % MinecraftServer.SAMPLE_INTERVAL == 0 )
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-                {
 
							 
						 
					
						
							
								
									
										
										
										
											2023-12-05 20:39:26 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-                    long curTime = Util.getMillis();
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-07 21:15:06 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-                    double currentTps = 1E3 / ( curTime - tickSection ) * MinecraftServer.SAMPLE_INTERVAL;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-                    this.recentTps[0] = MinecraftServer.calcTps( this.recentTps[0], 0.92, currentTps ); // 1/exp(5sec/1min)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-                    this.recentTps[1] = MinecraftServer.calcTps( this.recentTps[1], 0.9835, currentTps ); // 1/exp(5sec/5min)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-                    this.recentTps[2] = MinecraftServer.calcTps( this.recentTps[2], 0.9945, currentTps ); // 1/exp(5sec/15min)
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-                    tickSection = curTime;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                // Paper start - further improve server tick loop
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                currentTime = Util.getNanos();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                if (++MinecraftServer.currentTick % MinecraftServer.SAMPLE_INTERVAL == 0) {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                    final long diff = currentTime - tickSection;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                    final java.math.BigDecimal currentTps = TPS_BASE.divide(new java.math.BigDecimal(diff), 30, java.math.RoundingMode.HALF_UP);
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-07 21:22:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+                    tps1.add(currentTps, diff);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                    tps5.add(currentTps, diff);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                    tps15.add(currentTps, diff);
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-07 21:22:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+                    // Backwards compat with bad plugins
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                    this.recentTps[0] = tps1.getAverage();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                    this.recentTps[1] = tps5.getAverage();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                    this.recentTps[2] = tps15.getAverage();
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+                    tickSection = currentTime;
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								                 }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                // Paper end - further improve server tick loop
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-07 21:15:06 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								                 // Spigot end
							 
						 
					
						
							
								
									
										
										
										
											2023-12-05 20:39:26 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								                 boolean flag = i == 0L;
							 
						 
					
						
							
								
									
										
										
										
											2024-04-23 14:12:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								@@ -1068,7 +1130,8 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-07 21:15:06 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								                     this.debugCommandProfiler = new MinecraftServer.TimeProfiler(Util.getNanos(), this.tickCount);
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								                 }
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-07 21:15:06 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-                MinecraftServer.currentTick = (int) (System.currentTimeMillis() / 50); // CraftBukkit
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-07 21:22:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+                //MinecraftServer.currentTick = (int) (System.currentTimeMillis() / 50); // CraftBukkit // Paper - don't overwrite current tick time
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-25 10:54:46 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+                lastTick = currentTime;
 
							 
						 
					
						
							
								
									
										
										
										
											2023-12-05 20:39:26 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								                 this.nextTickTimeNanos += i;
							 
						 
					
						
							
								
									
										
										
										
											2022-06-07 21:15:06 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								                 this.startMetricsRecordingTick();
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								                 this.profiler.push("tick");
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
 
							 
						 
					
						
							
								
									
										
										
										
											2024-04-23 14:12:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								index 7d2bb67867836e8f74b0583d36aed3966be8ed7d..a778954846bd6f7c63f1900e2189f47923c36c74 100644
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
 
							 
						 
					
						
							
								
									
										
										
										
											2024-04-23 14:12:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								@@ -2633,7 +2633,11 @@ public final class CraftServer implements Server {
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-24 22:13:08 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								     @Override
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     public double[] getTPS() {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-        return new double[]{0, 0, 0}; // TODO
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								+        return new double[] {
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-24 22:13:08 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+            net.minecraft.server.MinecraftServer.getServer().tps1.getAverage(),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            net.minecraft.server.MinecraftServer.getServer().tps5.getAverage(),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            net.minecraft.server.MinecraftServer.getServer().tps15.getAverage()
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								+        };
 
							 
						 
					
						
							
								
									
										
										
										
											2024-01-24 22:13:08 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								     }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     // Paper start - adventure sounds
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								diff --git a/src/main/java/org/spigotmc/TicksPerSecondCommand.java b/src/main/java/org/spigotmc/TicksPerSecondCommand.java
 
							 
						 
					
						
							
								
									
										
										
										
											2023-10-26 16:34:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								index d9ec48be0fdd2bfea938aa29e36b0f6ffa839ab2..9eb2823cc8f83bad2626fc77578b0162d9ed5782 100644
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								--- a/src/main/java/org/spigotmc/TicksPerSecondCommand.java
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+++ b/src/main/java/org/spigotmc/TicksPerSecondCommand.java
 
							 
						 
					
						
							
								
									
										
										
										
											2023-04-02 11:53:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								@@ -15,6 +15,12 @@ public class TicksPerSecondCommand extends Command
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         this.usageMessage = "/tps";
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         this.setPermission( "bukkit.command.tps" );
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    // Paper start
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    private static final net.kyori.adventure.text.Component WARN_MSG = net.kyori.adventure.text.Component.text()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        .append(net.kyori.adventure.text.Component.text("Warning: ", net.kyori.adventure.text.format.NamedTextColor.RED))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        .append(net.kyori.adventure.text.Component.text("Memory usage on modern garbage collectors is not a stable value and it is perfectly normal to see it reach max. Please do not pay it much attention.", net.kyori.adventure.text.format.NamedTextColor.GOLD))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        .build();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    // Paper end
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     @Override
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     public boolean execute(CommandSender sender, String currentAlias, String[] args)
							 
						 
					
						
							
								
									
										
										
										
											2023-04-07 00:08:44 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								@@ -24,22 +30,40 @@ public class TicksPerSecondCommand extends Command
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								             return true;
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-        StringBuilder sb = new StringBuilder( ChatColor.GOLD + "TPS from last 1m, 5m, 15m: " );
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-        for ( double tps : MinecraftServer.getServer().recentTps )
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-        {
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 15:37:16 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-            sb.append( this.format( tps ) );
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								-            sb.append( ", " );
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        // Paper start - Further improve tick handling
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        double[] tps = org.bukkit.Bukkit.getTPS();
 
							 
						 
					
						
							
								
									
										
										
										
											2023-04-07 00:08:44 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+        net.kyori.adventure.text.Component[] tpsAvg = new net.kyori.adventure.text.Component[tps.length];
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								+
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        for ( int i = 0; i < tps.length; i++) {
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 15:37:16 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+            tpsAvg[i] = TicksPerSecondCommand.format( tps[i] );
 
							 
						 
					
						
							
								
									
										
										
										
											2023-03-23 14:57:03 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+        }
 
							 
						 
					
						
							
								
									
										
										
										
											2023-04-07 00:08:44 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        net.kyori.adventure.text.TextComponent.Builder builder = net.kyori.adventure.text.Component.text();
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        builder.append(net.kyori.adventure.text.Component.text("TPS from last 1m, 5m, 15m: ", net.kyori.adventure.text.format.NamedTextColor.GOLD));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        builder.append(net.kyori.adventure.text.Component.join(net.kyori.adventure.text.JoinConfiguration.commas(true), tpsAvg));
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        sender.sendMessage(builder.asComponent());
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								+        if (args.length > 0 && args[0].equals("mem") && sender.hasPermission("bukkit.command.tpsmemory")) {
 
							 
						 
					
						
							
								
									
										
										
										
											2023-04-02 11:53:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+            sender.sendMessage(net.kyori.adventure.text.Component.text()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                .append(net.kyori.adventure.text.Component.text("Current Memory Usage: ", net.kyori.adventure.text.format.NamedTextColor.GOLD))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                .append(net.kyori.adventure.text.Component.text(((Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()) / (1024 * 1024)) + "/" + (Runtime.getRuntime().totalMemory() / (1024 * 1024)) + " mb (Max: " + (Runtime.getRuntime().maxMemory() / (1024 * 1024)) + " mb)", net.kyori.adventure.text.format.NamedTextColor.GREEN))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            );
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+            if (!this.hasShownMemoryWarning) {
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                sender.sendMessage(WARN_MSG);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+                this.hasShownMemoryWarning = true;
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								+            }
 
							 
						 
					
						
							
								
									
										
										
										
											2023-03-23 14:57:03 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								         }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-        sender.sendMessage( sb.substring( 0, sb.length() - 2 ) );
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-        sender.sendMessage(ChatColor.GOLD + "Current Memory Usage: " + ChatColor.GREEN + ((Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()) / (1024 * 1024)) + "/" + (Runtime.getRuntime().totalMemory() / (1024 * 1024)) + " mb (Max: "
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-                + (Runtime.getRuntime().maxMemory() / (1024 * 1024)) + " mb)");
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								+        // Paper end
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								         return true;
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								-    private String format(double tps)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+    private boolean hasShownMemoryWarning; // Paper
 
							 
						 
					
						
							
								
									
										
										
										
											2023-04-07 00:08:44 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+    private static net.kyori.adventure.text.Component format(double tps) // Paper - Made static
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								     {
							 
						 
					
						
							
								
									
										
										
										
											2023-04-07 00:08:44 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-        return ( ( tps > 18.0 ) ? ChatColor.GREEN : ( tps > 16.0 ) ? ChatColor.YELLOW : ChatColor.RED ).toString()
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								-                + ( ( tps > 20.0 ) ? "*" : "" ) + Math.min( Math.round( tps * 100.0 ) / 100.0, 20.0 );
 
							 
						 
					
						
							
								
									
										
										
										
											2023-04-07 00:08:44 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								+        // Paper
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        net.kyori.adventure.text.format.TextColor color = ( ( tps > 18.0 ) ? net.kyori.adventure.text.format.NamedTextColor.GREEN : ( tps > 16.0 ) ? net.kyori.adventure.text.format.NamedTextColor.YELLOW : net.kyori.adventure.text.format.NamedTextColor.RED );
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        String amount = Math.min(Math.round(tps * 100.0) / 100.0, 20.0) + (tps > 21.0  ? "*" : ""); // Paper - only print * at 21, we commonly peak to 20.02 as the tick sleep is not accurate enough, stop the noise
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        return net.kyori.adventure.text.Component.text(amount, color);
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								+        // Paper end
 
							 
						 
					
						
							
								
									
										
										
										
											2021-06-11 14:02:28 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								     }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								 }