package net.knarcraft.minigames.util; import net.knarcraft.minigames.MiniGames; import net.knarcraft.minigames.arena.PlayerEntryState; import org.bukkit.configuration.file.YamlConfiguration; import org.jetbrains.annotations.NotNull; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.UUID; import java.util.logging.Level; /** * A helper class for dealing with arena storage */ public final class ArenaStorageHelper { private ArenaStorageHelper() { } /** * Stores the given entry states to disk * * @param key
The key specifying the correct entry state file
* @param entryStatesThe entry states to save
*/ public static void storeArenaPlayerEntryStates(String key, SetThe key specifying the correct entry state file
* @returnThe previously saved entry states
*/ public static SetThe root directory for the file
* @param arenaIdThe id of the arena to get a data file for
* @returnThe file the arena's data is/should be stored in
*/ public static @NotNull File getArenaDataFile(File root, @NotNull UUID arenaId) { File arenaDataFile = new File(root, arenaId + ".yml"); if (!root.exists() && !root.mkdirs()) { MiniGames.log(Level.SEVERE, "Unable to create the arena data directories"); } return arenaDataFile; } }