package net.knarcraft.dropper.util; import net.knarcraft.dropper.Dropper; import net.knarcraft.dropper.arena.DropperArena; import net.knarcraft.dropper.arena.DropperArenaRecordsRegistry; import net.knarcraft.dropper.property.ArenaStorageKey; import org.bukkit.Location; import org.bukkit.configuration.ConfigurationSection; import org.bukkit.configuration.file.YamlConfiguration; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.logging.Level; /** * A helper class for saving and loading arenas */ public final class ArenaStorageHelper { private final static String arenasConfigurationSection = "arenas"; private ArenaStorageHelper() { } /** * Saves the given arenas to the given file * * @param arenas
The arenas to save
* @param arenaFileThe file to save the arenas to
* @throws IOExceptionIf unable to write to the file
*/ public static void saveArenas(@NotNull ListThe file used to store the arenas
* @returnThe loaded arenas, or null if the arenas configuration section is missing.
*/ public static @NotNull ListThe configuration section containing arena data
* @returnThe loaded arena, or null if invalid
*/ private static @Nullable DropperArena loadArena(@NotNull ConfigurationSection configurationSection) { String arenaName = configurationSection.getString(ArenaStorageKey.NAME.getKey()); Location spawnLocation = (Location) configurationSection.get(ArenaStorageKey.SPAWN_LOCATION.getKey()); Location exitLocation = (Location) configurationSection.get(ArenaStorageKey.EXIT_LOCATION.getKey()); double playerVelocity = configurationSection.getDouble(ArenaStorageKey.PLAYER_VELOCITY.getKey()); Integer stage = (Integer) configurationSection.get(ArenaStorageKey.STAGE.getKey()); if (arenaName == null || spawnLocation == null) { Dropper.getInstance().getLogger().log(Level.SEVERE, "Could not load the arena at configuration " + "section " + configurationSection.getName() + ". Please check the arenas storage file for issues."); return null; } //TODO: Load records for this arena return new DropperArena(arenaName, spawnLocation, exitLocation, playerVelocity, stage, new DropperArenaRecordsRegistry()); } /** * Sanitizes an arena name for usage as a YAML key * * @param arenaNameThe arena name to sanitize
* @returnThe sanitized arena name
*/ public static @NotNull String sanitizeArenaName(@NotNull String arenaName) { return arenaName.toLowerCase().trim().replaceAll(" ", "_"); } }