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 IOExceptionIf unable to write to the file
*/ public static void saveDropperArenaGroups(@NotNull SetThe loaded arena groups
*/ public static @NotNull SetThe arenas to save
* @throws IOExceptionIf unable to write to the file
*/ public static void saveDropperArenas(@NotNull MapThe loaded arenas, or null if the arenas configuration section is missing.
*/ public static @NotNull MapThe configuration section containing arena data
* @returnThe 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 arenaIdThe id to get parkour data for
* @returnEmpty parkour data
*/ private static @NotNull DropperArenaData getEmptyDropperData(@NotNull UUID arenaId) { MapThe 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 arenaIdThe id of the arena to get data for
* @returnThe 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 arenaIdThe id of the arena to remove data for
* @returnTrue 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 arenaIdThe id of the arena to get a data file for
* @returnThe 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 horizontalVelocityThe horizontal velocity to sanitize
* @returnThe sanitized horizontal velocity
*/ private static float sanitizeHorizontalVelocity(float horizontalVelocity) { if (horizontalVelocity < -1) { return -1; } else if (horizontalVelocity > 1) { return 1; } else { return horizontalVelocity; } } }