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

* @return

The 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 Map serialize() { Map data = new HashMap<>(); data.put("name", this.name()); return data; } /** * Deserializes the arena game-mode specified by the given data * * @param data

The data to deserialize

* @return

The deserialized arena game-mode

*/ @SuppressWarnings("unused") public static DropperArenaGameMode deserialize(Map data) { return DropperArenaGameMode.valueOf((String) data.get("name")); } @Override public @NotNull DropperArenaGameMode[] getValues() { return DropperArenaGameMode.values(); } }