forked from xjboss/KCauldronX
Initial commit (Forge 1291).
This commit is contained in:
465
patches/net/minecraft/world/gen/ChunkProviderServer.java.patch
Normal file
465
patches/net/minecraft/world/gen/ChunkProviderServer.java.patch
Normal file
@ -0,0 +1,465 @@
|
||||
--- ../src-base/minecraft/net/minecraft/world/gen/ChunkProviderServer.java
|
||||
+++ ../src-work/minecraft/net/minecraft/world/gen/ChunkProviderServer.java
|
||||
@@ -32,23 +32,40 @@
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
+// CraftBukkit start
|
||||
+import java.util.Random;
|
||||
+import net.minecraft.block.BlockSand;
|
||||
+import org.bukkit.Server;
|
||||
+import org.bukkit.craftbukkit.util.LongHash;
|
||||
+import org.bukkit.craftbukkit.util.LongHashSet;
|
||||
+import org.bukkit.craftbukkit.util.LongObjectHashMap;
|
||||
+import org.bukkit.event.world.ChunkUnloadEvent;
|
||||
+// CraftBukkit end
|
||||
+// Cauldron start
|
||||
+import cpw.mods.fml.common.FMLCommonHandler;
|
||||
+import net.minecraft.server.MinecraftServer;
|
||||
+import net.minecraftforge.cauldron.configuration.CauldronConfig;
|
||||
+import net.minecraftforge.cauldron.CauldronHooks;
|
||||
+// Cauldron end
|
||||
|
||||
public class ChunkProviderServer implements IChunkProvider
|
||||
{
|
||||
private static final Logger logger = LogManager.getLogger();
|
||||
- private Set chunksToUnload = Collections.newSetFromMap(new ConcurrentHashMap());
|
||||
- private Chunk defaultEmptyChunk;
|
||||
+ public LongHashSet chunksToUnload = new LongHashSet(); // LongHashSet
|
||||
+ public Chunk defaultEmptyChunk;
|
||||
public IChunkProvider currentChunkProvider;
|
||||
public IChunkLoader currentChunkLoader;
|
||||
- public boolean loadChunkOnProvideRequest = true;
|
||||
- public LongHashMap loadedChunkHashMap = new LongHashMap();
|
||||
- public List loadedChunks = new ArrayList();
|
||||
+ public boolean loadChunkOnProvideRequest = MinecraftServer.getServer().cauldronConfig.loadChunkOnRequest.getValue(); // Cauldron - if true, allows mods to force load chunks. to disable, set load-chunk-on-request in cauldron.yml to false
|
||||
+ public int initialTick; // Cauldron counter to keep track of when this loader was created
|
||||
+ public LongObjectHashMap<Chunk> loadedChunkHashMap = new LongObjectHashMap<Chunk>();
|
||||
+ public List loadedChunks = new ArrayList(); // Cauldron - vanilla compatibility
|
||||
public WorldServer worldObj;
|
||||
private Set<Long> loadingChunks = com.google.common.collect.Sets.newHashSet();
|
||||
private static final String __OBFID = "CL_00001436";
|
||||
|
||||
public ChunkProviderServer(WorldServer p_i1520_1_, IChunkLoader p_i1520_2_, IChunkProvider p_i1520_3_)
|
||||
{
|
||||
+ this.initialTick = MinecraftServer.currentTick; // Cauldron keep track of when the loader was created
|
||||
this.defaultEmptyChunk = new EmptyChunk(p_i1520_1_, 0, 0);
|
||||
this.worldObj = p_i1520_1_;
|
||||
this.currentChunkLoader = p_i1520_2_;
|
||||
@@ -57,10 +74,10 @@
|
||||
|
||||
public boolean chunkExists(int p_73149_1_, int p_73149_2_)
|
||||
{
|
||||
- return this.loadedChunkHashMap.containsItem(ChunkCoordIntPair.chunkXZ2Int(p_73149_1_, p_73149_2_));
|
||||
+ return this.loadedChunkHashMap.containsKey(LongHash.toLong(p_73149_1_, p_73149_2_)); // CraftBukkit
|
||||
}
|
||||
|
||||
- public List func_152380_a()
|
||||
+ public List func_152380_a() // Vanilla compatibility
|
||||
{
|
||||
return this.loadedChunks;
|
||||
}
|
||||
@@ -74,20 +91,39 @@
|
||||
int l = p_73241_2_ * 16 + 8 - chunkcoordinates.posZ;
|
||||
short short1 = 128;
|
||||
|
||||
+ // CraftBukkit start
|
||||
if (k < -short1 || k > short1 || l < -short1 || l > short1)
|
||||
{
|
||||
- this.chunksToUnload.add(Long.valueOf(ChunkCoordIntPair.chunkXZ2Int(p_73241_1_, p_73241_2_)));
|
||||
+ this.chunksToUnload.add(p_73241_1_, p_73241_2_);
|
||||
+ Chunk c = this.loadedChunkHashMap.get(LongHash.toLong(p_73241_1_, p_73241_2_));
|
||||
+
|
||||
+ if (c != null)
|
||||
+ {
|
||||
+ c.mustSave = true;
|
||||
+ }
|
||||
+ CauldronHooks.logChunkUnload(this, p_73241_1_, p_73241_2_, "Chunk added to unload queue");
|
||||
}
|
||||
+
|
||||
+ // CraftBukkit end
|
||||
}
|
||||
else
|
||||
{
|
||||
- this.chunksToUnload.add(Long.valueOf(ChunkCoordIntPair.chunkXZ2Int(p_73241_1_, p_73241_2_)));
|
||||
+ // CraftBukkit start
|
||||
+ this.chunksToUnload.add(p_73241_1_, p_73241_2_);
|
||||
+ Chunk c = this.loadedChunkHashMap.get(LongHash.toLong(p_73241_1_, p_73241_2_));
|
||||
+
|
||||
+ if (c != null)
|
||||
+ {
|
||||
+ c.mustSave = true;
|
||||
+ }
|
||||
+ CauldronHooks.logChunkUnload(this, p_73241_1_, p_73241_2_, "Chunk added to unload queue");
|
||||
+ // CraftBukkit end
|
||||
}
|
||||
}
|
||||
|
||||
public void unloadAllChunks()
|
||||
{
|
||||
- Iterator iterator = this.loadedChunks.iterator();
|
||||
+ Iterator iterator = this.loadedChunkHashMap.values().iterator(); // CraftBukkit
|
||||
|
||||
while (iterator.hasNext())
|
||||
{
|
||||
@@ -103,9 +139,9 @@
|
||||
|
||||
public Chunk loadChunk(int par1, int par2, Runnable runnable)
|
||||
{
|
||||
- long k = ChunkCoordIntPair.chunkXZ2Int(par1, par2);
|
||||
- this.chunksToUnload.remove(Long.valueOf(k));
|
||||
- Chunk chunk = (Chunk)this.loadedChunkHashMap.getValueByKey(k);
|
||||
+ this.chunksToUnload.remove(par1, par2);
|
||||
+ Chunk chunk = (Chunk) this.loadedChunkHashMap.get(LongHash.toLong(par1, par2));
|
||||
+ boolean newChunk = false;
|
||||
AnvilChunkLoader loader = null;
|
||||
|
||||
if (this.currentChunkLoader instanceof AnvilChunkLoader)
|
||||
@@ -113,6 +149,8 @@
|
||||
loader = (AnvilChunkLoader) this.currentChunkLoader;
|
||||
}
|
||||
|
||||
+ CauldronHooks.logChunkLoad(this, "Get", par1, par2, true);
|
||||
+
|
||||
// We can only use the queue for already generated chunks
|
||||
if (chunk == null && loader != null && loader.chunkExists(this.worldObj, par1, par2))
|
||||
{
|
||||
@@ -142,18 +180,19 @@
|
||||
|
||||
public Chunk originalLoadChunk(int p_73158_1_, int p_73158_2_)
|
||||
{
|
||||
- long k = ChunkCoordIntPair.chunkXZ2Int(p_73158_1_, p_73158_2_);
|
||||
- this.chunksToUnload.remove(Long.valueOf(k));
|
||||
- Chunk chunk = (Chunk)this.loadedChunkHashMap.getValueByKey(k);
|
||||
+ this.chunksToUnload.remove(p_73158_1_, p_73158_2_);
|
||||
+ Chunk chunk = (Chunk) this.loadedChunkHashMap.get(LongHash.toLong(p_73158_1_, p_73158_2_));
|
||||
+ boolean newChunk = false; // CraftBukkit
|
||||
|
||||
if (chunk == null)
|
||||
{
|
||||
- boolean added = loadingChunks.add(k);
|
||||
+ worldObj.timings.syncChunkLoadTimer.startTiming(); // Spigot
|
||||
+ boolean added = loadingChunks.add(LongHash.toLong(p_73158_1_, p_73158_2_));
|
||||
if (!added)
|
||||
{
|
||||
cpw.mods.fml.common.FMLLog.bigWarning("There is an attempt to load a chunk (%d,%d) in dimension %d that is already being loaded. This will cause weird chunk breakages.", p_73158_1_, p_73158_2_, worldObj.provider.dimensionId);
|
||||
}
|
||||
- chunk = ForgeChunkManager.fetchDormantChunk(k, this.worldObj);
|
||||
+ chunk = ForgeChunkManager.fetchDormantChunk(LongHash.toLong(p_73158_1_, p_73158_2_), this.worldObj);
|
||||
if (chunk == null)
|
||||
{
|
||||
chunk = this.safeLoadChunk(p_73158_1_, p_73158_2_);
|
||||
@@ -176,18 +215,39 @@
|
||||
CrashReport crashreport = CrashReport.makeCrashReport(throwable, "Exception generating new chunk");
|
||||
CrashReportCategory crashreportcategory = crashreport.makeCategory("Chunk to be generated");
|
||||
crashreportcategory.addCrashSection("Location", String.format("%d,%d", new Object[] {Integer.valueOf(p_73158_1_), Integer.valueOf(p_73158_2_)}));
|
||||
- crashreportcategory.addCrashSection("Position hash", Long.valueOf(k));
|
||||
+ crashreportcategory.addCrashSection("Position hash", LongHash.toLong(p_73158_1_, p_73158_2_));
|
||||
crashreportcategory.addCrashSection("Generator", this.currentChunkProvider.makeString());
|
||||
throw new ReportedException(crashreport);
|
||||
}
|
||||
}
|
||||
+
|
||||
+ newChunk = true; // CraftBukkit
|
||||
}
|
||||
|
||||
- this.loadedChunkHashMap.add(k, chunk);
|
||||
- this.loadedChunks.add(chunk);
|
||||
- loadingChunks.remove(k);
|
||||
- chunk.onChunkLoad();
|
||||
+ this.loadedChunkHashMap.put(LongHash.toLong(p_73158_1_, p_73158_2_), chunk); // CraftBukkit
|
||||
+ this.loadedChunks.add(chunk); // Cauldron - vanilla compatibility
|
||||
+ loadingChunks.remove(LongHash.toLong(p_73158_1_, p_73158_2_)); // Cauldron - LongHash
|
||||
+
|
||||
+ if (chunk != null)
|
||||
+ {
|
||||
+ chunk.onChunkLoad();
|
||||
+ }
|
||||
+ // CraftBukkit start
|
||||
+ Server server = this.worldObj.getServer();
|
||||
+
|
||||
+ if (server != null)
|
||||
+ {
|
||||
+ /*
|
||||
+ * If it's a new world, the first few chunks are generated inside
|
||||
+ * the World constructor. We can't reliably alter that, so we have
|
||||
+ * no way of creating a CraftWorld/CraftServer at that point.
|
||||
+ */
|
||||
+ server.getPluginManager().callEvent(new org.bukkit.event.world.ChunkLoadEvent(chunk.bukkitChunk, newChunk));
|
||||
+ }
|
||||
+
|
||||
+ // CraftBukkit end
|
||||
chunk.populateChunk(this, this, p_73158_1_, p_73158_2_);
|
||||
+ worldObj.timings.syncChunkLoadTimer.stopTiming(); // Spigot
|
||||
}
|
||||
|
||||
return chunk;
|
||||
@@ -195,11 +255,29 @@
|
||||
|
||||
public Chunk provideChunk(int p_73154_1_, int p_73154_2_)
|
||||
{
|
||||
- Chunk chunk = (Chunk)this.loadedChunkHashMap.getValueByKey(ChunkCoordIntPair.chunkXZ2Int(p_73154_1_, p_73154_2_));
|
||||
- return chunk == null ? (!this.worldObj.findingSpawnPoint && !this.loadChunkOnProvideRequest ? this.defaultEmptyChunk : this.loadChunk(p_73154_1_, p_73154_2_)) : chunk;
|
||||
+ // CraftBukkit start
|
||||
+ Chunk chunk = (Chunk) this.loadedChunkHashMap.get(LongHash.toLong(p_73154_1_, p_73154_2_));
|
||||
+ chunk = chunk == null ? (shouldLoadChunk() ? this.loadChunk(p_73154_1_, p_73154_2_) : this.defaultEmptyChunk) : chunk; // Cauldron handle forge server tick events and load the chunk within 5 seconds of the world being loaded (for chunk loaders)
|
||||
+
|
||||
+ if (chunk == this.defaultEmptyChunk)
|
||||
+ {
|
||||
+ return chunk;
|
||||
+ }
|
||||
+
|
||||
+ if (p_73154_1_ != chunk.xPosition || p_73154_2_ != chunk.zPosition)
|
||||
+ {
|
||||
+ logger.error("Chunk (" + chunk.xPosition + ", " + chunk.zPosition + ") stored at (" + p_73154_1_ + ", " + p_73154_2_ + ") in world '" + worldObj.getWorld().getName() + "'");
|
||||
+ logger.error(chunk.getClass().getName());
|
||||
+ Throwable ex = new Throwable();
|
||||
+ ex.fillInStackTrace();
|
||||
+ ex.printStackTrace();
|
||||
+ }
|
||||
+ chunk.lastAccessedTick = MinecraftServer.getServer().getTickCounter(); // Cauldron
|
||||
+ return chunk;
|
||||
+ // CraftBukkit end
|
||||
}
|
||||
|
||||
- private Chunk safeLoadChunk(int p_73239_1_, int p_73239_2_)
|
||||
+ public Chunk safeLoadChunk(int p_73239_1_, int p_73239_2_) // CraftBukkit - private -> public
|
||||
{
|
||||
if (this.currentChunkLoader == null)
|
||||
{
|
||||
@@ -209,6 +287,7 @@
|
||||
{
|
||||
try
|
||||
{
|
||||
+ CauldronHooks.logChunkLoad(this, "Safe Load", p_73239_1_, p_73239_2_, false); // Cauldron
|
||||
Chunk chunk = this.currentChunkLoader.loadChunk(this.worldObj, p_73239_1_, p_73239_2_);
|
||||
|
||||
if (chunk != null)
|
||||
@@ -217,8 +296,11 @@
|
||||
|
||||
if (this.currentChunkProvider != null)
|
||||
{
|
||||
+ worldObj.timings.syncChunkLoadStructuresTimer.startTiming(); // Spigot
|
||||
this.currentChunkProvider.recreateStructures(p_73239_1_, p_73239_2_);
|
||||
+ worldObj.timings.syncChunkLoadStructuresTimer.stopTiming(); // Spigot
|
||||
}
|
||||
+ chunk.lastAccessedTick = MinecraftServer.getServer().getTickCounter(); // Cauldron
|
||||
}
|
||||
|
||||
return chunk;
|
||||
@@ -231,7 +313,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
- private void safeSaveExtraChunkData(Chunk p_73243_1_)
|
||||
+ public void safeSaveExtraChunkData(Chunk p_73243_1_) // CraftBukkit - private -> public
|
||||
{
|
||||
if (this.currentChunkLoader != null)
|
||||
{
|
||||
@@ -246,7 +328,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
- private void safeSaveChunk(Chunk p_73242_1_)
|
||||
+ public void safeSaveChunk(Chunk p_73242_1_) // CraftBukkit - private -> public
|
||||
{
|
||||
if (this.currentChunkLoader != null)
|
||||
{
|
||||
@@ -254,15 +336,18 @@
|
||||
{
|
||||
p_73242_1_.lastSaveTime = this.worldObj.getTotalWorldTime();
|
||||
this.currentChunkLoader.saveChunk(this.worldObj, p_73242_1_);
|
||||
+ // CraftBukkit start - IOException to Exception
|
||||
}
|
||||
- catch (IOException ioexception)
|
||||
+ catch (Exception ioexception)
|
||||
{
|
||||
logger.error("Couldn\'t save chunk", ioexception);
|
||||
}
|
||||
+ /* Remove extra exception
|
||||
catch (MinecraftException minecraftexception)
|
||||
{
|
||||
logger.error("Couldn\'t save chunk; already in use by another instance of Minecraft?", minecraftexception);
|
||||
}
|
||||
+ // CraftBukkit end */
|
||||
}
|
||||
}
|
||||
|
||||
@@ -277,6 +362,35 @@
|
||||
if (this.currentChunkProvider != null)
|
||||
{
|
||||
this.currentChunkProvider.populate(p_73153_1_, p_73153_2_, p_73153_3_);
|
||||
+ // CraftBukkit start
|
||||
+ BlockSand.fallInstantly = true;
|
||||
+ Random random = new Random();
|
||||
+ random.setSeed(worldObj.getSeed());
|
||||
+ long xRand = random.nextLong() / 2L * 2L + 1L;
|
||||
+ long zRand = random.nextLong() / 2L * 2L + 1L;
|
||||
+ random.setSeed((long) p_73153_2_ * xRand + (long) p_73153_3_ * zRand ^ worldObj.getSeed());
|
||||
+ org.bukkit.World world = this.worldObj.getWorld();
|
||||
+
|
||||
+ if (world != null)
|
||||
+ {
|
||||
+ this.worldObj.populating = true;
|
||||
+
|
||||
+ try
|
||||
+ {
|
||||
+ for (org.bukkit.generator.BlockPopulator populator : world.getPopulators())
|
||||
+ {
|
||||
+ populator.populate(world, random, chunk.bukkitChunk);
|
||||
+ }
|
||||
+ }
|
||||
+ finally
|
||||
+ {
|
||||
+ this.worldObj.populating = false;
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ BlockSand.fallInstantly = false;
|
||||
+ this.worldObj.getServer().getPluginManager().callEvent(new org.bukkit.event.world.ChunkPopulateEvent(chunk.bukkitChunk));
|
||||
+ // CraftBukkit end
|
||||
GameRegistry.generateWorld(p_73153_2_, p_73153_3_, worldObj, currentChunkProvider, p_73153_1_);
|
||||
chunk.setChunkModified();
|
||||
}
|
||||
@@ -286,11 +400,13 @@
|
||||
public boolean saveChunks(boolean p_73151_1_, IProgressUpdate p_73151_2_)
|
||||
{
|
||||
int i = 0;
|
||||
- ArrayList arraylist = Lists.newArrayList(this.loadedChunks);
|
||||
+ // Cauldron start - use thread-safe method for iterating loaded chunks
|
||||
+ Object[] chunks = this.loadedChunks.toArray();
|
||||
|
||||
- for (int j = 0; j < arraylist.size(); ++j)
|
||||
+ for (int j = 0; j < chunks.length; ++j)
|
||||
{
|
||||
- Chunk chunk = (Chunk)arraylist.get(j);
|
||||
+ Chunk chunk = (Chunk)chunks[j];
|
||||
+ //Cauldron end
|
||||
|
||||
if (p_73151_1_)
|
||||
{
|
||||
@@ -325,36 +441,60 @@
|
||||
{
|
||||
if (!this.worldObj.levelSaving)
|
||||
{
|
||||
- for (ChunkCoordIntPair forced : this.worldObj.getPersistentChunks().keySet())
|
||||
+ // Cauldron start - remove any chunk that has a ticket associated with it
|
||||
+ if (!this.chunksToUnload.isEmpty())
|
||||
{
|
||||
- this.chunksToUnload.remove(ChunkCoordIntPair.chunkXZ2Int(forced.chunkXPos, forced.chunkZPos));
|
||||
+ for (ChunkCoordIntPair forcedChunk : this.worldObj.getPersistentChunks().keys())
|
||||
+ {
|
||||
+ this.chunksToUnload.remove(forcedChunk.chunkXPos, forcedChunk.chunkZPos);
|
||||
+ }
|
||||
}
|
||||
+ // Cauldron end
|
||||
+ // CraftBukkit start
|
||||
+ Server server = this.worldObj.getServer();
|
||||
|
||||
- for (int i = 0; i < 100; ++i)
|
||||
+ for (int i = 0; i < 100 && !this.chunksToUnload.isEmpty(); i++)
|
||||
{
|
||||
- if (!this.chunksToUnload.isEmpty())
|
||||
+ long chunkcoordinates = this.chunksToUnload.popFirst();
|
||||
+ Chunk chunk = this.loadedChunkHashMap.get(chunkcoordinates);
|
||||
+
|
||||
+ if (chunk == null)
|
||||
{
|
||||
- Long olong = (Long)this.chunksToUnload.iterator().next();
|
||||
- Chunk chunk = (Chunk)this.loadedChunkHashMap.getValueByKey(olong.longValue());
|
||||
+ continue;
|
||||
+ }
|
||||
|
||||
- if (chunk != null)
|
||||
- {
|
||||
- chunk.onChunkUnload();
|
||||
- this.safeSaveChunk(chunk);
|
||||
- this.safeSaveExtraChunkData(chunk);
|
||||
- this.loadedChunks.remove(chunk);
|
||||
- ForgeChunkManager.putDormantChunk(ChunkCoordIntPair.chunkXZ2Int(chunk.xPosition, chunk.zPosition), chunk);
|
||||
- if(loadedChunks.size() == 0 && ForgeChunkManager.getPersistentChunksFor(this.worldObj).size() == 0 && !DimensionManager.shouldLoadSpawn(this.worldObj.provider.dimensionId)){
|
||||
- DimensionManager.unloadWorld(this.worldObj.provider.dimensionId);
|
||||
- return currentChunkProvider.unloadQueuedChunks();
|
||||
- }
|
||||
- }
|
||||
+ // Cauldron static - check if the chunk was accessed recently and keep it loaded if there are players in world
|
||||
+ /*if (!shouldUnloadChunk(chunk) && this.worldObj.playerEntities.size() > 0)
|
||||
+ {
|
||||
+ CauldronHooks.logChunkUnload(this, chunk.xPosition, chunk.zPosition, "** Chunk kept from unloading due to recent activity");
|
||||
+ continue;
|
||||
+ }*/
|
||||
+ // Cauldron end
|
||||
|
||||
- this.chunksToUnload.remove(olong);
|
||||
- this.loadedChunkHashMap.remove(olong.longValue());
|
||||
+
|
||||
+ ChunkUnloadEvent event = new ChunkUnloadEvent(chunk.bukkitChunk);
|
||||
+ server.getPluginManager().callEvent(event);
|
||||
+
|
||||
+ if (!event.isCancelled())
|
||||
+ {
|
||||
+ CauldronHooks.logChunkUnload(this, chunk.xPosition, chunk.zPosition, "Unloading Chunk at");
|
||||
+
|
||||
+ chunk.onChunkUnload();
|
||||
+ this.safeSaveChunk(chunk);
|
||||
+ this.safeSaveExtraChunkData(chunk);
|
||||
+ // this.unloadQueue.remove(olong);
|
||||
+ this.loadedChunkHashMap.remove(chunkcoordinates); // CraftBukkit
|
||||
+ this.loadedChunks.remove(chunk); // Cauldron - vanilla compatibility
|
||||
+ ForgeChunkManager.putDormantChunk(chunkcoordinates, chunk);
|
||||
+ if(this.loadedChunkHashMap.size() == 0 && ForgeChunkManager.getPersistentChunksFor(this.worldObj).size() == 0 && !DimensionManager.shouldLoadSpawn(this.worldObj.provider.dimensionId)){
|
||||
+ DimensionManager.unloadWorld(this.worldObj.provider.dimensionId);
|
||||
+ return currentChunkProvider.unloadQueuedChunks();
|
||||
+ }
|
||||
}
|
||||
}
|
||||
|
||||
+ // CraftBukkit end
|
||||
+
|
||||
if (this.currentChunkLoader != null)
|
||||
{
|
||||
this.currentChunkLoader.chunkTick();
|
||||
@@ -371,7 +511,8 @@
|
||||
|
||||
public String makeString()
|
||||
{
|
||||
- return "ServerChunkCache: " + this.loadedChunkHashMap.getNumHashElements() + " Drop: " + this.chunksToUnload.size();
|
||||
+ // CraftBukkit - this.chunks.count() -> .values().size()
|
||||
+ return "ServerChunkCache: " + this.loadedChunkHashMap.values().size() + " Drop: " + this.chunksToUnload.size();
|
||||
}
|
||||
|
||||
public List getPossibleCreatures(EnumCreatureType p_73155_1_, int p_73155_2_, int p_73155_3_, int p_73155_4_)
|
||||
@@ -386,8 +527,32 @@
|
||||
|
||||
public int getLoadedChunkCount()
|
||||
{
|
||||
- return this.loadedChunkHashMap.getNumHashElements();
|
||||
+ // CraftBukkit - this.chunks.count() -> .values().size()
|
||||
+ return this.loadedChunkHashMap.values().size();
|
||||
}
|
||||
|
||||
public void recreateStructures(int p_82695_1_, int p_82695_2_) {}
|
||||
+
|
||||
+ // Cauldron start
|
||||
+ private boolean shouldLoadChunk()
|
||||
+ {
|
||||
+ return this.worldObj.findingSpawnPoint ||
|
||||
+ this.loadChunkOnProvideRequest ||
|
||||
+ (MinecraftServer.callingForgeTick && MinecraftServer.getServer().cauldronConfig.loadChunkOnForgeTick.getValue()) ||
|
||||
+ (MinecraftServer.currentTick - initialTick <= 100);
|
||||
+ }
|
||||
+
|
||||
+ public long lastAccessed(int x, int z)
|
||||
+ {
|
||||
+ long chunkHash = LongHash.toLong(x, z);
|
||||
+ if (!loadedChunkHashMap.containsKey(chunkHash)) return 0;
|
||||
+ return loadedChunkHashMap.get(chunkHash).lastAccessedTick;
|
||||
+ }
|
||||
+
|
||||
+ /*private boolean shouldUnloadChunk(Chunk chunk)
|
||||
+ {
|
||||
+ if (chunk == null) return false;
|
||||
+ return MinecraftServer.getServer().getTickCounter() - chunk.lastAccessedTick > CauldronConfig.chunkGCGracePeriod.getValue();
|
||||
+ }*/
|
||||
+ // Cauldron end
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
--- ../src-base/minecraft/net/minecraft/world/gen/feature/WorldGenShrub.java
|
||||
+++ ../src-work/minecraft/net/minecraft/world/gen/feature/WorldGenShrub.java
|
||||
@@ -62,7 +62,13 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
+ // CraftBukkit start - Return false if gen was unsuccessful
|
||||
+ }
|
||||
+ else
|
||||
+ {
|
||||
+ return false;
|
||||
}
|
||||
+ // CraftBukkit end
|
||||
|
||||
return true;
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
--- ../src-base/minecraft/net/minecraft/world/gen/structure/MapGenStronghold.java
|
||||
+++ ../src-work/minecraft/net/minecraft/world/gen/structure/MapGenStronghold.java
|
||||
@@ -92,7 +92,17 @@
|
||||
double d1 = (1.25D * (double)l + random.nextDouble()) * this.field_82671_h * (double)l;
|
||||
int j1 = (int)Math.round(Math.cos(d0) * d1);
|
||||
int k1 = (int)Math.round(Math.sin(d0) * d1);
|
||||
- ChunkPosition chunkposition = this.worldObj.getWorldChunkManager().findBiomePosition((j1 << 4) + 8, (k1 << 4) + 8, 112, this.field_151546_e, random);
|
||||
+ // Cauldron start - catch invalid positions
|
||||
+ ChunkPosition chunkposition = null;
|
||||
+ try
|
||||
+ {
|
||||
+ chunkposition = this.worldObj.getWorldChunkManager().findBiomePosition((j1 << 4) + 8, (k1 << 4) + 8, 112, this.field_151546_e, random);
|
||||
+ }
|
||||
+ catch (ArrayIndexOutOfBoundsException e)
|
||||
+ {
|
||||
+ // ignore
|
||||
+ }
|
||||
+ // Cauldron end
|
||||
|
||||
if (chunkposition != null)
|
||||
{
|
@ -0,0 +1,21 @@
|
||||
--- ../src-base/minecraft/net/minecraft/world/gen/structure/MapGenStructure.java
|
||||
+++ ../src-work/minecraft/net/minecraft/world/gen/structure/MapGenStructure.java
|
||||
@@ -239,8 +239,17 @@
|
||||
{
|
||||
if (this.field_143029_e == null)
|
||||
{
|
||||
- this.field_143029_e = (MapGenStructureData)p_143027_1_.perWorldStorage.loadData(MapGenStructureData.class, this.func_143025_a());
|
||||
+ // Spigot Start
|
||||
+ if (p_143027_1_.getSpigotConfig().saveStructureInfo && !this.func_143025_a().equals("Mineshaft")) // Cauldron
|
||||
+ {
|
||||
+ this.field_143029_e = (MapGenStructureData) p_143027_1_.loadItemData(MapGenStructureData.class, this.func_143025_a());
|
||||
+ }
|
||||
+ else
|
||||
+ {
|
||||
+ this.field_143029_e = new MapGenStructureData(this.func_143025_a());
|
||||
+ }
|
||||
|
||||
+ // Spigot End
|
||||
if (this.field_143029_e == null)
|
||||
{
|
||||
this.field_143029_e = new MapGenStructureData(this.func_143025_a());
|
@ -0,0 +1,12 @@
|
||||
--- ../src-base/minecraft/net/minecraft/world/gen/structure/StructureStart.java
|
||||
+++ ../src-work/minecraft/net/minecraft/world/gen/structure/StructureStart.java
|
||||
@@ -41,7 +41,8 @@
|
||||
{
|
||||
StructureComponent structurecomponent = (StructureComponent)iterator.next();
|
||||
|
||||
- if (structurecomponent.getBoundingBox().intersectsWith(p_75068_3_) && !structurecomponent.addComponentParts(p_75068_1_, p_75068_2_, p_75068_3_))
|
||||
+ // Cauldron - validate structurecomponent
|
||||
+ if ((structurecomponent == null || structurecomponent.getBoundingBox() == null) || (structurecomponent.getBoundingBox().intersectsWith(p_75068_3_) && !structurecomponent.addComponentParts(p_75068_1_, p_75068_2_, p_75068_3_)))
|
||||
{
|
||||
iterator.remove();
|
||||
}
|
Reference in New Issue
Block a user