mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-12-01 06:33:38 +01:00
Add tick list monitoring - deal with 1.0.0 getting behind when rendering
This commit is contained in:
parent
3e4bc59834
commit
36b81768cd
@ -1,6 +1,7 @@
|
|||||||
package org.dynmap;
|
package org.dynmap;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
import java.lang.reflect.Field;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
@ -70,7 +71,8 @@ public class MapManager {
|
|||||||
AtomicInteger chunks_attempted = new AtomicInteger(0);
|
AtomicInteger chunks_attempted = new AtomicInteger(0);
|
||||||
AtomicLong total_loadtime_ns = new AtomicLong(0L);
|
AtomicLong total_loadtime_ns = new AtomicLong(0L);
|
||||||
AtomicLong total_exceptions = new AtomicLong(0L);
|
AtomicLong total_exceptions = new AtomicLong(0L);
|
||||||
|
AtomicInteger ticklistcalls = new AtomicInteger(0);
|
||||||
|
|
||||||
/* Tile hash manager */
|
/* Tile hash manager */
|
||||||
public TileHashManager hashman;
|
public TileHashManager hashman;
|
||||||
/* lock for our data structures */
|
/* lock for our data structures */
|
||||||
@ -361,14 +363,12 @@ public class MapManager {
|
|||||||
if(map_index >= 0) { /* Finished a map? */
|
if(map_index >= 0) { /* Finished a map? */
|
||||||
double msecpertile = (double)timeaccum / (double)((rendercnt>0)?rendercnt:1)/(double)activemapcnt;
|
double msecpertile = (double)timeaccum / (double)((rendercnt>0)?rendercnt:1)/(double)activemapcnt;
|
||||||
double rendtime = total_render_ns.doubleValue() * 0.000001 / rendercalls.get();
|
double rendtime = total_render_ns.doubleValue() * 0.000001 / rendercalls.get();
|
||||||
if(activemapcnt > 1)
|
if(activemapcnt > 1)
|
||||||
sendMessage(rendertype + " of maps [" + activemaps + "] of '" +
|
sendMessage(String.format("%s of maps [%s] of '%s' completed - %d tiles rendered each (%.2f msec/map-tile, %.2f msec per render)",
|
||||||
world.world.getName() + "' completed - " + rendercnt + " tiles rendered each (" + String.format("%.2f", msecpertile) + " msec/map-tile, "
|
rendertype, activemaps, world.world.getName(), rendercnt, msecpertile, rendtime));
|
||||||
+ rendtime +" msec per render)");
|
|
||||||
else
|
else
|
||||||
sendMessage(rendertype + " of map '" + activemaps + "' of '" +
|
sendMessage(String.format("%s of map '%s' of '%s' completed - %d tiles rendered (%.2f msec/map-tile, %.2f msec per render)",
|
||||||
world.world.getName() + "' completed - " + rendercnt + " tiles rendered (" + String.format("%.2f", msecpertile) + " msec/tile. "
|
rendertype, activemaps, world.world.getName(), rendercnt, msecpertile, rendtime));
|
||||||
+ rendtime +" msec per render)");
|
|
||||||
|
|
||||||
}
|
}
|
||||||
found.clear();
|
found.clear();
|
||||||
@ -584,13 +584,11 @@ public class MapManager {
|
|||||||
double rendtime = total_render_ns.doubleValue() * 0.000001 / rendercalls.get();
|
double rendtime = total_render_ns.doubleValue() * 0.000001 / rendercalls.get();
|
||||||
double msecpertile = (double)timeaccum / (double)rendercnt / (double)activemapcnt;
|
double msecpertile = (double)timeaccum / (double)rendercnt / (double)activemapcnt;
|
||||||
if(activemapcnt > 1)
|
if(activemapcnt > 1)
|
||||||
sendMessage(rendertype + " of maps [" + activemaps + "] of '" +
|
sendMessage(String.format("%s of maps [%s] of '%s' in progress - %d tiles rendered each (%.2f msec/map-tile, %.2f msec per render)",
|
||||||
w.getName() + "' in progress - " + rendercnt + " tiles rendered each (" + String.format("%.2f", msecpertile) + " msec/map-tile, "
|
rendertype, activemaps, world.world.getName(), rendercnt, msecpertile, rendtime));
|
||||||
+ rendtime +" msec per render)");
|
|
||||||
else
|
else
|
||||||
sendMessage(rendertype + " of map '" + activemaps + "' of '" +
|
sendMessage(String.format("%s of map '%s' of '%s' in progress - %d tiles rendered (%.2f msec/tile, %.2f msec per render)",
|
||||||
w.getName() + "' in progress - " + rendercnt + " tiles rendered (" + String.format("%.2f", msecpertile) + " msec/tile. "
|
rendertype, activemaps, world.world.getName(), rendercnt, msecpertile, rendtime));
|
||||||
+ rendtime +" msec per render)");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1161,7 +1159,7 @@ public class MapManager {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if(delay)
|
if(delay)
|
||||||
try { Thread.sleep(50); } catch (InterruptedException ix) {}
|
try { Thread.sleep(25); } catch (InterruptedException ix) {}
|
||||||
}
|
}
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
@ -1198,36 +1196,37 @@ public class MapManager {
|
|||||||
if((prefix != null) && !k.startsWith(prefix))
|
if((prefix != null) && !k.startsWith(prefix))
|
||||||
continue;
|
continue;
|
||||||
MapStats ms = mapstats.get(k);
|
MapStats ms = mapstats.get(k);
|
||||||
sender.sendMessage(" " + k + ": processed=" + ms.loggedcnt + ", rendered=" + ms.renderedcnt +
|
sender.sendMessage(String.format(" %s: processed=%d, rendered=%d, updated=%d, transparent=%d",
|
||||||
", updated=" + ms.updatedcnt + ", transparent=" + ms.transparentcnt);
|
k, ms.loggedcnt, ms.renderedcnt, ms.updatedcnt, ms.transparentcnt));
|
||||||
tot.loggedcnt += ms.loggedcnt;
|
tot.loggedcnt += ms.loggedcnt;
|
||||||
tot.renderedcnt += ms.renderedcnt;
|
tot.renderedcnt += ms.renderedcnt;
|
||||||
tot.updatedcnt += ms.updatedcnt;
|
tot.updatedcnt += ms.updatedcnt;
|
||||||
tot.transparentcnt += ms.transparentcnt;
|
tot.transparentcnt += ms.transparentcnt;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
sender.sendMessage(" TOTALS: processed=" + tot.loggedcnt + ", rendered=" + tot.renderedcnt +
|
sender.sendMessage(String.format(" TOTALS: processed=%d, rendered=%d, updated=%d, transparent=%d",
|
||||||
", updated=" + tot.updatedcnt + ", transparent=" + tot.transparentcnt);
|
tot.loggedcnt, tot.renderedcnt, tot.updatedcnt, tot.transparentcnt));
|
||||||
sender.sendMessage(" Triggered update queue size: " + tileQueue.size());
|
sender.sendMessage(String.format(" Triggered update queue size: %d", tileQueue.size()));
|
||||||
String act = "";
|
String act = "";
|
||||||
for(String wn : active_renders.keySet())
|
for(String wn : active_renders.keySet())
|
||||||
act += wn + " ";
|
act += wn + " ";
|
||||||
sender.sendMessage(" Active render jobs: " + act);
|
sender.sendMessage(String.format(" Active render jobs: %s", act));
|
||||||
/* Chunk load stats */
|
/* Chunk load stats */
|
||||||
sender.sendMessage("Chunk Loading Statistics:");
|
sender.sendMessage("Chunk Loading Statistics:");
|
||||||
sender.sendMessage(" Cache hit rate: " + sscache.getHitRate() + "%");
|
sender.sendMessage(String.format(" Cache hit rate: %.2f%%", sscache.getHitRate()));
|
||||||
int setcnt = chunk_caches_attempted.get();
|
int setcnt = chunk_caches_attempted.get();
|
||||||
sender.sendMessage(" Chunk sets: created=" + chunk_caches_created.get() + ", attempted=" + chunk_caches_attempted.get());
|
sender.sendMessage(String.format(" Chunk sets: created=%d, attempted=%d", chunk_caches_created.get(), chunk_caches_attempted.get()));
|
||||||
int readcnt = chunks_read.get();
|
int readcnt = chunks_read.get();
|
||||||
sender.sendMessage(" Chunk: loaded=" + readcnt + ", attempted=" + chunks_attempted.get());
|
sender.sendMessage(String.format(" Chunk: loaded=%d, attempted=%d", readcnt, chunks_attempted.get()));
|
||||||
double ns = total_loadtime_ns.doubleValue() * 0.000001; /* Convert to milliseconds */
|
double ns = total_loadtime_ns.doubleValue() * 0.000001; /* Convert to milliseconds */
|
||||||
double chunkloadns = total_chunk_cache_loadtime_ns.doubleValue() * 0.000001;
|
double chunkloadns = total_chunk_cache_loadtime_ns.doubleValue() * 0.000001;
|
||||||
if(readcnt == 0) readcnt = 1;
|
if(readcnt == 0) readcnt = 1;
|
||||||
if(setcnt == 0) setcnt = 1;
|
if(setcnt == 0) setcnt = 1;
|
||||||
sender.sendMessage(" Chunk load times: " + ns + " msec (" + (ns / readcnt) + " msec/chunk)");
|
sender.sendMessage(String.format(" Chunk load times: %.2f msec (%.2f msec/chunk)", ns, (ns / readcnt)));
|
||||||
sender.sendMessage(" Chunk set load times: " + chunkloadns + " msec (" + (chunkloadns / setcnt) + " msec/set)");
|
sender.sendMessage(String.format(" Chunk set load times: %.2f msec (%.2f msec/set)", chunkloadns, (chunkloadns / setcnt)));
|
||||||
sender.sendMessage(" Chunk set delay times: " + (chunkloadns-ns) + " msec (" + ((chunkloadns-ns) / setcnt) + " msec/set)");
|
sender.sendMessage(String.format(" Chunk set delay times: %.2f msec (%.2f msec/set)", chunkloadns-ns, ((chunkloadns-ns) / setcnt)));
|
||||||
sender.sendMessage(" Chunk set exceptions: " + total_exceptions.get());
|
sender.sendMessage(String.format(" Chunk set exceptions: %d", total_exceptions.get()));
|
||||||
|
sender.sendMessage(String.format(" World tick list processing calls: %d", ticklistcalls.get()));
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Print trigger statistics command
|
* Print trigger statistics command
|
||||||
@ -1269,6 +1268,7 @@ public class MapManager {
|
|||||||
total_loadtime_ns.set(0);
|
total_loadtime_ns.set(0);
|
||||||
total_chunk_cache_loadtime_ns.set(0);
|
total_chunk_cache_loadtime_ns.set(0);
|
||||||
total_exceptions.set(0);
|
total_exceptions.set(0);
|
||||||
|
ticklistcalls.set(0);
|
||||||
}
|
}
|
||||||
sscache.resetStats();
|
sscache.resetStats();
|
||||||
sender.sendMessage("Tile Render Statistics reset");
|
sender.sendMessage("Tile Render Statistics reset");
|
||||||
@ -1339,4 +1339,9 @@ public class MapManager {
|
|||||||
boolean getPauseUpdateRenders() {
|
boolean getPauseUpdateRenders() {
|
||||||
return pauseupdaterenders;
|
return pauseupdaterenders;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void incExtraTickList() {
|
||||||
|
ticklistcalls.incrementAndGet();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -6,10 +6,10 @@ import java.lang.reflect.Method;
|
|||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.ListIterator;
|
import java.util.ListIterator;
|
||||||
|
import java.util.TreeSet;
|
||||||
|
|
||||||
import org.bukkit.World;
|
import org.bukkit.World;
|
||||||
import org.bukkit.Chunk;
|
import org.bukkit.Chunk;
|
||||||
import org.bukkit.World.Environment;
|
|
||||||
import org.bukkit.block.Biome;
|
import org.bukkit.block.Biome;
|
||||||
import org.bukkit.entity.Entity;
|
import org.bukkit.entity.Entity;
|
||||||
import org.bukkit.ChunkSnapshot;
|
import org.bukkit.ChunkSnapshot;
|
||||||
@ -28,15 +28,16 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
private static Method poppreservedchunk = null;
|
private static Method poppreservedchunk = null;
|
||||||
private static Method gethandle = null;
|
private static Method gethandle = null;
|
||||||
private static Method removeentities = null;
|
private static Method removeentities = null;
|
||||||
private static Method getworldchunkmgr = null;
|
|
||||||
private static Method getbiomedata = null;
|
|
||||||
private static Method getworldhandle = null;
|
private static Method getworldhandle = null;
|
||||||
private static Field chunkbiome = null;
|
private static Field chunkbiome = null;
|
||||||
private static boolean canusebiomefix = false;
|
private static Field ticklist = null;
|
||||||
private static boolean biomefixtested = false;
|
private static Method processticklist = null;
|
||||||
private static boolean biomefixneeded = false;
|
|
||||||
|
private static final int MAX_PROCESSTICKS = 20;
|
||||||
|
private static final int MAX_TICKLIST = 1000;
|
||||||
|
|
||||||
private World w;
|
private World w;
|
||||||
|
private Object craftworld;
|
||||||
private List<DynmapChunk> chunks;
|
private List<DynmapChunk> chunks;
|
||||||
private ListIterator<DynmapChunk> iterator;
|
private ListIterator<DynmapChunk> iterator;
|
||||||
private int x_min, x_max, z_min, z_max;
|
private int x_min, x_max, z_min, z_max;
|
||||||
@ -45,11 +46,12 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
private HiddenChunkStyle hidestyle = HiddenChunkStyle.FILL_AIR;
|
private HiddenChunkStyle hidestyle = HiddenChunkStyle.FILL_AIR;
|
||||||
private List<VisibilityLimit> visible_limits = null;
|
private List<VisibilityLimit> visible_limits = null;
|
||||||
private List<VisibilityLimit> hidden_limits = null;
|
private List<VisibilityLimit> hidden_limits = null;
|
||||||
private DynmapWorld.AutoGenerateOption generateopt;
|
|
||||||
private boolean do_generate = false;
|
private boolean do_generate = false;
|
||||||
private boolean do_save = false;
|
private boolean do_save = false;
|
||||||
private boolean isempty = true;
|
private boolean isempty = true;
|
||||||
private ChunkSnapshot[] snaparray; /* Index = (x-x_min) + ((z-z_min)*x_dim) */
|
private ChunkSnapshot[] snaparray; /* Index = (x-x_min) + ((z-z_min)*x_dim) */
|
||||||
|
private Biome[][] snapbiomes; /* Biome cache - getBiome() is expensive */
|
||||||
|
private TreeSet<?> ourticklist;
|
||||||
|
|
||||||
private int chunks_read; /* Number of chunks actually loaded */
|
private int chunks_read; /* Number of chunks actually loaded */
|
||||||
private int chunks_attempted; /* Number of chunks attempted to load */
|
private int chunks_attempted; /* Number of chunks attempted to load */
|
||||||
@ -109,7 +111,16 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
return snap.getBlockEmittedLight(bx, y, bz);
|
return snap.getBlockEmittedLight(bx, y, bz);
|
||||||
}
|
}
|
||||||
public final Biome getBiome() {
|
public final Biome getBiome() {
|
||||||
return snap.getBiome(bx, bz);
|
Biome[] b = snapbiomes[chunkindex];
|
||||||
|
if(b == null) {
|
||||||
|
b = snapbiomes[chunkindex] = new Biome[256];
|
||||||
|
}
|
||||||
|
int off = bx + (bz << 4);
|
||||||
|
Biome bio = b[off];
|
||||||
|
if(bio == null) {
|
||||||
|
bio = b[off] = snap.getBiome(bx, bz);
|
||||||
|
}
|
||||||
|
return bio;
|
||||||
}
|
}
|
||||||
public double getRawBiomeTemperature() {
|
public double getRawBiomeTemperature() {
|
||||||
return snap.getRawBiomeTemperature(bx, bz);
|
return snap.getRawBiomeTemperature(bx, bz);
|
||||||
@ -358,23 +369,7 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
} catch (ClassNotFoundException cnfx) {
|
} catch (ClassNotFoundException cnfx) {
|
||||||
} catch (NoSuchMethodException nsmx) {
|
} catch (NoSuchMethodException nsmx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get WorldChunkManager.b(float[],int,int,int,int) and WorldChunkManager.a(float[],int,int,int,int) */
|
|
||||||
try {
|
|
||||||
Class c = Class.forName("net.minecraft.server.WorldChunkManager");
|
|
||||||
Class biomebasearray = Class.forName("[Lnet.minecraft.server.BiomeBase;");
|
|
||||||
getbiomedata = c.getDeclaredMethod("a", new Class[] { biomebasearray, int.class, int.class, int.class, int.class });
|
|
||||||
} catch (ClassNotFoundException cnfx) {
|
|
||||||
} catch (NoSuchMethodException nsmx) {
|
|
||||||
}
|
|
||||||
|
|
||||||
/* getWorldChunkManager() */
|
|
||||||
try {
|
|
||||||
Class c = Class.forName("net.minecraft.server.World");
|
|
||||||
getworldchunkmgr = c.getDeclaredMethod("getWorldChunkManager", new Class[0]);
|
|
||||||
} catch (ClassNotFoundException cnfx) {
|
|
||||||
} catch (NoSuchMethodException nsmx) {
|
|
||||||
}
|
|
||||||
/* Get CraftChunkSnapshot.biome field */
|
/* Get CraftChunkSnapshot.biome field */
|
||||||
try {
|
try {
|
||||||
Class c = Class.forName("org.bukkit.craftbukkit.CraftChunkSnapshot");
|
Class c = Class.forName("org.bukkit.craftbukkit.CraftChunkSnapshot");
|
||||||
@ -383,20 +378,37 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
} catch (ClassNotFoundException cnfx) {
|
} catch (ClassNotFoundException cnfx) {
|
||||||
} catch (NoSuchFieldException nsmx) {
|
} catch (NoSuchFieldException nsmx) {
|
||||||
}
|
}
|
||||||
|
/* ticklist for World */
|
||||||
|
try {
|
||||||
|
Class c = Class.forName("net.minecraft.server.World");
|
||||||
|
try {
|
||||||
|
ticklist = c.getDeclaredField("K"); /* 1.0.0 */
|
||||||
|
} catch (NoSuchFieldException nsfx) {
|
||||||
|
ticklist = c.getDeclaredField("N"); /* 1.8.1 */
|
||||||
|
}
|
||||||
|
ticklist.setAccessible(true);
|
||||||
|
if(ticklist.getType().isAssignableFrom(TreeSet.class) == false)
|
||||||
|
ticklist = null;
|
||||||
|
processticklist = c.getDeclaredMethod("a", new Class[] { boolean.class } );
|
||||||
|
} catch (ClassNotFoundException cnfx) {
|
||||||
|
} catch (NoSuchFieldException nsmx) {
|
||||||
|
} catch (NoSuchMethodException nsmx) {
|
||||||
|
}
|
||||||
|
|
||||||
init = true;
|
init = true;
|
||||||
if((getworldchunkmgr != null) && (getbiomedata != null) && (getworldhandle != null) && (chunkbiome != null)) {
|
|
||||||
canusebiomefix = true;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
biomefixtested = true;
|
|
||||||
biomefixneeded = false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@SuppressWarnings({ "unchecked", "rawtypes" })
|
@SuppressWarnings({ "rawtypes" })
|
||||||
public void setChunks(World w, List<DynmapChunk> chunks) {
|
public void setChunks(World w, List<DynmapChunk> chunks) {
|
||||||
this.w = w;
|
this.w = w;
|
||||||
|
if((getworldhandle != null) && (craftworld == null)) {
|
||||||
|
try {
|
||||||
|
craftworld = getworldhandle.invoke(w); /* World.getHandle() */
|
||||||
|
if(ticklist != null)
|
||||||
|
ourticklist = (TreeSet)ticklist.get(craftworld);
|
||||||
|
} catch (Exception x) {
|
||||||
|
}
|
||||||
|
}
|
||||||
this.chunks = chunks;
|
this.chunks = chunks;
|
||||||
/* Compute range */
|
/* Compute range */
|
||||||
if(chunks.size() == 0) {
|
if(chunks.size() == 0) {
|
||||||
@ -423,6 +435,7 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
}
|
}
|
||||||
|
|
||||||
snaparray = new ChunkSnapshot[x_dim * (z_max-z_min+1)];
|
snaparray = new ChunkSnapshot[x_dim * (z_max-z_min+1)];
|
||||||
|
snapbiomes = new Biome[x_dim * (z_max-z_min+1)][];
|
||||||
}
|
}
|
||||||
|
|
||||||
public int loadChunks(int max_to_load) {
|
public int loadChunks(int max_to_load) {
|
||||||
@ -430,6 +443,10 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
if(iterator == null)
|
if(iterator == null)
|
||||||
iterator = chunks.listIterator();
|
iterator = chunks.listIterator();
|
||||||
|
|
||||||
|
if(checkTickList() == false) { /* Tick processing is behind? */
|
||||||
|
max_to_load = 1;
|
||||||
|
}
|
||||||
|
|
||||||
DynmapPlugin.setIgnoreChunkLoads(true);
|
DynmapPlugin.setIgnoreChunkLoads(true);
|
||||||
//boolean isnormral = w.getEnvironment() == Environment.NORMAL;
|
//boolean isnormral = w.getEnvironment() == Environment.NORMAL;
|
||||||
@ -492,10 +509,6 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
else
|
else
|
||||||
ss = w.getEmptyChunkSnapshot(chunk.x, chunk.z, biome, biomeraw);
|
ss = w.getEmptyChunkSnapshot(chunk.x, chunk.z, biome, biomeraw);
|
||||||
if(ss != null) {
|
if(ss != null) {
|
||||||
if((!biomefixtested) && biome) /* Test for biome fix */
|
|
||||||
testIfBiomeFixNeeded(w, ss);
|
|
||||||
if(biomefixneeded && biome) /* If needed, apply it */
|
|
||||||
doBiomeFix(w, ss);
|
|
||||||
MapManager.mapman.sscache.putSnapshot(w.getName(), chunk.x, chunk.z, ss, blockdata, biome, biomeraw, highesty);
|
MapManager.mapman.sscache.putSnapshot(w.getName(), chunk.x, chunk.z, ss, blockdata, biome, biomeraw, highesty);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -560,42 +573,6 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
|
|
||||||
return cnt;
|
return cnt;
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* Test if biome fix needed, using loaded snapshot
|
|
||||||
*/
|
|
||||||
private boolean testIfBiomeFixNeeded(World w, ChunkSnapshot ss) {
|
|
||||||
if(biomefixtested == false) {
|
|
||||||
biomefixtested = true;
|
|
||||||
for(int i = 0; (!biomefixneeded) && (i < 16); i++) {
|
|
||||||
for(int j = 0; j < 16; j++) {
|
|
||||||
if(w.getBiome((ss.getX()<<4)+i, (ss.getZ()<<4)+j) != ss.getBiome(i, j)) { /* Mismatch? */
|
|
||||||
biomefixneeded = true;
|
|
||||||
Log.info("Biome Snapshot fix active");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return biomefixneeded;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Use biome fix to patch snapshot data
|
|
||||||
*/
|
|
||||||
private void doBiomeFix(World w, ChunkSnapshot ss) {
|
|
||||||
if(biomefixneeded && canusebiomefix) {
|
|
||||||
try {
|
|
||||||
Object wh = getworldhandle.invoke(w); /* World.getHandle() */
|
|
||||||
Object wcm = getworldchunkmgr.invoke(wh); /* CraftWorld.getWorldChunkManager() */
|
|
||||||
Object biomefield = chunkbiome.get(ss); /* Get ss.biome */
|
|
||||||
if(biomefield != null) {
|
|
||||||
getbiomedata.invoke(wcm, biomefield, (int)(ss.getX()<<4), (int)(ss.getZ()<<4), 16, 16); /* Get biome data */
|
|
||||||
}
|
|
||||||
} catch (InvocationTargetException itx) {
|
|
||||||
} catch (IllegalArgumentException e) {
|
|
||||||
} catch (IllegalAccessException e) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
/**
|
||||||
* Test if done loading
|
* Test if done loading
|
||||||
*/
|
*/
|
||||||
@ -689,7 +666,6 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
Log.severe("Cannot setAutoGenerateVisibleRanges() without visible ranges defined");
|
Log.severe("Cannot setAutoGenerateVisibleRanges() without visible ranges defined");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.generateopt = generateopt;
|
|
||||||
this.do_generate = (generateopt != DynmapWorld.AutoGenerateOption.NONE);
|
this.do_generate = (generateopt != DynmapWorld.AutoGenerateOption.NONE);
|
||||||
this.do_save = (generateopt == DynmapWorld.AutoGenerateOption.PERMANENT);
|
this.do_save = (generateopt == DynmapWorld.AutoGenerateOption.PERMANENT);
|
||||||
}
|
}
|
||||||
@ -767,4 +743,23 @@ public class NewMapChunkCache implements MapChunkCache {
|
|||||||
public long getExceptionCount() {
|
public long getExceptionCount() {
|
||||||
return exceptions;
|
return exceptions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private boolean checkTickList() {
|
||||||
|
boolean isok = true;
|
||||||
|
if((ourticklist != null) && (processticklist != null)) {
|
||||||
|
int cnt = 0;
|
||||||
|
while((cnt < MAX_PROCESSTICKS) && (ourticklist.size() > MAX_TICKLIST)) {
|
||||||
|
try {
|
||||||
|
processticklist.invoke(craftworld, true);
|
||||||
|
} catch (Exception x) {
|
||||||
|
}
|
||||||
|
cnt++;
|
||||||
|
MapManager.mapman.incExtraTickList();
|
||||||
|
}
|
||||||
|
if(cnt >= MAX_PROCESSTICKS) { /* If still behind, delay processing */
|
||||||
|
isok = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return isok;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user