use of org.terasology.engine.world.block.OnAddedBlocks in project Terasology by MovingBlocks.
the class LocalChunkProviderTest method testLoadSingleChunkWithBlockLifecycle.
@Test
void testLoadSingleChunkWithBlockLifecycle() throws InterruptedException, ExecutionException, TimeoutException {
Vector3i chunkPosition = new Vector3i(0, 0, 0);
Chunk chunk = new ChunkImpl(chunkPosition, blockManager, extraDataManager);
generator.createChunk(chunk, null);
storageManager.add(chunk);
blockAtBlockManager.setLifecycleEventsRequired(true);
blockAtBlockManager.setEntity(mock(EntityRef.class));
requestCreatingOrLoadingArea(chunkPosition).get(WAIT_CHUNK_IS_READY_IN_SECONDS, TimeUnit.SECONDS);
chunkProvider.update();
Assertions.assertTrue(((TestChunkStore) storageManager.loadChunkStore(chunkPosition)).isEntityRestored(), "Entities must be restored by loading");
final ArgumentCaptor<Event> eventArgumentCaptor = ArgumentCaptor.forClass(Event.class);
verify(worldEntity, atLeast(1)).send(eventArgumentCaptor.capture());
Event mustBeOnLoadedEvent = eventArgumentCaptor.getAllValues().get(0);
Assertions.assertTrue(mustBeOnLoadedEvent instanceof OnChunkLoaded, "Second world event must be OnChunkLoaded");
Assertions.assertEquals(chunkPosition, ((OnChunkLoaded) mustBeOnLoadedEvent).getChunkPos(), "Chunk position at event not expected");
// TODO, it is not clear if the activate/addedBlocks event logic is correct.
// See https://github.com/MovingBlocks/Terasology/issues/3244
final ArgumentCaptor<Event> blockEventCaptor = ArgumentCaptor.forClass(Event.class);
verify(blockAtBlockManager.getEntity(), atLeast(2)).send(blockEventCaptor.capture());
Assertions.assertAll("Block events not valid", () -> {
Event mustBeOnAddedBlocks = blockEventCaptor.getAllValues().get(0);
Assertions.assertTrue(mustBeOnAddedBlocks instanceof OnAddedBlocks, "First block event must be OnAddedBlocks");
Assertions.assertTrue(((OnAddedBlocks) mustBeOnAddedBlocks).blockCount() > 0, "Block count on activate must be non zero");
}, () -> {
Event mustBeOnActivatedBlocks = blockEventCaptor.getAllValues().get(1);
Assertions.assertTrue(mustBeOnActivatedBlocks instanceof OnActivatedBlocks, "First block event must be OnActivatedBlocks");
Assertions.assertTrue(((OnActivatedBlocks) mustBeOnActivatedBlocks).blockCount() > 0, "Block count on activate must be non zero");
});
}
use of org.terasology.engine.world.block.OnAddedBlocks in project Terasology by MovingBlocks.
the class LocalChunkProvider method processReadyChunk.
private void processReadyChunk(final Chunk chunk) {
Vector3ic chunkPos = chunk.getPosition();
if (chunkCache.get(chunkPos) != null) {
// TODO move it in pipeline;
return;
}
chunkCache.put(new Vector3i(chunkPos), chunk);
chunk.markReady();
// TODO, it is not clear if the activate/addedBlocks event logic is correct.
// See https://github.com/MovingBlocks/Terasology/issues/3244
ChunkStore store = this.storageManager.loadChunkStore(chunkPos);
TShortObjectMap<TIntList> mappings = createBatchBlockEventMappings(chunk);
if (store != null) {
store.restoreEntities();
PerformanceMonitor.startActivity("Sending OnAddedBlocks");
mappings.forEachEntry((id, positions) -> {
if (positions.size() > 0) {
blockManager.getBlock(id).getEntity().send(new OnAddedBlocks(positions, registry));
}
return true;
});
PerformanceMonitor.endActivity();
// send on activate
PerformanceMonitor.startActivity("Sending OnActivateBlocks");
mappings.forEachEntry((id, positions) -> {
if (positions.size() > 0) {
blockManager.getBlock(id).getEntity().send(new OnActivatedBlocks(positions, registry));
}
return true;
});
PerformanceMonitor.endActivity();
} else {
PerformanceMonitor.startActivity("Generating queued Entities");
generateQueuedEntities.remove(chunkPos).forEach(this::generateQueuedEntities);
PerformanceMonitor.endActivity();
// send on activate
PerformanceMonitor.startActivity("Sending OnActivateBlocks");
mappings.forEachEntry((id, positions) -> {
if (positions.size() > 0) {
blockManager.getBlock(id).getEntity().send(new OnActivatedBlocks(positions, registry));
}
return true;
});
PerformanceMonitor.endActivity();
worldEntity.send(new OnChunkGenerated(chunkPos));
}
worldEntity.send(new OnChunkLoaded(chunkPos));
}
Aggregations