package net.knarcraft.minigames.util; import net.knarcraft.minigames.MiniGames; import net.knarcraft.minigames.arena.ArenaGameMode; import net.knarcraft.minigames.arena.ArenaRecordsRegistry; import net.knarcraft.minigames.arena.dropper.DropperArena; import net.knarcraft.minigames.arena.dropper.DropperArenaData; import net.knarcraft.minigames.arena.dropper.DropperArenaGameMode; import net.knarcraft.minigames.arena.dropper.DropperArenaGroup; import net.knarcraft.minigames.arena.dropper.DropperArenaRecordsRegistry; import net.knarcraft.minigames.arena.dropper.DropperArenaStorageKey; import net.knarcraft.minigames.container.SerializableMaterial; import net.knarcraft.minigames.container.SerializableUUID; import org.bukkit.Location; import org.bukkit.Material; 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.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import java.util.UUID; import java.util.logging.Level; import static net.knarcraft.minigames.util.ArenaStorageHelper.getArenaDataFile; /** * A helper class for saving and loading arenas */ public final class DropperArenaStorageHelper { private final static File dataFolder = MiniGames.getInstance().getDataFolder(); private final static String dropperArenasConfigurationSection = "dropperArenas"; private final static String dropperGroupsConfigurationSection = "dropperGroups"; private static final File dropperArenaFile = new File(dataFolder, "dropper_arenas.yml"); private static final File dropperGroupFile = new File(dataFolder, "dropper_groups.yml"); private static final File dropperArenaDataFolder = new File(dataFolder, "dropper_arena_data"); private DropperArenaStorageHelper() { } /** * Saves the given dropper arena groups * * @param arenaGroups

The arena groups to save

* @throws IOException

If unable to write to the file

*/ public static void saveDropperArenaGroups(@NotNull Set arenaGroups) throws IOException { YamlConfiguration configuration = new YamlConfiguration(); ConfigurationSection groupSection = configuration.createSection(dropperGroupsConfigurationSection); for (DropperArenaGroup arenaGroup : arenaGroups) { groupSection.set(arenaGroup.getGroupId().toString(), arenaGroup); } configuration.save(dropperGroupFile); } /** * Loads all existing dropper arena groups * * @return

The loaded arena groups

*/ public static @NotNull Set loadDropperArenaGroups() { YamlConfiguration configuration = YamlConfiguration.loadConfiguration(dropperGroupFile); ConfigurationSection groupSection = configuration.getConfigurationSection(dropperGroupsConfigurationSection); //If no such section exists, it must be the case that there is no data to load if (groupSection == null) { return new HashSet<>(); } Set arenaGroups = new HashSet<>(); for (String sectionName : groupSection.getKeys(false)) { arenaGroups.add((DropperArenaGroup) groupSection.get(sectionName)); } return arenaGroups; } /** * Saves the given arenas * * @param arenas

The arenas to save

* @throws IOException

If unable to write to the file

*/ public static void saveDropperArenas(@NotNull Map arenas) throws IOException { YamlConfiguration configuration = new YamlConfiguration(); ConfigurationSection arenaSection = configuration.createSection(dropperArenasConfigurationSection); for (DropperArena arena : arenas.values()) { //Note: While the arena name is used as the key, as the key has to be sanitized, the un-sanitized arena name // must be stored as well @NotNull ConfigurationSection configSection = arenaSection.createSection(arena.getArenaId().toString()); configSection.set(DropperArenaStorageKey.ID.getKey(), new SerializableUUID(arena.getArenaId())); configSection.set(DropperArenaStorageKey.NAME.getKey(), arena.getArenaName()); configSection.set(DropperArenaStorageKey.SPAWN_LOCATION.getKey(), arena.getSpawnLocation()); configSection.set(DropperArenaStorageKey.EXIT_LOCATION.getKey(), arena.getExitLocation()); configSection.set(DropperArenaStorageKey.PLAYER_VERTICAL_VELOCITY.getKey(), arena.getPlayerVerticalVelocity()); configSection.set(DropperArenaStorageKey.PLAYER_HORIZONTAL_VELOCITY.getKey(), arena.getPlayerHorizontalVelocity()); configSection.set(DropperArenaStorageKey.WIN_BLOCK_TYPE.getKey(), new SerializableMaterial(arena.getWinBlockType())); saveDropperArenaData(arena.getData()); } configuration.save(dropperArenaFile); } /** * Loads all arenas * * @return

The loaded arenas, or null if the arenas configuration section is missing.

*/ public static @NotNull Map loadDropperArenas() { YamlConfiguration configuration = YamlConfiguration.loadConfiguration(dropperArenaFile); ConfigurationSection arenaSection = configuration.getConfigurationSection(dropperArenasConfigurationSection); //If no such section exists, it must be the case that there is no data to load if (arenaSection == null) { return new HashMap<>(); } Map loadedArenas = new HashMap<>(); for (String sectionName : arenaSection.getKeys(false)) { ConfigurationSection configurationSection = arenaSection.getConfigurationSection(sectionName); //I'm not sure whether this could actually happen if (configurationSection == null) { continue; } DropperArena arena = loadDropperArena(configurationSection); if (arena != null) { loadedArenas.put(arena.getArenaId(), arena); } } return loadedArenas; } /** * Loads an arena from the given configuration section * * @param configurationSection

The configuration section containing arena data

* @return

The loaded arena, or null if invalid

*/ private static @Nullable DropperArena loadDropperArena(@NotNull ConfigurationSection configurationSection) { UUID arenaId = ((SerializableUUID) configurationSection.get(DropperArenaStorageKey.ID.getKey(), new SerializableUUID(UUID.randomUUID()))).getRawValue(); String arenaName = configurationSection.getString(DropperArenaStorageKey.NAME.getKey()); Location spawnLocation = (Location) configurationSection.get(DropperArenaStorageKey.SPAWN_LOCATION.getKey()); Location exitLocation = (Location) configurationSection.get(DropperArenaStorageKey.EXIT_LOCATION.getKey()); double verticalVelocity = configurationSection.getDouble(DropperArenaStorageKey.PLAYER_VERTICAL_VELOCITY.getKey()); float horizontalVelocity = sanitizeHorizontalVelocity((float) configurationSection.getDouble( DropperArenaStorageKey.PLAYER_HORIZONTAL_VELOCITY.getKey())); SerializableMaterial winBlockType = (SerializableMaterial) configurationSection.get( DropperArenaStorageKey.WIN_BLOCK_TYPE.getKey()); if (arenaName == null || spawnLocation == null) { MiniGames.log(Level.SEVERE, "Could not load the arena at configuration " + "section " + configurationSection.getName() + ". Please check the dropper_arenas storage file for issues."); return null; } if (winBlockType == null) { winBlockType = new SerializableMaterial(Material.WATER); } // Generate new, empty arena data if not available DropperArenaData arenaData = loadDropperArenaData(arenaId); if (arenaData == null) { MiniGames.log(Level.SEVERE, "Unable to load arena data for dropper arena" + arenaId); arenaData = getEmptyDropperData(arenaId); } return new DropperArena(arenaId, arenaName, spawnLocation, exitLocation, verticalVelocity, horizontalVelocity, winBlockType.getRawValue(), arenaData, MiniGames.getInstance().getDropperArenaHandler()); } /** * Gets empty dropper data * * @param arenaId

The id to get parkour data for

* @return

Empty parkour data

*/ private static @NotNull DropperArenaData getEmptyDropperData(@NotNull UUID arenaId) { Map recordRegistries = new HashMap<>(); Map> playersCompleted = new HashMap<>(); for (ArenaGameMode arenaGameMode : DropperArenaGameMode.values()) { recordRegistries.put(arenaGameMode, new DropperArenaRecordsRegistry(arenaId)); playersCompleted.put(arenaGameMode, new HashSet<>()); } return new DropperArenaData(arenaId, recordRegistries, playersCompleted); } /** * Stores the given arena data to a file * * @param arenaData

The arena data to store

*/ public static void saveDropperArenaData(@NotNull DropperArenaData arenaData) throws IOException { YamlConfiguration configuration = new YamlConfiguration(); configuration.set(DropperArenaStorageKey.DATA.getKey(), arenaData); configuration.save(getDropperArenaDataFile(arenaData.getArenaId())); } /** * Loads arena data for the given arena id * * @param arenaId

The id of the arena to get data for

* @return

The loaded arena data

*/ private static @Nullable DropperArenaData loadDropperArenaData(@NotNull UUID arenaId) { File arenaDataFile = getDropperArenaDataFile(arenaId); YamlConfiguration configuration = YamlConfiguration.loadConfiguration(arenaDataFile); return (DropperArenaData) configuration.get(DropperArenaStorageKey.DATA.getKey()); } /** * Removes data for the arena with the given id * * @param arenaId

The id of the arena to remove data for

* @return

True if the data was successfully removed

*/ public static boolean removeDropperArenaData(@NotNull UUID arenaId) { return getDropperArenaDataFile(arenaId).delete(); } /** * Gets the file used to store the given arena id's data * * @param arenaId

The id of the arena to get a data file for

* @return

The file the arena's data is/should be stored in

*/ private static @NotNull File getDropperArenaDataFile(@NotNull UUID arenaId) { return getArenaDataFile(dropperArenaDataFolder, arenaId); } /** * Sanitizes the given horizontal velocity to make sure it doesn't leave its bounds * * @param horizontalVelocity

The horizontal velocity to sanitize

* @return

The sanitized horizontal velocity

*/ private static float sanitizeHorizontalVelocity(float horizontalVelocity) { if (horizontalVelocity < -1) { return -1; } else if (horizontalVelocity > 1) { return 1; } else { return horizontalVelocity; } } }