2014-06-22 15:49:11 -05:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2015-04-13 15:48:16 -05:00
From: Zach Brown <1254957+zachbr@users.noreply.github.com>
Date: Mon, 13 Apr 2015 15:47:15 -0500
2014-06-22 15:49:11 -05:00
Subject: [PATCH] Fix redstone lag issues
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
--- a/src/main/java/net/minecraft/server/WorldServer.java
+++ b/src/main/java/net/minecraft/server/WorldServer.java
2014-11-27 17:17:45 -08:00
@@ -0,0 +0,0 @@ public class WorldServer extends World implements IAsyncTaskHandler {
2015-04-13 15:48:16 -05:00
if (false) { // CraftBukkit
2014-11-27 17:17:45 -08:00
throw new IllegalStateException("TickNextTick list out of synch");
} else {
2015-03-07 19:16:09 -06:00
+ // PaperSpigot start - No, stop doing this, it affects things like redstone
2014-11-27 17:17:45 -08:00
+ /*
if (i > 1000) {
// CraftBukkit start - If the server has too much to process over time, try to alleviate that
if (i > 20 * 1000) {
@@ -0,0 +0,0 @@ public class WorldServer extends World implements IAsyncTaskHandler {
i = 1000;
}
2015-03-07 19:16:09 -06:00
// CraftBukkit end
+ */
2015-03-23 14:40:52 -05:00
+ if (i > paperSpigotConfig.tickNextTickCap) {
+ i = paperSpigotConfig.tickNextTickCap;
2014-11-30 20:09:09 -06:00
}
2014-11-27 17:17:45 -08:00
+ // PaperSpigot end
2014-06-22 15:49:11 -05:00
2014-11-27 17:17:45 -08:00
this.methodProfiler.a("cleaning");
2014-06-22 15:49:11 -05:00
2015-04-17 03:54:46 -07:00
@@ -0,0 +0,0 @@ public class WorldServer extends World implements IAsyncTaskHandler {
this.V.add(nextticklistentry);
}
+ // PaperSpigot start - Allow redstone ticks to bypass the tickNextTickListCap
+ if (paperSpigotConfig.tickNextTickListCapIgnoresRedstone) {
+ Iterator<NextTickListEntry> iterator = this.M.iterator();
+ while (iterator.hasNext()) {
+ NextTickListEntry next = iterator.next();
+ if (!flag && next.b > this.worldData.getTime()) {
+ break;
+ }
+
+ if (next.a().isPowerSource() || next.a() instanceof IContainer) {
+ iterator.remove();
+ this.V.add(next);
+ }
+ }
+ }
+ // PaperSpigot end
+
this.methodProfiler.b();
this.methodProfiler.a("ticking");
Iterator iterator = this.V.iterator();
2015-03-23 14:40:52 -05:00
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
@@ -0,0 +0,0 @@ public class PaperSpigotWorldConfig
2015-06-04 01:42:09 -07:00
{
netherVoidTopDamage = getBoolean( "nether-ceiling-void-damage", false );
2015-03-23 14:40:52 -05:00
}
+
+ public int tickNextTickCap;
2015-04-17 03:54:46 -07:00
+ public boolean tickNextTickListCapIgnoresRedstone;
2015-03-23 14:40:52 -05:00
+ private void tickNextTickCap()
+ {
2015-03-24 18:28:19 -05:00
+ tickNextTickCap = getInt( "tick-next-tick-list-cap", 10000 ); // Higher values will be friendlier to vanilla style mechanics (to a point) but may hurt performance
2015-04-17 03:54:46 -07:00
+ tickNextTickListCapIgnoresRedstone = getBoolean( "tick-next-tick-list-cap-ignores-redstone", false ); // Redstone TickNextTicks will always bypass the preceding cap.
2015-03-23 14:40:52 -05:00
+ log( "WorldServer TickNextTick cap set at " + tickNextTickCap );
2015-04-17 03:54:46 -07:00
+ log( "WorldServer TickNextTickList cap always processes redstone: " + tickNextTickListCapIgnoresRedstone );
2015-03-23 14:40:52 -05:00
+ }
}
2015-06-04 01:42:09 -07:00
--
1.9.5.msysgit.1