2019-03-20 02:46:00 +01:00
|
|
|
From e0bd691e726a2082f30e462d6afb9e3004c1bc56 Mon Sep 17 00:00:00 2001
|
2018-09-21 22:56:08 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 29 Feb 2016 17:43:33 -0600
|
|
|
|
Subject: [PATCH] Async Chunks API
|
|
|
|
|
|
|
|
Adds API's to load or generate chunks asynchronously.
|
|
|
|
|
|
|
|
Also adds utility methods to Entity to teleport asynchronously.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
|
2019-03-20 01:28:15 +01:00
|
|
|
index c5da4d387..1b0744ed9 100644
|
2018-09-21 22:56:08 +02:00
|
|
|
--- a/src/main/java/org/bukkit/World.java
|
|
|
|
+++ b/src/main/java/org/bukkit/World.java
|
2019-03-20 01:28:15 +01:00
|
|
|
@@ -163,6 +163,358 @@ public interface World extends PluginMessageRecipient, Metadatable {
|
2018-09-21 22:56:08 +02:00
|
|
|
public default Chunk getChunkAt(long chunkKey) {
|
|
|
|
return getChunkAt((int) chunkKey, (int) (chunkKey >> 32));
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * This is the Legacy API before Java 8 was supported. Java 8 Consumer is provided,
|
|
|
|
+ * as well as future support
|
|
|
|
+ *
|
|
|
|
+ * Used by {@link World#getChunkAtAsync(Location,ChunkLoadCallback)} methods
|
|
|
|
+ * to request a {@link Chunk} to be loaded, with this callback receiving
|
|
|
|
+ * the chunk when it is finished.
|
|
|
|
+ *
|
|
|
|
+ * This callback will be executed on synchronously on the main thread.
|
|
|
|
+ *
|
|
|
|
+ * Timing and order this callback is fired is intentionally not defined and
|
|
|
|
+ * and subject to change.
|
|
|
|
+ *
|
|
|
|
+ * @deprecated Use either the Future or the Consumer based methods
|
|
|
|
+ */
|
|
|
|
+ @Deprecated
|
|
|
|
+ public static interface ChunkLoadCallback extends java.util.function.Consumer<Chunk> {
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public void onLoad(@NotNull Chunk chunk);
|
2018-09-21 22:56:08 +02:00
|
|
|
+
|
|
|
|
+ // backwards compat to old api
|
|
|
|
+ @Override
|
2019-03-20 01:28:15 +01:00
|
|
|
+ default void accept(@NotNull Chunk chunk) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ onLoad(chunk);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given coordinates
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
|
|
|
+ * The {@link ChunkLoadCallback} will always be executed synchronously
|
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @deprecated Use either the Future or the Consumer based methods
|
|
|
|
+ * @param x Chunk X-coordinate of the chunk - (world coordinate / 16)
|
|
|
|
+ * @param z Chunk Z-coordinate of the chunk - (world coordinate / 16)
|
|
|
|
+ * @param cb Callback to receive the chunk when it is loaded.
|
|
|
|
+ * will be executed synchronously
|
|
|
|
+ */
|
|
|
|
+ @Deprecated
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public default void getChunkAtAsync(int x, int z, @NotNull ChunkLoadCallback cb) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ getChunkAtAsync(x, z, true).thenAccept(cb::onLoad);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given {@link Location}
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
|
|
|
+ * The {@link ChunkLoadCallback} will always be executed synchronously
|
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @deprecated Use either the Future or the Consumer based methods
|
|
|
|
+ * @param loc Location of the chunk
|
|
|
|
+ * @param cb Callback to receive the chunk when it is loaded.
|
|
|
|
+ * will be executed synchronously
|
|
|
|
+ */
|
|
|
|
+ @Deprecated
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public default void getChunkAtAsync(@NotNull Location loc, @NotNull ChunkLoadCallback cb) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ getChunkAtAsync(loc, true).thenAccept(cb::onLoad);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests {@link Chunk} to be loaded that contains the given {@link Block}
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
|
|
|
+ * The {@link ChunkLoadCallback} will always be executed synchronously
|
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @deprecated Use either the Future or the Consumer based methods
|
|
|
|
+ * @param block Block to get the containing chunk from
|
|
|
|
+ * @param cb Callback to receive the chunk when it is loaded.
|
|
|
|
+ * will be executed synchronously
|
|
|
|
+ */
|
|
|
|
+ @Deprecated
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public default void getChunkAtAsync(@NotNull Block block, @NotNull ChunkLoadCallback cb) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ getChunkAtAsync(block, true).thenAccept(cb::onLoad);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given coordinates
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
2018-10-25 15:38:19 +02:00
|
|
|
+ * The {@link java.util.function.Consumer} will always be executed synchronously
|
2018-09-21 22:56:08 +02:00
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @param x Chunk X-coordinate of the chunk - (world coordinate / 16)
|
|
|
|
+ * @param z Chunk Z-coordinate of the chunk - (world coordinate / 16)
|
|
|
|
+ * @param cb Callback to receive the chunk when it is loaded.
|
|
|
|
+ * will be executed synchronously
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public default void getChunkAtAsync(int x, int z, @NotNull java.util.function.Consumer<Chunk> cb) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ getChunkAtAsync(x, z, true).thenAccept(cb);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given coordinates
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
2018-10-25 15:38:19 +02:00
|
|
|
+ * The {@link java.util.function.Consumer} will always be executed synchronously
|
2018-09-21 22:56:08 +02:00
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @param x Chunk X-coordinate of the chunk - (world coordinate / 16)
|
|
|
|
+ * @param z Chunk Z-coordinate of the chunk - (world coordinate / 16)
|
2018-10-25 15:38:19 +02:00
|
|
|
+ * @param gen Should we generate a chunk if it doesn't exists or not
|
2018-09-21 22:56:08 +02:00
|
|
|
+ * @param cb Callback to receive the chunk when it is loaded.
|
|
|
|
+ * will be executed synchronously
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public default void getChunkAtAsync(int x, int z, boolean gen, @NotNull java.util.function.Consumer<Chunk> cb) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ getChunkAtAsync(x, z, gen).thenAccept(cb);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given {@link Location}
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
2018-10-25 15:38:19 +02:00
|
|
|
+ * The {@link java.util.function.Consumer} will always be executed synchronously
|
2018-09-21 22:56:08 +02:00
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @param loc Location of the chunk
|
|
|
|
+ * @param cb Callback to receive the chunk when it is loaded.
|
|
|
|
+ * will be executed synchronously
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public default void getChunkAtAsync(@NotNull Location loc, @NotNull java.util.function.Consumer<Chunk> cb) {
|
2019-03-03 00:45:42 +01:00
|
|
|
+ getChunkAtAsync((int)Math.floor(loc.getX()) >> 4, (int)Math.floor(loc.getZ()) >> 4, true, cb);
|
2018-09-21 22:56:08 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given {@link Location}
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
2018-10-25 15:38:19 +02:00
|
|
|
+ * The {@link java.util.function.Consumer} will always be executed synchronously
|
2018-09-21 22:56:08 +02:00
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @param loc Location of the chunk
|
2018-10-25 15:38:19 +02:00
|
|
|
+ * @param gen Should the chunk generate
|
2018-09-21 22:56:08 +02:00
|
|
|
+ * @param cb Callback to receive the chunk when it is loaded.
|
|
|
|
+ * will be executed synchronously
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public default void getChunkAtAsync(@NotNull Location loc, boolean gen, @NotNull java.util.function.Consumer<Chunk> cb) {
|
2019-03-03 00:45:42 +01:00
|
|
|
+ getChunkAtAsync((int)Math.floor(loc.getX()) >> 4, (int)Math.floor(loc.getZ()) >> 4, gen, cb);
|
2018-09-21 22:56:08 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests {@link Chunk} to be loaded that contains the given {@link Block}
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
2018-10-25 15:38:19 +02:00
|
|
|
+ * The {@link java.util.function.Consumer} will always be executed synchronously
|
2018-09-21 22:56:08 +02:00
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @param block Block to get the containing chunk from
|
|
|
|
+ * @param cb Callback to receive the chunk when it is loaded.
|
|
|
|
+ * will be executed synchronously
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public default void getChunkAtAsync(@NotNull Block block, @NotNull java.util.function.Consumer<Chunk> cb) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ getChunkAtAsync(block.getX() >> 4, block.getZ() >> 4, true, cb);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests {@link Chunk} to be loaded that contains the given {@link Block}
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
2018-10-25 15:38:19 +02:00
|
|
|
+ * The {@link java.util.function.Consumer} will always be executed synchronously
|
2018-09-21 22:56:08 +02:00
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @param block Block to get the containing chunk from
|
2018-10-25 15:38:19 +02:00
|
|
|
+ * @param gen Should the chunk generate
|
2018-09-21 22:56:08 +02:00
|
|
|
+ * @param cb Callback to receive the chunk when it is loaded.
|
|
|
|
+ * will be executed synchronously
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public default void getChunkAtAsync(@NotNull Block block, boolean gen, @NotNull java.util.function.Consumer<Chunk> cb) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ getChunkAtAsync(block.getX() >> 4, block.getZ() >> 4, gen, cb);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given coordinates
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
|
|
|
+ * The future will always be executed synchronously
|
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ * @param loc Location to load the corresponding chunk from
|
|
|
|
+ * @return Future that will resolve when the chunk is loaded
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
|
|
|
+ public default java.util.concurrent.CompletableFuture<Chunk> getChunkAtAsync(@NotNull Location loc) {
|
2019-03-03 00:45:42 +01:00
|
|
|
+ return getChunkAtAsync((int)Math.floor(loc.getX()) >> 4, (int)Math.floor(loc.getZ()) >> 4, true);
|
2018-09-21 22:56:08 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given coordinates
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
|
|
|
+ * The future will always be executed synchronously
|
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ * @param loc Location to load the corresponding chunk from
|
|
|
|
+ * @param gen Should the chunk generate
|
|
|
|
+ * @return Future that will resolve when the chunk is loaded
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
|
|
|
+ public default java.util.concurrent.CompletableFuture<Chunk> getChunkAtAsync(@NotNull Location loc, boolean gen) {
|
2019-03-03 00:45:42 +01:00
|
|
|
+ return getChunkAtAsync((int)Math.floor(loc.getX()) >> 4, (int)Math.floor(loc.getZ()) >> 4, gen);
|
2018-09-21 22:56:08 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given coordinates
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
|
|
|
+ * The future will always be executed synchronously
|
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ * @param block Block to load the corresponding chunk from
|
|
|
|
+ * @return Future that will resolve when the chunk is loaded
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
|
|
|
+ public default java.util.concurrent.CompletableFuture<Chunk> getChunkAtAsync(@NotNull Block block) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ return getChunkAtAsync(block.getX() >> 4, block.getZ() >> 4, true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given coordinates
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
|
|
|
+ * The future will always be executed synchronously
|
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ * @param block Block to load the corresponding chunk from
|
|
|
|
+ * @param gen Should the chunk generate
|
|
|
|
+ * @return Future that will resolve when the chunk is loaded
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
|
|
|
+ public default java.util.concurrent.CompletableFuture<Chunk> getChunkAtAsync(@NotNull Block block, boolean gen) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ return getChunkAtAsync(block.getX() >> 4, block.getZ() >> 4, gen);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given coordinates
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
|
|
|
+ * The future will always be executed synchronously
|
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @param x X Coord
|
|
|
|
+ * @param z Z Coord
|
|
|
|
+ * @return Future that will resolve when the chunk is loaded
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2018-09-21 22:56:08 +02:00
|
|
|
+ public default java.util.concurrent.CompletableFuture<Chunk> getChunkAtAsync(int x, int z) {
|
|
|
|
+ return getChunkAtAsync(x, z, true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Requests a {@link Chunk} to be loaded at the given coordinates
|
|
|
|
+ *
|
|
|
|
+ * This method makes no guarantee on how fast the chunk will load,
|
|
|
|
+ * and will return the chunk to the callback at a later time.
|
|
|
|
+ *
|
|
|
|
+ * You should use this method if you need a chunk but do not need it
|
|
|
|
+ * immediately, and you wish to let the server control the speed
|
|
|
|
+ * of chunk loads, keeping performance in mind.
|
|
|
|
+ *
|
|
|
|
+ * The future will always be executed synchronously
|
|
|
|
+ * on the main Server Thread.
|
|
|
|
+ *
|
|
|
|
+ * @param x Chunk X-coordinate of the chunk - (world coordinate / 16)
|
|
|
|
+ * @param z Chunk Z-coordinate of the chunk - (world coordinate / 16)
|
|
|
|
+ * @param gen Should we generate a chunk if it doesn't exists or not
|
|
|
|
+ * @return Future that will resolve when the chunk is loaded
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2018-09-21 22:56:08 +02:00
|
|
|
+ public java.util.concurrent.CompletableFuture<Chunk> getChunkAtAsync(int x, int z, boolean gen);
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
/**
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Entity.java b/src/main/java/org/bukkit/entity/Entity.java
|
2019-03-20 01:28:15 +01:00
|
|
|
index a7f81d17d..73b75ffda 100644
|
2018-09-21 22:56:08 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Entity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Entity.java
|
2019-03-20 01:28:15 +01:00
|
|
|
@@ -145,6 +145,30 @@ public interface Entity extends Metadatable, CommandSender, Nameable {
|
2018-09-21 22:56:08 +02:00
|
|
|
*/
|
2019-03-20 01:28:15 +01:00
|
|
|
public boolean teleport(@NotNull Entity destination, @NotNull TeleportCause cause);
|
2018-09-21 22:56:08 +02:00
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * Loads/Generates(in 1.13+) the Chunk asynchronously, and then teleports the entity when the chunk is ready.
|
|
|
|
+ * @param loc Location to teleport to
|
|
|
|
+ * @return A future that will be completed with the result of the teleport
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
|
|
|
+ public default java.util.concurrent.CompletableFuture<Boolean> teleportAsync(@NotNull Location loc) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ return teleportAsync(loc, TeleportCause.PLUGIN);
|
|
|
|
+ }
|
|
|
|
+ /**
|
|
|
|
+ * Loads/Generates(in 1.13+) the Chunk asynchronously, and then teleports the entity when the chunk is ready.
|
|
|
|
+ * @param loc Location to teleport to
|
|
|
|
+ * @param cause Reason for teleport
|
|
|
|
+ * @return A future that will be completed with the result of the teleport
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
|
|
|
+ public default java.util.concurrent.CompletableFuture<Boolean> teleportAsync(@NotNull Location loc, @NotNull TeleportCause cause) {
|
2018-09-21 22:56:08 +02:00
|
|
|
+ java.util.concurrent.CompletableFuture<Boolean> future = new java.util.concurrent.CompletableFuture<>();
|
|
|
|
+ loc.getWorld().getChunkAtAsync(loc).thenAccept((chunk) -> future.complete(teleport(loc, cause)));
|
|
|
|
+ return future;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Returns a list of entities within a bounding box centered around this
|
|
|
|
* entity
|
|
|
|
--
|
2019-03-03 00:45:42 +01:00
|
|
|
2.21.0
|
2018-09-21 22:56:08 +02:00
|
|
|
|