3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 21:10:17 +01:00

Prevent Blocks from getting lost when a chunk reloads

Dieser Commit ist enthalten in:
Erik Broes 2011-02-20 17:09:02 +01:00
Ursprung ca4076077e
Commit 6e3ee31336
4 geänderte Dateien mit 21 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -44,7 +44,10 @@ public class Chunk {
}
// CraftBukkit start
bukkitChunk = new org.bukkit.craftbukkit.CraftChunk( this );
bukkitChunk = ((WorldServer) world).getWorld().popPreservedChunk( i, j );
if (bukkitChunk == null) {
bukkitChunk = new org.bukkit.craftbukkit.CraftChunk( this );
}
}
public org.bukkit.Chunk bukkitChunk;

Datei anzeigen

@ -209,6 +209,8 @@ public class ChunkProviderServer implements IChunkProvider
ChunkUnloadEvent cue = new ChunkUnloadEvent(Type.CHUNK_UNLOADED, chunk.bukkitChunk);
server.getPluginManager().callEvent(cue);
if (!cue.isCancelled()) {
g.getWorld().preserveChunk( (CraftChunk) chunk.bukkitChunk );
chunk.e();
this.b(chunk);
this.a(chunk);

Datei anzeigen

@ -11,7 +11,7 @@ import org.bukkit.block.Block;
import org.bukkit.craftbukkit.block.CraftBlock;
public class CraftChunk implements Chunk {
private final net.minecraft.server.Chunk chunk;
private net.minecraft.server.Chunk chunk;
private final HashMap<Integer, Block> cache = new HashMap<Integer, Block>();
public CraftChunk(net.minecraft.server.Chunk chunk) {
@ -48,4 +48,8 @@ public class CraftChunk implements Chunk {
}
return block;
}
public void breakLink() {
this.chunk = null;
}
}

Datei anzeigen

@ -28,6 +28,7 @@ public class CraftWorld implements World {
private final Environment environment;
private final CraftServer server;
private final ChunkProviderServer provider;
private HashMap<Integer,CraftChunk> unloadedChunks = new HashMap<Integer, CraftChunk>();
private static final Random rand = new Random();
@ -45,6 +46,15 @@ public class CraftWorld implements World {
server.addWorld(this);
}
public void preserveChunk( CraftChunk chunk ) {
chunk.breakLink();
unloadedChunks.put( chunk.getX() << 16 + chunk.getZ(), chunk );
}
public CraftChunk popPreservedChunk( int x, int z ) {
return unloadedChunks.remove( x << 16 + z );
}
public Block getBlockAt(int x, int y, int z) {
return getChunkAt(x >> 4, z >> 4).getBlock(x & 0xF, y & 0x7F, z & 0xF);
}