Java Code Examples for cn.nukkit.level.format.generic.BaseFullChunk#getProvider()
The following examples show how to use
cn.nukkit.level.format.generic.BaseFullChunk#getProvider() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Level.java From Jupiter with GNU General Public License v3.0 | 5 votes |
public void generateChunkCallback(int x, int z, BaseFullChunk chunk) { Timings.generationCallbackTimer.startTiming(); Long index = Level.chunkHash(x, z); if (this.chunkPopulationQueue.containsKey(index)) { FullChunk oldChunk = this.getChunk(x, z, false); for (int xx = -1; xx <= 1; ++xx) { for (int zz = -1; zz <= 1; ++zz) { this.chunkPopulationLock.remove(Level.chunkHash(x + xx, z + zz)); } } this.chunkPopulationQueue.remove(index); chunk.setProvider(this.provider); this.setChunk(x, z, chunk, false); chunk = this.getChunk(x, z, false); if (chunk != null && (oldChunk == null || !oldChunk.isPopulated()) && chunk.isPopulated() && chunk.getProvider() != null) { this.server.getPluginManager().callEvent(new ChunkPopulateEvent(chunk)); for (ChunkLoader loader : this.getChunkLoaders(x, z)) { loader.onChunkPopulated(chunk); } } } else if (this.chunkGenerationQueue.containsKey(index) || this.chunkPopulationLock.containsKey(index)) { this.chunkGenerationQueue.remove(index); this.chunkPopulationLock.remove(index); chunk.setProvider(this.provider); this.setChunk(x, z, chunk, false); } else { chunk.setProvider(this.provider); this.setChunk(x, z, chunk, false); } Timings.generationCallbackTimer.stopTiming(); }
Example 2
Source File: Level.java From Nukkit with GNU General Public License v3.0 | 5 votes |
public void generateChunkCallback(int x, int z, BaseFullChunk chunk, boolean isPopulated) { Timings.generationCallbackTimer.startTiming(); long index = Level.chunkHash(x, z); if (this.chunkPopulationQueue.containsKey(index)) { FullChunk oldChunk = this.getChunk(x, z, false); for (int xx = -1; xx <= 1; ++xx) { for (int zz = -1; zz <= 1; ++zz) { this.chunkPopulationLock.remove(Level.chunkHash(x + xx, z + zz)); } } this.chunkPopulationQueue.remove(index); chunk.setProvider(this.provider); this.setChunk(x, z, chunk, false); chunk = this.getChunk(x, z, false); if (chunk != null && (oldChunk == null || !isPopulated) && chunk.isPopulated() && chunk.getProvider() != null) { this.server.getPluginManager().callEvent(new ChunkPopulateEvent(chunk)); for (ChunkLoader loader : this.getChunkLoaders(x, z)) { loader.onChunkPopulated(chunk); } } } else if (this.chunkGenerationQueue.containsKey(index) || this.chunkPopulationLock.containsKey(index)) { this.chunkGenerationQueue.remove(index); this.chunkPopulationLock.remove(index); chunk.setProvider(this.provider); this.setChunk(x, z, chunk, false); } else { chunk.setProvider(this.provider); this.setChunk(x, z, chunk, false); } Timings.generationCallbackTimer.stopTiming(); }
Example 3
Source File: Level.java From Nukkit with GNU General Public License v3.0 | 5 votes |
private synchronized BaseFullChunk forceLoadChunk(long index, int x, int z, boolean generate) { this.timings.syncChunkLoadTimer.startTiming(); BaseFullChunk chunk = this.provider.getChunk(x, z, generate); if (chunk == null) { if (generate) { throw new IllegalStateException("Could not create new Chunk"); } this.timings.syncChunkLoadTimer.stopTiming(); return chunk; } if (chunk.getProvider() != null) { this.server.getPluginManager().callEvent(new ChunkLoadEvent(chunk, !chunk.isGenerated())); } else { this.unloadChunk(x, z, false); this.timings.syncChunkLoadTimer.stopTiming(); return chunk; } chunk.initChunk(); if (!chunk.isLightPopulated() && chunk.isPopulated() && this.getServer().getConfig("chunk-ticking.light-updates", false)) { this.getServer().getScheduler().scheduleAsyncTask(new LightPopulationTask(this, chunk)); } if (this.isChunkInUse(index)) { this.unloadQueue.remove(index); for (ChunkLoader loader : this.getChunkLoaders(x, z)) { loader.onChunkLoaded(chunk); } } else { this.unloadQueue.put(index, System.currentTimeMillis()); } this.timings.syncChunkLoadTimer.stopTiming(); return chunk; }
Example 4
Source File: Level.java From Nukkit with GNU General Public License v3.0 | 5 votes |
public void generateChunkCallback(int x, int z, BaseFullChunk chunk) { Timings.generationCallbackTimer.startTiming(); long index = Level.chunkHash(x, z); if (this.chunkPopulationQueue.containsKey(index)) { FullChunk oldChunk = this.getChunk(x, z, false); for (int xx = -1; xx <= 1; ++xx) { for (int zz = -1; zz <= 1; ++zz) { this.chunkPopulationLock.remove(Level.chunkHash(x + xx, z + zz)); } } this.chunkPopulationQueue.remove(index); chunk.setProvider(this.provider); this.setChunk(x, z, chunk, false); chunk = this.getChunk(x, z, false); if (chunk != null && (oldChunk == null || !oldChunk.isPopulated()) && chunk.isPopulated() && chunk.getProvider() != null) { this.server.getPluginManager().callEvent(new ChunkPopulateEvent(chunk)); for (ChunkLoader loader : this.getChunkLoaders(x, z)) { loader.onChunkPopulated(chunk); } } } else if (this.chunkGenerationQueue.containsKey(index) || this.chunkPopulationLock.containsKey(index)) { this.chunkGenerationQueue.remove(index); this.chunkPopulationLock.remove(index); chunk.setProvider(this.provider); this.setChunk(x, z, chunk, false); } else { chunk.setProvider(this.provider); this.setChunk(x, z, chunk, false); } Timings.generationCallbackTimer.stopTiming(); }
Example 5
Source File: Level.java From Nukkit with GNU General Public License v3.0 | 5 votes |
private BaseFullChunk forceLoadChunk(long index, int x, int z, boolean generate) { this.timings.syncChunkLoadTimer.startTiming(); BaseFullChunk chunk = this.provider.getChunk(x, z, generate); if (chunk == null) { if (generate) { throw new IllegalStateException("Could not create new Chunk"); } this.timings.syncChunkLoadTimer.stopTiming(); return chunk; } if (chunk.getProvider() != null) { this.server.getPluginManager().callEvent(new ChunkLoadEvent(chunk, !chunk.isGenerated())); } else { this.unloadChunk(x, z, false); this.timings.syncChunkLoadTimer.stopTiming(); return chunk; } chunk.initChunk(); if (!chunk.isLightPopulated() && chunk.isPopulated() && (boolean) this.getServer().getConfig("chunk-ticking.light-updates", false)) { this.getServer().getScheduler().scheduleAsyncTask(new LightPopulationTask(this, chunk)); } if (this.isChunkInUse(index)) { this.unloadQueue.remove(index); for (ChunkLoader loader : this.getChunkLoaders(x, z)) { loader.onChunkLoaded(chunk); } } else { this.unloadQueue.put(index, (Long) System.currentTimeMillis()); } this.timings.syncChunkLoadTimer.stopTiming(); return chunk; }
Example 6
Source File: Level.java From Jupiter with GNU General Public License v3.0 | 4 votes |
public boolean loadChunk(int x, int z, boolean generate) { Long index = Level.chunkHash(x, z); if (this.chunks.containsKey(index)) { return true; } this.timings.syncChunkLoadTimer.startTiming(); this.cancelUnloadChunkRequest(x, z); BaseFullChunk chunk = this.provider.getChunk(x, z, generate); if (chunk == null) { if (generate) { throw new IllegalStateException("Could not create new Chunk"); } return false; } this.chunks.put(index, chunk); chunk.initChunk(); if (chunk.getProvider() != null) { this.server.getPluginManager().callEvent(new ChunkLoadEvent(chunk, !chunk.isGenerated())); } else { this.unloadChunk(x, z, false); this.timings.syncChunkLoadTimer.stopTiming(); return false; } if (!chunk.isLightPopulated() && chunk.isPopulated() && (boolean) this.getServer().getConfig("chunk-ticking.light-updates", false)) { this.getServer().getScheduler().scheduleAsyncTask(new LightPopulationTask(this, chunk)); } if (this.isChunkInUse(x, z)) { for (ChunkLoader loader : this.getChunkLoaders(x, z)) { loader.onChunkLoaded(chunk); } } else { this.unloadChunkRequest(x, z); } this.timings.syncChunkLoadTimer.stopTiming(); return true; }