package net.knarcraft.minigames.arena.dropper; import net.knarcraft.minigames.arena.ArenaGameMode; import org.bukkit.configuration.serialization.ConfigurationSerializable; import org.jetbrains.annotations.NotNull; import java.util.HashMap; import java.util.Map; /** * A representation of possible arena game-modes */ public enum DropperArenaGameMode implements ConfigurationSerializable, ArenaGameMode { /** * The default game-mode. Failing once throws the player out. */ DEFAULT, /** * A game-mode where the player's directional buttons are inverted */ INVERTED, /** * A game-mode which swaps between normal and inverted controls on a set schedule of a few seconds */ RANDOM_INVERTED, ; /** * Tries to match the correct game-mode according to the given string * * @param gameMode
The game-mode string to match
* @returnThe specified arena game-mode
*/ public static @NotNull DropperArenaGameMode matchGamemode(@NotNull String gameMode) { String sanitized = gameMode.trim().toLowerCase(); if (sanitized.matches("(invert(ed)?|inverse)")) { return DropperArenaGameMode.INVERTED; } else if (sanitized.matches("rand(om)?")) { return DropperArenaGameMode.RANDOM_INVERTED; } else { return DropperArenaGameMode.DEFAULT; } } @NotNull @Override public MapThe data to deserialize
* @returnThe deserialized arena game-mode
*/ @SuppressWarnings("unused") public static DropperArenaGameMode deserialize(Map