use of pl.themolka.arcade.task.Countdown 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);
}
}
use of pl.themolka.arcade.task.Countdown in project Arcade2 by ShootGame.
the class MatchGame method onCycleCountdownAutoStart.
@Handler(priority = Priority.LOWEST)
public void onCycleCountdownAutoStart(MatchEndedEvent event) {
if (!this.isAutoCycle()) {
// auto cycle is disabled
return;
}
GameManager games = event.getPlugin().getGames();
Countdown countdown;
if (games.isNextRestart()) {
countdown = games.getRestartCountdown();
if (!countdown.isTaskRunning()) {
((RestartCountdown) countdown).setDefaultDuration();
}
} else {
countdown = games.getCycleCountdown();
if (!countdown.isTaskRunning()) {
((CycleCountdown) countdown).setDefaultDuration();
}
}
if (!countdown.isTaskRunning()) {
countdown.countSync();
}
}
Aggregations