Search in sources :

Example 1 with CommandInfo

use of pl.themolka.arcade.command.CommandInfo in project Arcade2 by ShootGame.

the class DevelopmentCommands method recycleNow.

// 
// /recyclenow command
// 
@CommandInfo(name = { "recyclenow" }, description = "Re-cycle now current map", permission = "arcade.command.cyclenow")
public void recycleNow(Sender sender, CommandContext context) {
    if (this.development.getPlugin().getGames().getCurrentGame() == null) {
        throw new CommandException("Game is not running right now.");
    }
    OfflineMap target = this.development.getPlugin().getGames().getCurrentGame().getMap().getMapInfo();
    GeneralCommands.CycleCommandEvent commandEvent = new GeneralCommands.CycleCommandEvent(this.development.getPlugin(), sender, context, target);
    this.development.getPlugin().getEventBus().publish(commandEvent);
    if (commandEvent.isCanceled()) {
        return;
    }
    CycleStartEvent startEvent = new CycleStartEvent(this.development.getPlugin(), target, 0);
    this.development.getPlugin().getEventBus().publish(startEvent);
    this.development.getPlugin().getGames().setNextRestart(false);
    Game game = this.development.getPlugin().getGames().getCurrentGame();
    if (game != null) {
        for (Countdown countdown : game.getRunningCountdowns()) {
            countdown.cancelCountdown();
        }
        sender.sendSuccess("Re-cycling now to " + target.getName() + "...");
        this.development.getPlugin().getGames().cycle(target);
    }
}
Also used : Game(pl.themolka.arcade.game.Game) CycleStartEvent(pl.themolka.arcade.cycle.CycleStartEvent) OfflineMap(pl.themolka.arcade.map.OfflineMap) GeneralCommands(pl.themolka.arcade.command.GeneralCommands) Countdown(pl.themolka.arcade.task.Countdown) CommandException(pl.themolka.arcade.command.CommandException) CommandInfo(pl.themolka.arcade.command.CommandInfo)

Example 2 with CommandInfo

use of pl.themolka.arcade.command.CommandInfo in project Arcade2 by ShootGame.

the class DevelopmentCommands method cycleNow.

// 
// /cyclenow command
// 
@CommandInfo(name = { "cyclenow" }, description = "Cycle now to the given map", flags = { "c", "current", "n", "next" }, usage = "<map...>", permission = "arcade.command.cyclenow")
public void cycleNow(Sender sender, CommandContext context) {
    boolean paramCurrent = context.hasFlag("c") || context.hasFlag("current");
    boolean paramNext = context.hasFlag("n") || context.hasFlag("next");
    String paramMap = context.getParams(0);
    List<OfflineMap> results = new ArrayList<>();
    if (paramCurrent || context.getArgs().length == 0) {
        Game game = this.development.getPlugin().getGames().getCurrentGame();
        if (game == null) {
            throw new CommandException("No game running right now.");
        }
        results.add(game.getMap().getMapInfo());
    } else if (paramNext) {
        OfflineMap next = this.development.getPlugin().getGames().getQueue().getNextMap();
        if (next == null) {
            String reason = "The map queue is empty.";
            if (sender.hasPermission("arcade.command.setnext")) {
                reason += " Set next map using /setnext <map...>.";
            }
            throw new CommandException(reason);
        }
        results.add(next);
    } else {
        results.addAll(this.development.getPlugin().getMaps().findMap(paramMap));
    }
    if (results.isEmpty()) {
        throw new CommandException("No results found.");
    } else if (results.size() > 1) {
        sender.sendError("Found " + results.size() + " results. Cycling to the best one...");
    }
    OfflineMap target = results.get(0);
    GeneralCommands.CycleCommandEvent commandEvent = new GeneralCommands.CycleCommandEvent(this.development.getPlugin(), sender, context, target);
    this.development.getPlugin().getEventBus().publish(commandEvent);
    if (!commandEvent.isCanceled()) {
        sender.sendSuccess("Cycling now to " + target.getName() + "...");
        Game game = this.development.getPlugin().getGames().getCurrentGame();
        for (Countdown countdown : game.getRunningCountdowns()) {
            countdown.cancelCountdown();
        }
        this.development.getPlugin().getGames().getCycleCountdown().cancelCountdown();
        this.development.getPlugin().getGames().cycle(target);
    }
}
Also used : Game(pl.themolka.arcade.game.Game) OfflineMap(pl.themolka.arcade.map.OfflineMap) ArrayList(java.util.ArrayList) GeneralCommands(pl.themolka.arcade.command.GeneralCommands) Countdown(pl.themolka.arcade.task.Countdown) CommandException(pl.themolka.arcade.command.CommandException) CommandInfo(pl.themolka.arcade.command.CommandInfo)

Aggregations

CommandException (pl.themolka.arcade.command.CommandException)2 CommandInfo (pl.themolka.arcade.command.CommandInfo)2 GeneralCommands (pl.themolka.arcade.command.GeneralCommands)2 Game (pl.themolka.arcade.game.Game)2 OfflineMap (pl.themolka.arcade.map.OfflineMap)2 Countdown (pl.themolka.arcade.task.Countdown)2 ArrayList (java.util.ArrayList)1 CycleStartEvent (pl.themolka.arcade.cycle.CycleStartEvent)1