Package org.popcraft.chunky.api
Interface ChunkyAPI
public interface ChunkyAPI
The Chunky API
-
Method Summary
Modifier and TypeMethodDescriptionboolean
cancelTask
(String world) Cancels a generation task in a world.boolean
continueTask
(String world) Continues a generation task in a world.boolean
Gets whether a generation task is currently running for a world.void
onGenerationComplete
(Consumer<GenerationCompleteEvent> listener) Register a listener for generation complete events.void
onGenerationProgress
(Consumer<GenerationProgressEvent> listener) Register a listener for generation progress events.boolean
Pauses a generation task in a world.boolean
startTask
(String world, String shape, double centerX, double centerZ, double radiusX, double radiusZ, String pattern) Starts a generation task with a given selection in a world.int
version()
Gets the current API version.
-
Method Details
-
version
int version()Gets the current API version.- Returns:
- The api version
-
isRunning
Gets whether a generation task is currently running for a world.- Parameters:
world
- The world identifier- Returns:
- If a task is running in that world
-
startTask
boolean startTask(String world, String shape, double centerX, double centerZ, double radiusX, double radiusZ, String pattern) Starts a generation task with a given selection in a world.- Parameters:
world
- The world identifiershape
- The selection shapecenterX
- The center x coordinatecenterZ
- The center z coordinateradiusX
- The primary radius (x-axis)radiusZ
- The secondary radius (z-axis) (only used for certain shapes)pattern
- The generation pattern- Returns:
- If the task was created and started successfully
-
pauseTask
Pauses a generation task in a world.- Parameters:
world
- The world identifier- Returns:
- If the task was paused
-
continueTask
Continues a generation task in a world.- Parameters:
world
- The world identifier- Returns:
- If the task was continued
-
cancelTask
Cancels a generation task in a world.- Parameters:
world
- The world identifier- Returns:
- If the task was cancelled
-
onGenerationProgress
Register a listener for generation progress events.- Parameters:
listener
- The listener
-
onGenerationComplete
Register a listener for generation complete events.- Parameters:
listener
- The listener
-