2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/PlayerChunkMap.java
|
|
|
|
+++ b/net/minecraft/server/PlayerChunkMap.java
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -42,6 +42,7 @@
|
2019-05-14 02:00:00 +02:00
|
|
|
import org.apache.commons.lang3.mutable.MutableBoolean;
|
2019-04-23 04:00:00 +02:00
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import org.apache.logging.log4j.Logger;
|
2019-05-16 01:11:20 +02:00
|
|
|
+import org.bukkit.entity.Player; // CraftBukkit
|
2019-04-23 04:00:00 +02:00
|
|
|
|
|
|
|
public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
|
|
|
|
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -72,6 +73,31 @@
|
2019-07-13 20:19:44 +02:00
|
|
|
private final Queue<Runnable> A;
|
|
|
|
private int viewDistance;
|
|
|
|
|
|
|
|
+ // CraftBukkit start - recursion-safe executor for Chunk loadCallback() and unloadCallback()
|
|
|
|
+ public final CallbackExecutor callbackExecutor = new CallbackExecutor();
|
|
|
|
+ public static final class CallbackExecutor implements java.util.concurrent.Executor, Runnable {
|
|
|
|
+
|
|
|
|
+ private Runnable queued;
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void execute(Runnable runnable) {
|
|
|
|
+ if (queued != null) {
|
|
|
|
+ throw new IllegalStateException("Already queued");
|
|
|
|
+ }
|
|
|
|
+ queued = runnable;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void run() {
|
|
|
|
+ Runnable task = queued;
|
|
|
|
+ queued = null;
|
|
|
|
+ if (task != null) {
|
|
|
|
+ task.run();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+ // CraftBukkit end
|
|
|
|
+
|
|
|
|
public PlayerChunkMap(WorldServer worldserver, File file, DataFixer datafixer, DefinedStructureManager definedstructuremanager, Executor executor, IAsyncTaskHandler<Runnable> iasynctaskhandler, ILightAccess ilightaccess, ChunkGenerator<?> chunkgenerator, WorldLoadListener worldloadlistener, Supplier<WorldPersistentData> supplier, int i) {
|
|
|
|
super(new File(worldserver.getWorldProvider().getDimensionManager().a(file), "region"), datafixer);
|
|
|
|
this.visibleChunks = this.updatingChunks.clone();
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -191,9 +217,12 @@
|
2019-04-23 04:00:00 +02:00
|
|
|
|
|
|
|
return completablefuture1.thenApply((list1) -> {
|
|
|
|
List<IChunkAccess> list2 = Lists.newArrayList();
|
|
|
|
- final int l1 = 0;
|
|
|
|
+ // CraftBukkit start - decompile error
|
|
|
|
+ int cnt = 0;
|
|
|
|
|
|
|
|
- for (Iterator iterator = list1.iterator(); iterator.hasNext(); ++l1) {
|
|
|
|
+ for (Iterator iterator = list1.iterator(); iterator.hasNext(); ++cnt) {
|
|
|
|
+ final int l1 = cnt;
|
2016-12-06 12:05:58 +01:00
|
|
|
+ // CraftBukkit end
|
2019-04-23 04:00:00 +02:00
|
|
|
final Either<IChunkAccess, PlayerChunk.Failure> either = (Either) iterator.next();
|
|
|
|
Optional<IChunkAccess> optional = either.left();
|
|
|
|
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -291,7 +320,7 @@
|
2019-05-14 02:00:00 +02:00
|
|
|
PlayerChunkMap.LOGGER.info("ThreadedAnvilChunkStorage ({}): All chunks are saved", this.x.getName());
|
|
|
|
} else {
|
|
|
|
this.visibleChunks.values().stream().filter(PlayerChunk::hasBeenLoaded).forEach((playerchunk) -> {
|
|
|
|
- IChunkAccess ichunkaccess = (IChunkAccess) playerchunk.getChunkSave().getNow((Object) null);
|
|
|
|
+ IChunkAccess ichunkaccess = (IChunkAccess) playerchunk.getChunkSave().getNow(null); // CraftBukkit - decompile error
|
2016-12-06 12:05:58 +01:00
|
|
|
|
2019-05-14 02:00:00 +02:00
|
|
|
if (ichunkaccess instanceof ProtoChunkExtension || ichunkaccess instanceof Chunk) {
|
|
|
|
this.saveChunk(ichunkaccess);
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -302,7 +331,6 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2019-04-26 08:56:49 +02:00
|
|
|
}
|
|
|
|
-
|
|
|
|
protected void unloadChunks(BooleanSupplier booleansupplier) {
|
|
|
|
GameProfilerFiller gameprofilerfiller = this.world.getMethodProfiler();
|
2019-04-23 04:00:00 +02:00
|
|
|
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -341,7 +369,7 @@
|
2019-05-27 22:30:00 +02:00
|
|
|
|
|
|
|
private void a(long i, PlayerChunk playerchunk) {
|
|
|
|
CompletableFuture<IChunkAccess> completablefuture = playerchunk.getChunkSave();
|
|
|
|
- Consumer consumer = (ichunkaccess) -> {
|
|
|
|
+ Consumer<IChunkAccess> consumer = (ichunkaccess) -> { // CraftBukkit - decompile error
|
|
|
|
CompletableFuture<IChunkAccess> completablefuture1 = playerchunk.getChunkSave();
|
|
|
|
|
|
|
|
if (completablefuture1 != completablefuture) {
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -490,7 +518,7 @@
|
2019-05-27 22:30:00 +02:00
|
|
|
return CompletableFuture.completedFuture(Either.right(playerchunk_failure));
|
2019-04-23 04:00:00 +02:00
|
|
|
});
|
2019-05-27 22:30:00 +02:00
|
|
|
}, (runnable) -> {
|
|
|
|
- this.mailboxWorldGen.a((Object) ChunkTaskQueueSorter.a(playerchunk, runnable));
|
|
|
|
+ this.mailboxWorldGen.a(ChunkTaskQueueSorter.a(playerchunk, runnable)); // CraftBukkit - decompile error
|
|
|
|
});
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
2019-05-27 22:30:00 +02:00
|
|
|
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -571,7 +599,7 @@
|
2019-06-21 12:00:00 +02:00
|
|
|
long i = playerchunk.i().pair();
|
2016-05-10 13:47:39 +02:00
|
|
|
|
2019-04-23 04:00:00 +02:00
|
|
|
playerchunk.getClass();
|
2019-05-14 02:00:00 +02:00
|
|
|
- mailbox.a((Object) ChunkTaskQueueSorter.a(runnable, i, playerchunk::getTicketLevel));
|
|
|
|
+ mailbox.a(ChunkTaskQueueSorter.a(runnable, i, playerchunk::getTicketLevel)); // CraftBukkit - decompile error
|
2019-04-23 04:00:00 +02:00
|
|
|
});
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
2019-04-23 04:00:00 +02:00
|
|
|
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -588,7 +616,7 @@
|
2019-04-23 04:00:00 +02:00
|
|
|
return Either.left(chunk);
|
|
|
|
});
|
|
|
|
}, (runnable) -> {
|
|
|
|
- this.mailboxMain.a((Object) ChunkTaskQueueSorter.a(playerchunk, runnable));
|
|
|
|
+ this.mailboxMain.a(ChunkTaskQueueSorter.a(playerchunk, runnable)); // CraftBukkit - decompile error
|
|
|
|
});
|
|
|
|
|
|
|
|
completablefuture1.thenAcceptAsync((either) -> {
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -602,7 +630,7 @@
|
2019-04-23 04:00:00 +02:00
|
|
|
return Either.left(chunk);
|
|
|
|
});
|
|
|
|
}, (runnable) -> {
|
|
|
|
- this.mailboxMain.a((Object) ChunkTaskQueueSorter.a(playerchunk, runnable));
|
|
|
|
+ this.mailboxMain.a(ChunkTaskQueueSorter.a(playerchunk, runnable)); // CraftBukkit - decompile error
|
|
|
|
});
|
|
|
|
return completablefuture1;
|
|
|
|
}
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -616,7 +644,7 @@
|
2019-05-14 02:00:00 +02:00
|
|
|
return chunk;
|
|
|
|
});
|
|
|
|
}, (runnable) -> {
|
|
|
|
- this.mailboxMain.a((Object) ChunkTaskQueueSorter.a(playerchunk, runnable));
|
|
|
|
+ this.mailboxMain.a(ChunkTaskQueueSorter.a(playerchunk, runnable)); // CraftBukkit - decompile error
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -740,7 +768,8 @@
|
|
|
|
return ichunkaccess instanceof Chunk ? Optional.of((Chunk) ichunkaccess) : Optional.empty();
|
|
|
|
});
|
|
|
|
|
|
|
|
- csvwriter.a(chunkcoordintpair.x, chunkcoordintpair.z, playerchunk.getTicketLevel(), optional.isPresent(), optional.map(IChunkAccess::getChunkStatus).orElse((Object) null), optional1.map(Chunk::getState).orElse((Object) null), a(playerchunk.c()), a(playerchunk.a()), a(playerchunk.b()), this.chunkDistanceManager.c(entry.getLongKey()), !this.isOutsideOfRange(chunkcoordintpair), optional1.map((chunk) -> {
|
|
|
|
+ // Craftbukkit - decompile error
|
|
|
|
+ csvwriter.a(chunkcoordintpair.x, chunkcoordintpair.z, playerchunk.getTicketLevel(), optional.isPresent(), optional.map(IChunkAccess::getChunkStatus).orElse(null), optional1.map(Chunk::getState).orElse(null), a(playerchunk.c()), a(playerchunk.a()), a(playerchunk.b()), this.chunkDistanceManager.c(entry.getLongKey()), !this.isOutsideOfRange(chunkcoordintpair), optional1.map((chunk) -> {
|
|
|
|
return Stream.of(chunk.getEntitySlices()).mapToInt(EntitySlice::size).sum();
|
|
|
|
}).orElse(0), optional1.map((chunk) -> {
|
|
|
|
return chunk.getTileEntities().size();
|
|
|
|
@@ -751,7 +780,7 @@
|
|
|
|
|
|
|
|
private static String a(CompletableFuture<Either<Chunk, PlayerChunk.Failure>> completablefuture) {
|
|
|
|
try {
|
|
|
|
- Either<Chunk, PlayerChunk.Failure> either = (Either) completablefuture.getNow((Object) null);
|
|
|
|
+ Either<Chunk, PlayerChunk.Failure> either = (Either) completablefuture.getNow(null); // Craftbukkit - decompile error
|
|
|
|
|
|
|
|
return either != null ? (String) either.map((chunk) -> {
|
|
|
|
return "done";
|
|
|
|
@@ -769,7 +798,7 @@
|
2019-05-14 02:00:00 +02:00
|
|
|
private NBTTagCompound readChunkData(ChunkCoordIntPair chunkcoordintpair) throws IOException {
|
2019-04-23 04:00:00 +02:00
|
|
|
NBTTagCompound nbttagcompound = this.read(chunkcoordintpair);
|
|
|
|
|
|
|
|
- return nbttagcompound == null ? null : this.getChunkData(this.world.getWorldProvider().getDimensionManager(), this.m, nbttagcompound);
|
|
|
|
+ return nbttagcompound == null ? null : this.getChunkData(this.world.getWorldProvider().getDimensionManager(), this.m, nbttagcompound, chunkcoordintpair, world); // CraftBukkit
|
|
|
|
}
|
|
|
|
|
2019-06-02 11:51:26 +02:00
|
|
|
boolean isOutsideOfRange(ChunkCoordIntPair chunkcoordintpair) {
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -1101,7 +1130,7 @@
|
2019-04-23 04:00:00 +02:00
|
|
|
public final Set<EntityPlayer> trackedPlayers = Sets.newHashSet();
|
|
|
|
|
|
|
|
public EntityTracker(Entity entity, int i, int j, boolean flag) {
|
|
|
|
- this.trackerEntry = new EntityTrackerEntry(PlayerChunkMap.this.world, entity, j, flag, this::broadcast);
|
|
|
|
+ this.trackerEntry = new EntityTrackerEntry(PlayerChunkMap.this.world, entity, j, flag, this::broadcast, trackedPlayers); // CraftBukkit
|
|
|
|
this.tracker = entity;
|
|
|
|
this.trackingDistance = i;
|
|
|
|
this.e = SectionPosition.a(entity);
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -1154,7 +1183,7 @@
|
2019-07-10 11:56:39 +02:00
|
|
|
|
|
|
|
public void updatePlayer(EntityPlayer entityplayer) {
|
|
|
|
if (entityplayer != this.tracker) {
|
|
|
|
- Vec3D vec3d = (new Vec3D(entityplayer.locX, entityplayer.locY, entityplayer.locZ)).d(this.trackerEntry.b());
|
2019-07-20 01:00:00 +02:00
|
|
|
+ Vec3D vec3d = (new Vec3D(entityplayer.locX, entityplayer.locY, entityplayer.locZ)).d(this.tracker.getPositionVector()); // MC-155077, SPIGOT-5113
|
2019-07-10 11:56:39 +02:00
|
|
|
int i = Math.min(this.trackingDistance, (PlayerChunkMap.this.viewDistance - 1) * 16);
|
|
|
|
boolean flag = vec3d.x >= (double) (-i) && vec3d.x <= (double) i && vec3d.z >= (double) (-i) && vec3d.z <= (double) i && this.tracker.a(entityplayer);
|
|
|
|
|
2019-07-20 01:00:00 +02:00
|
|
|
@@ -1170,6 +1199,17 @@
|
2019-04-23 04:00:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // CraftBukkit start - respect vanish API
|
|
|
|
+ if (this.tracker instanceof EntityPlayer) {
|
|
|
|
+ Player player = ((EntityPlayer) this.tracker).getBukkitEntity();
|
|
|
|
+ if (!entityplayer.getBukkitEntity().canSee(player)) {
|
|
|
|
+ flag1 = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
2014-11-25 22:32:16 +01:00
|
|
|
+
|
2019-04-23 04:00:00 +02:00
|
|
|
+ entityplayer.removeQueue.remove(Integer.valueOf(this.tracker.getId()));
|
|
|
|
+ // CraftBukkit end
|
2014-11-25 22:32:16 +01:00
|
|
|
+
|
2019-04-23 04:00:00 +02:00
|
|
|
if (flag1 && this.trackedPlayers.add(entityplayer)) {
|
|
|
|
this.trackerEntry.b(entityplayer);
|
|
|
|
}
|