mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-02-19 16:19:35 +01:00
Switch loadingChunks to AtomicInteger to be safe (in case of multi-threaded)
This commit is contained in:
parent
5c0e538231
commit
a71af4e76f
@ -75,12 +75,12 @@ public final class BukkitChunkCoordinator extends ChunkCoordinator {
|
|||||||
private final boolean unloadAfter;
|
private final boolean unloadAfter;
|
||||||
private final int totalSize;
|
private final int totalSize;
|
||||||
private final AtomicInteger expectedSize;
|
private final AtomicInteger expectedSize;
|
||||||
|
private final AtomicInteger loadingChunks = new AtomicInteger();
|
||||||
|
|
||||||
private int batchSize;
|
private int batchSize;
|
||||||
private PlotSquaredTask task;
|
private PlotSquaredTask task;
|
||||||
private boolean shouldCancel;
|
private boolean shouldCancel;
|
||||||
private boolean finished;
|
private boolean finished;
|
||||||
private int loadingChunks = 0;
|
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private BukkitChunkCoordinator(
|
private BukkitChunkCoordinator(
|
||||||
@ -152,7 +152,7 @@ public final class BukkitChunkCoordinator extends ChunkCoordinator {
|
|||||||
Chunk chunk = this.availableChunks.poll();
|
Chunk chunk = this.availableChunks.poll();
|
||||||
if (chunk == null) {
|
if (chunk == null) {
|
||||||
if (this.availableChunks.isEmpty()) {
|
if (this.availableChunks.isEmpty()) {
|
||||||
if (this.requestedChunks.isEmpty() && loadingChunks == 0) {
|
if (this.requestedChunks.isEmpty() && loadingChunks.get() == 0) {
|
||||||
finish();
|
finish();
|
||||||
} else {
|
} else {
|
||||||
requestBatch();
|
requestBatch();
|
||||||
@ -205,11 +205,11 @@ public final class BukkitChunkCoordinator extends ChunkCoordinator {
|
|||||||
BlockVector2 chunk;
|
BlockVector2 chunk;
|
||||||
for (int i = 0; i < this.batchSize && (chunk = this.requestedChunks.poll()) != null; i++) {
|
for (int i = 0; i < this.batchSize && (chunk = this.requestedChunks.poll()) != null; i++) {
|
||||||
// This required PaperLib to be bumped to version 1.0.4 to mark the request as urgent
|
// This required PaperLib to be bumped to version 1.0.4 to mark the request as urgent
|
||||||
loadingChunks++;
|
loadingChunks.incrementAndGet();
|
||||||
PaperLib
|
PaperLib
|
||||||
.getChunkAtAsync(this.bukkitWorld, chunk.getX(), chunk.getZ(), true, true)
|
.getChunkAtAsync(this.bukkitWorld, chunk.getX(), chunk.getZ(), true, true)
|
||||||
.whenComplete((chunkObject, throwable) -> {
|
.whenComplete((chunkObject, throwable) -> {
|
||||||
loadingChunks--;
|
loadingChunks.decrementAndGet();
|
||||||
if (throwable != null) {
|
if (throwable != null) {
|
||||||
throwable.printStackTrace();
|
throwable.printStackTrace();
|
||||||
// We want one less because this couldn't be processed
|
// We want one less because this couldn't be processed
|
||||||
|
Loading…
x
Reference in New Issue
Block a user