Fix #222
This commit is contained in:
parent
d3c359b26d
commit
30960fd721
@ -666,7 +666,7 @@
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
Integer[] ids = DimensionManager.getIDs(this.tickCounter % 200 == 0);
|
Integer[] ids = DimensionManager.getIDs(this.tickCounter % 200 == 0);
|
||||||
@@ -602,19 +890,22 @@
|
@@ -602,19 +890,21 @@
|
||||||
int id = ids[x];
|
int id = ids[x];
|
||||||
long j = System.nanoTime();
|
long j = System.nanoTime();
|
||||||
|
|
||||||
@ -676,7 +676,6 @@
|
|||||||
+ //if (id == 0 || this.getAllowNether())
|
+ //if (id == 0 || this.getAllowNether())
|
||||||
+ //{
|
+ //{
|
||||||
WorldServer worldserver = DimensionManager.getWorld(id);
|
WorldServer worldserver = DimensionManager.getWorld(id);
|
||||||
+ worldserver.timings.fullTick.startTiming(); // KCauldron
|
|
||||||
this.theProfiler.startSection(worldserver.getWorldInfo().getWorldName());
|
this.theProfiler.startSection(worldserver.getWorldInfo().getWorldName());
|
||||||
this.theProfiler.startSection("pools");
|
this.theProfiler.startSection("pools");
|
||||||
this.theProfiler.endSection();
|
this.theProfiler.endSection();
|
||||||
@ -692,7 +691,7 @@
|
|||||||
|
|
||||||
this.theProfiler.startSection("tick");
|
this.theProfiler.startSection("tick");
|
||||||
FMLCommonHandler.instance().onPreWorldTick(worldserver);
|
FMLCommonHandler.instance().onPreWorldTick(worldserver);
|
||||||
@@ -622,22 +913,46 @@
|
@@ -622,22 +912,46 @@
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -741,7 +740,7 @@
|
|||||||
worldserver.addWorldInfoToCrashReport(crashreport);
|
worldserver.addWorldInfoToCrashReport(crashreport);
|
||||||
throw new ReportedException(crashreport);
|
throw new ReportedException(crashreport);
|
||||||
}
|
}
|
||||||
@@ -645,10 +960,13 @@
|
@@ -645,10 +959,12 @@
|
||||||
FMLCommonHandler.instance().onPostWorldTick(worldserver);
|
FMLCommonHandler.instance().onPostWorldTick(worldserver);
|
||||||
this.theProfiler.endSection();
|
this.theProfiler.endSection();
|
||||||
this.theProfiler.startSection("tracker");
|
this.theProfiler.startSection("tracker");
|
||||||
@ -751,12 +750,11 @@
|
|||||||
this.theProfiler.endSection();
|
this.theProfiler.endSection();
|
||||||
this.theProfiler.endSection();
|
this.theProfiler.endSection();
|
||||||
- }
|
- }
|
||||||
+ worldserver.timings.fullTick.stopTiming(); // KCauldron
|
|
||||||
+ // } // CraftBukkit
|
+ // } // CraftBukkit
|
||||||
|
|
||||||
worldTickTimes.get(id)[this.tickCounter % 100] = System.nanoTime() - j;
|
worldTickTimes.get(id)[this.tickCounter % 100] = System.nanoTime() - j;
|
||||||
}
|
}
|
||||||
@@ -656,15 +974,21 @@
|
@@ -656,15 +972,21 @@
|
||||||
this.theProfiler.endStartSection("dim_unloading");
|
this.theProfiler.endStartSection("dim_unloading");
|
||||||
DimensionManager.unloadWorlds(worldTickTimes);
|
DimensionManager.unloadWorlds(worldTickTimes);
|
||||||
this.theProfiler.endStartSection("connection");
|
this.theProfiler.endStartSection("connection");
|
||||||
@ -778,7 +776,7 @@
|
|||||||
|
|
||||||
this.theProfiler.endSection();
|
this.theProfiler.endSection();
|
||||||
}
|
}
|
||||||
@@ -699,6 +1023,13 @@
|
@@ -699,6 +1021,13 @@
|
||||||
|
|
||||||
public WorldServer worldServerForDimension(int p_71218_1_)
|
public WorldServer worldServerForDimension(int p_71218_1_)
|
||||||
{
|
{
|
||||||
@ -792,7 +790,7 @@
|
|||||||
WorldServer ret = DimensionManager.getWorld(p_71218_1_);
|
WorldServer ret = DimensionManager.getWorld(p_71218_1_);
|
||||||
if (ret == null)
|
if (ret == null)
|
||||||
{
|
{
|
||||||
@@ -784,13 +1115,14 @@
|
@@ -784,13 +1113,14 @@
|
||||||
|
|
||||||
public List getPossibleCompletions(ICommandSender p_71248_1_, String p_71248_2_)
|
public List getPossibleCompletions(ICommandSender p_71248_1_, String p_71248_2_)
|
||||||
{
|
{
|
||||||
@ -811,7 +809,7 @@
|
|||||||
|
|
||||||
if (list != null)
|
if (list != null)
|
||||||
{
|
{
|
||||||
@@ -798,40 +1130,25 @@
|
@@ -798,40 +1128,25 @@
|
||||||
|
|
||||||
while (iterator.hasNext())
|
while (iterator.hasNext())
|
||||||
{
|
{
|
||||||
@ -860,7 +858,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static MinecraftServer getServer()
|
public static MinecraftServer getServer()
|
||||||
@@ -1034,7 +1351,7 @@
|
@@ -1034,7 +1349,7 @@
|
||||||
|
|
||||||
public boolean isServerInOnlineMode()
|
public boolean isServerInOnlineMode()
|
||||||
{
|
{
|
||||||
@ -869,7 +867,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void setOnlineMode(boolean p_71229_1_)
|
public void setOnlineMode(boolean p_71229_1_)
|
||||||
@@ -1124,7 +1441,7 @@
|
@@ -1124,7 +1439,7 @@
|
||||||
|
|
||||||
public NetworkSystem func_147137_ag()
|
public NetworkSystem func_147137_ag()
|
||||||
{
|
{
|
||||||
@ -878,7 +876,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@SideOnly(Side.CLIENT)
|
@SideOnly(Side.CLIENT)
|
||||||
@@ -1259,8 +1576,11 @@
|
@@ -1259,8 +1574,11 @@
|
||||||
{
|
{
|
||||||
Bootstrap.func_151354_b();
|
Bootstrap.func_151354_b();
|
||||||
|
|
||||||
@ -890,7 +888,7 @@
|
|||||||
boolean flag = true;
|
boolean flag = true;
|
||||||
String s = null;
|
String s = null;
|
||||||
String s1 = ".";
|
String s1 = ".";
|
||||||
@@ -1356,16 +1676,34 @@
|
@@ -1356,16 +1674,34 @@
|
||||||
{
|
{
|
||||||
dedicatedserver.setGuiEnabled();
|
dedicatedserver.setGuiEnabled();
|
||||||
}
|
}
|
||||||
@ -931,7 +929,7 @@
|
|||||||
}
|
}
|
||||||
catch (Exception exception)
|
catch (Exception exception)
|
||||||
{
|
{
|
||||||
@@ -1400,15 +1738,70 @@
|
@@ -1400,15 +1736,70 @@
|
||||||
@SideOnly(Side.SERVER)
|
@SideOnly(Side.SERVER)
|
||||||
public String getPlugins()
|
public String getPlugins()
|
||||||
{
|
{
|
||||||
@ -1007,7 +1005,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@SideOnly(Side.SERVER)
|
@SideOnly(Side.SERVER)
|
||||||
@@ -1455,9 +1848,226 @@
|
@@ -1455,9 +1846,226 @@
|
||||||
return this.serverStopped;
|
return this.serverStopped;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -425,16 +425,19 @@
|
|||||||
{
|
{
|
||||||
if (this.updateEntityTick++ >= 1200)
|
if (this.updateEntityTick++ >= 1200)
|
||||||
{
|
{
|
||||||
@@ -498,7 +681,7 @@
|
@@ -496,9 +679,9 @@
|
||||||
|
|
||||||
|
public boolean tickUpdates(boolean p_72955_1_)
|
||||||
{
|
{
|
||||||
int i = this.pendingTickListEntriesTreeSet.size();
|
- int i = this.pendingTickListEntriesTreeSet.size();
|
||||||
|
+ int i = this.pendingTickListEntriesHashSet.size();
|
||||||
|
|
||||||
- if (i != this.pendingTickListEntriesHashSet.size())
|
- if (i != this.pendingTickListEntriesHashSet.size())
|
||||||
+ if (i != this.pendingTickListEntriesHashSet.size() && false) // KCauldron
|
+ if (false) // KCauldron
|
||||||
{
|
{
|
||||||
throw new IllegalStateException("TickNextTick list out of synch");
|
throw new IllegalStateException("TickNextTick list out of synch");
|
||||||
}
|
}
|
||||||
@@ -506,7 +689,16 @@
|
@@ -506,22 +689,31 @@
|
||||||
{
|
{
|
||||||
if (i > 1000)
|
if (i > 1000)
|
||||||
{
|
{
|
||||||
@ -452,7 +455,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.theProfiler.startSection("cleaning");
|
this.theProfiler.startSection("cleaning");
|
||||||
@@ -521,7 +713,7 @@
|
NextTickListEntry nextticklistentry;
|
||||||
|
|
||||||
|
- for (int j = 0; j < i; ++j)
|
||||||
|
+ for (Iterator iter = pendingTickListEntriesHashSet.iterator(); i >= 0 && iter.hasNext(); i--)
|
||||||
|
{
|
||||||
|
- nextticklistentry = (NextTickListEntry)this.pendingTickListEntriesTreeSet.first();
|
||||||
|
+ nextticklistentry = (NextTickListEntry) iter.next();
|
||||||
|
|
||||||
|
if (!p_72955_1_ && nextticklistentry.scheduledTime > this.worldInfo.getWorldTotalTime())
|
||||||
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -138,7 +138,6 @@ public class SpigotTimings {
|
|||||||
public final CustomTimingsHandler tickEntities;
|
public final CustomTimingsHandler tickEntities;
|
||||||
public final CustomTimingsHandler weatherUpdate;
|
public final CustomTimingsHandler weatherUpdate;
|
||||||
public final CustomTimingsHandler cleanupCache;
|
public final CustomTimingsHandler cleanupCache;
|
||||||
public final CustomTimingsHandler fullTick;
|
|
||||||
|
|
||||||
public final CustomTimingsHandler syncChunkLoadTimer;
|
public final CustomTimingsHandler syncChunkLoadTimer;
|
||||||
public final CustomTimingsHandler syncChunkLoadDataTimer;
|
public final CustomTimingsHandler syncChunkLoadDataTimer;
|
||||||
@ -178,7 +177,6 @@ public class SpigotTimings {
|
|||||||
tickEntities = new CustomTimingsHandler(name + "tickEntities");
|
tickEntities = new CustomTimingsHandler(name + "tickEntities");
|
||||||
weatherUpdate = new CustomTimingsHandler(name + "weatherUpdate");
|
weatherUpdate = new CustomTimingsHandler(name + "weatherUpdate");
|
||||||
cleanupCache = new CustomTimingsHandler(name + "cleanupCache");
|
cleanupCache = new CustomTimingsHandler(name + "cleanupCache");
|
||||||
fullTick = new CustomTimingsHandler(name + "fullTick");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user