package net.knarcraft.minigames.command.dropper; import net.knarcraft.minigames.MiniGames; import net.knarcraft.minigames.arena.ArenaPlayerRegistry; import net.knarcraft.minigames.arena.dropper.DropperArena; import net.knarcraft.minigames.arena.dropper.DropperArenaGameMode; import net.knarcraft.minigames.arena.dropper.DropperArenaGroup; import net.knarcraft.minigames.arena.dropper.DropperArenaSession; import net.knarcraft.minigames.config.DropperConfiguration; import net.knarcraft.minigames.config.Message; import net.knarcraft.minigames.util.GUIHelper; import net.knarcraft.minigames.util.PlayerTeleporter; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; import org.jetbrains.annotations.NotNull; /** * The command used to join a dropper arena */ public class JoinDropperArenaCommand implements CommandExecutor { @Override public boolean onCommand(@NotNull CommandSender commandSender, @NotNull Command command, @NotNull String s, @NotNull String[] arguments) { if (!(commandSender instanceof Player player)) { commandSender.sendMessage(Message.ERROR_PLAYER_ONLY.getMessage()); return false; } if (arguments.length < 1) { return false; } // Disallow joining if the player is already in a mini-game arena if (MiniGames.getInstance().getSession(player.getUniqueId()) != null) { commandSender.sendMessage(Message.ERROR_ALREADY_PLAYING.getMessage()); return false; } // Make sure the arena exists DropperArena specifiedArena = MiniGames.getInstance().getDropperArenaHandler().getArena(arguments[0]); if (specifiedArena == null) { commandSender.sendMessage(Message.ERROR_ARENA_NOT_FOUND.getMessage()); return false; } // Deny vehicles as allowing this is tricky, and will cause problems in some cases if (player.isInsideVehicle() || !player.getPassengers().isEmpty()) { commandSender.sendMessage(Message.ERROR_JOIN_IN_VEHICLE_OR_PASSENGER.getMessage()); return false; } return joinArena(specifiedArena, player, arguments); } /** * Performs the actual arena joining * * @param specifiedArena
The arena the player wants to join
* @param playerThe player joining the arena
* @param argumentsThe arguments given
* @returnWhether the arena was joined successfully
*/ private boolean joinArena(DropperArena specifiedArena, Player player, String[] arguments) { // Find the specified game-mode DropperArenaGameMode gameMode; if (arguments.length > 1) { gameMode = DropperArenaGameMode.matchGamemode(arguments[1]); } else { gameMode = DropperArenaGameMode.DEFAULT; } // Make sure the player has beaten the necessary levels DropperArenaGroup arenaGroup = MiniGames.getInstance().getDropperArenaHandler().getGroup(specifiedArena.getArenaId()); if (arenaGroup != null && !doGroupChecks(specifiedArena, arenaGroup, gameMode, player)) { return false; } // Make sure the player has beaten the arena once in normal mode before playing another mode if (MiniGames.getInstance().getDropperConfiguration().mustDoNormalModeFirst() && gameMode != DropperArenaGameMode.DEFAULT && specifiedArena.getData().hasNotCompleted(DropperArenaGameMode.DEFAULT, player)) { player.sendMessage(Message.ERROR_NORMAL_MODE_REQUIRED.getMessage()); return false; } // Register the player's session DropperArenaSession newSession = new DropperArenaSession(specifiedArena, player, gameMode); ArenaPlayerRegistryThe arena the player is trying to join
* @param arenaGroupThe arena group the arena belongs to
* @param arenaGameModeThe game-mode the player selected
* @param playerThe the player trying to join the arena
* @returnFalse if any checks failed
*/ private boolean doGroupChecks(@NotNull DropperArena dropperArena, @NotNull DropperArenaGroup arenaGroup, @NotNull DropperArenaGameMode arenaGameMode, @NotNull Player player) { DropperConfiguration configuration = MiniGames.getInstance().getDropperConfiguration(); // Require that players beat all arenas in the group in the normal game-mode before trying challenge modes if (configuration.mustDoNormalModeFirst() && arenaGameMode != DropperArenaGameMode.DEFAULT && !arenaGroup.hasBeatenAll(DropperArenaGameMode.DEFAULT, player)) { player.sendMessage(Message.ERROR_GROUP_NORMAL_MODE_REQUIRED.getMessage()); return false; } // Require that the player has beaten the previous arena on the same game-mode before trying this one if (configuration.mustDoGroupedInSequence() && arenaGroup.cannotPlay(arenaGameMode, player, dropperArena.getArenaId())) { player.sendMessage(Message.ERROR_PREVIOUS_ARENA_REQUIRED.getMessage()); return false; } return true; } }