Expand the bungee module
This commit is contained in:
parent
d86973f227
commit
f73b713658
11 changed files with 785 additions and 3 deletions
22
examples/example-bungee/build.gradle
Normal file
22
examples/example-bungee/build.gradle
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
apply plugin: "com.github.johnrengelman.shadow"
|
||||
|
||||
def adventureVersion = "4.0.0-SNAPSHOT"
|
||||
|
||||
shadowJar {
|
||||
dependencies {
|
||||
exclude(dependency("net.md-5:bungeecord-api:1.8-SNAPSHOT"))
|
||||
}
|
||||
}
|
||||
|
||||
build.dependsOn(shadowJar)
|
||||
|
||||
dependencies {
|
||||
/* Cloud */
|
||||
implementation project(":cloud-bungee")
|
||||
implementation project(":cloud-annotations")
|
||||
implementation project(":cloud-minecraft-extras")
|
||||
/* Extras */
|
||||
implementation "net.kyori:adventure-platform-bungeecord:$adventureVersion"
|
||||
/* Bungee*/
|
||||
compileOnly 'net.md-5:bungeecord-api:1.8-SNAPSHOT'
|
||||
}
|
||||
|
|
@ -0,0 +1,150 @@
|
|||
//
|
||||
// MIT License
|
||||
//
|
||||
// Copyright (c) 2020 Alexander Söderberg & Contributors
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in all
|
||||
// copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
// SOFTWARE.
|
||||
//
|
||||
package cloud.commandframework.examples.bungee;
|
||||
|
||||
import cloud.commandframework.Command;
|
||||
import cloud.commandframework.CommandTree;
|
||||
import cloud.commandframework.Description;
|
||||
import cloud.commandframework.arguments.CommandArgument;
|
||||
import cloud.commandframework.bungee.BungeeCommandManager;
|
||||
import cloud.commandframework.bungee.arguments.PlayerArgument;
|
||||
import cloud.commandframework.bungee.arguments.ServerArgument;
|
||||
import cloud.commandframework.execution.AsynchronousCommandExecutionCoordinator;
|
||||
import cloud.commandframework.execution.CommandExecutionCoordinator;
|
||||
import cloud.commandframework.extra.confirmation.CommandConfirmationManager;
|
||||
import cloud.commandframework.minecraft.extras.MinecraftExceptionHandler;
|
||||
import net.kyori.adventure.platform.bungeecord.BungeeAudiences;
|
||||
import net.kyori.adventure.text.Component;
|
||||
import net.kyori.adventure.text.format.NamedTextColor;
|
||||
import net.md_5.bungee.api.CommandSender;
|
||||
import net.md_5.bungee.api.config.ServerInfo;
|
||||
import net.md_5.bungee.api.connection.ProxiedPlayer;
|
||||
import net.md_5.bungee.api.plugin.Plugin;
|
||||
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.function.Function;
|
||||
|
||||
public final class ExamplePlugin extends Plugin {
|
||||
|
||||
private BungeeCommandManager<CommandSender> manager;
|
||||
private BungeeAudiences bungeeAudiences;
|
||||
private CommandConfirmationManager<CommandSender> confirmationManager;
|
||||
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
final Function<CommandTree<CommandSender>, CommandExecutionCoordinator<CommandSender>> executionCoordinatorFunction =
|
||||
AsynchronousCommandExecutionCoordinator.<CommandSender>newBuilder().build();
|
||||
|
||||
final Function<CommandSender, CommandSender> mapperFunction = Function.identity();
|
||||
|
||||
try {
|
||||
this.manager = new BungeeCommandManager<>(
|
||||
this,
|
||||
executionCoordinatorFunction,
|
||||
mapperFunction,
|
||||
mapperFunction
|
||||
);
|
||||
} catch (final Exception e) {
|
||||
this.getLogger().severe("Failed to initialize the command manager");
|
||||
return;
|
||||
}
|
||||
|
||||
this.bungeeAudiences = BungeeAudiences.create(this);
|
||||
|
||||
this.confirmationManager = new CommandConfirmationManager<>(
|
||||
30L,
|
||||
TimeUnit.SECONDS,
|
||||
context -> bungeeAudiences.sender(context.getCommandContext().getSender()).sendMessage(
|
||||
Component.text(
|
||||
"Confirmation required. Confirm using /example confirm.", NamedTextColor.RED)),
|
||||
sender -> bungeeAudiences.sender(sender).sendMessage(
|
||||
Component.text("You do not have any pending commands.", NamedTextColor.RED))
|
||||
);
|
||||
|
||||
this.confirmationManager.registerConfirmationProcessor(manager);
|
||||
|
||||
new MinecraftExceptionHandler<CommandSender>()
|
||||
.withInvalidSyntaxHandler()
|
||||
.withInvalidSenderHandler()
|
||||
.withNoPermissionHandler()
|
||||
.withArgumentParsingHandler()
|
||||
.withDecorator(component -> Component.text()
|
||||
.append(Component.text("[", NamedTextColor.DARK_GRAY))
|
||||
.append(Component.text("Example", NamedTextColor.GOLD))
|
||||
.append(Component.text("] ", NamedTextColor.DARK_GRAY))
|
||||
.append(component).build()
|
||||
).apply(manager, bungeeAudiences::sender);
|
||||
this.constructCommands();
|
||||
}
|
||||
|
||||
private void constructCommands() {
|
||||
|
||||
// Base command builder
|
||||
//
|
||||
final Command.Builder<CommandSender> builder = this.manager.commandBuilder("example");
|
||||
//
|
||||
// Add a confirmation command
|
||||
//
|
||||
this.manager.command(builder.literal("confirm")
|
||||
.meta("description", "Confirm a pending command")
|
||||
.handler(this.confirmationManager.createConfirmationExecutionHandler()));
|
||||
|
||||
final CommandArgument<CommandSender, ProxiedPlayer> playerArgument = PlayerArgument.of("player", this.getProxy());
|
||||
final CommandArgument<CommandSender, ServerInfo> serverArgument = ServerArgument.of("server", this.getProxy());
|
||||
|
||||
//
|
||||
// Create a player command
|
||||
//
|
||||
this.manager.command(
|
||||
manager.commandBuilder("player")
|
||||
.senderType(ProxiedPlayer.class)
|
||||
.argument(playerArgument, Description.of("Player name"))
|
||||
.handler(context -> {
|
||||
final ProxiedPlayer player = context.get("player");
|
||||
bungeeAudiences.sender(context.getSender()).sendMessage(
|
||||
Component.text("Selected ", NamedTextColor.GOLD)
|
||||
.append(Component.text(player.getDisplayName(), NamedTextColor.AQUA))
|
||||
);
|
||||
})
|
||||
);
|
||||
|
||||
//
|
||||
// Create a server command
|
||||
//
|
||||
this.manager.command(
|
||||
this.manager.commandBuilder("server")
|
||||
.senderType(ProxiedPlayer.class)
|
||||
.argument(serverArgument, Description.of("Server name"))
|
||||
.handler(context -> {
|
||||
final ServerInfo server = context.get("server");
|
||||
bungeeAudiences.sender(context.getSender()).sendMessage(
|
||||
Component.text("Selected ", NamedTextColor.GOLD)
|
||||
.append(Component.text(server.getName(), NamedTextColor.AQUA))
|
||||
);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
//
|
||||
// MIT License
|
||||
//
|
||||
// Copyright (c) 2020 Alexander Söderberg & Contributors
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in all
|
||||
// copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
// SOFTWARE.
|
||||
//
|
||||
|
||||
/**
|
||||
* Bungee example plugin
|
||||
*/
|
||||
package cloud.commandframework.examples.bungee;
|
||||
5
examples/example-bungee/src/main/resources/plugin.yml
Normal file
5
examples/example-bungee/src/main/resources/plugin.yml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
name: ExampleBungee
|
||||
version: "0.2.2"
|
||||
main: cloud.commandframework.examples.bungee.ExamplePlugin
|
||||
author: Cloud Contributors
|
||||
description: "An Example plugin for the Cloud command framework"
|
||||
Loading…
Add table
Add a link
Reference in a new issue