branch | status | version | download |
---|---|---|---|
master | Download latest release | ||
development | Download snapshots |
MCCoroutine is a library, which adds extensive support for Kotlin Coroutines for Minecraft Server environments.
Plugins for game servers and proxy servers often need to perform asynchronous operations (e.g. accessing databases) to be scalable for a large amount of players. MCCoroutine brings the full power of Kotlin Coroutines to them by extending the existing APIs with suspendable commands, events and schedules.
Supported Game Servers:
- CraftBukkit
- Fabric
- Folia
- Minestom
- Paper
- Spigot
- SpongeVanilla v7.x.x
- SpongeForge v7.x.x
Supported Proxies:
- BungeeCord
- Waterfall
- Velocity
Examples:
// Allows to prepend suspend to any listener function.
class PlayerConnectListener : Listener {
@EventHandler
suspend fun onPlayerJoinEvent(playerJoinEvent: PlayerJoinEvent) {
}
}
// Adds a new interface for suspendable command executors.
class AdminCommandExecutor: SuspendingCommandExecutor {
override suspend fun onCommand(sender: CommandSender,command: Command,label: String,args: Array<out String>): Boolean {
return false
}
}
// Adds a new extension function to switch into a suspendable plugin coroutine.
fun bar() {
plugin.launch {
delay(1000)
bob()
}
}
private suspend fun bob() {
}
- MCCoroutine JavaDocs for the Bukkit-API
- MCCoroutine JavaDocs for the BungeeCord-API
- MCCoroutine JavaDocs for the Fabric-API
- MCCoroutine JavaDocs for the Folia-API
- MCCoroutine JavaDocs for the Minestom-API
- MCCoroutine JavaDocs for the Sponge-v7.x.x-API
- MCCoroutine JavaDocs for the Velocity-API
- Article on custom frameworks
- Full implementation of Kotlin Coroutines (async/await)
- Extension functions for already established functions
- Connection to events, commands, schedulers
- Coroutine LifeCycle scope for plugins (supports plugin reloading)
- No NMS
- Support for Minecraft 1.7 - Latest
- Support for Java 8
- Fork the MCCoroutine project on GitHub and clone it to your local environment
- Install Java 8
- Execute gradle sync for dependencies
The source code is licensed under the MIT license.