package net.knarcraft.dropper.util; import net.knarcraft.dropper.Dropper; import net.knarcraft.dropper.arena.DropperArena; import net.knarcraft.dropper.arena.DropperArenaData; import net.knarcraft.dropper.arena.DropperArenaRecordsRegistry; import net.knarcraft.dropper.container.SerializableMaterial; import net.knarcraft.dropper.container.SerializableUUID; import net.knarcraft.dropper.property.ArenaStorageKey; 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.UUID; import java.util.logging.Level; /** * A helper class for saving and loading arenas */ public final class ArenaStorageHelper { private final static String arenasConfigurationSection = "arenas"; private static final File arenaFile = new File(Dropper.getInstance().getDataFolder(), "arenas.yml"); private static final File arenaDataFolder = new File(Dropper.getInstance().getDataFolder(), "arena_data"); private ArenaStorageHelper() { } /** * Saves the given arenas to the given file * * @param arenas
The arenas to save
* @throws IOExceptionIf unable to write to the file
*/ public static void saveArenas(@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 loadArena(@NotNull ConfigurationSection configurationSection) { UUID arenaId = ((SerializableUUID) configurationSection.get(ArenaStorageKey.ID.getKey(), new SerializableUUID(UUID.randomUUID()))).uuid(); 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 verticalVelocity = configurationSection.getDouble(ArenaStorageKey.PLAYER_VERTICAL_VELOCITY.getKey()); float horizontalVelocity = sanitizeHorizontalVelocity((float) configurationSection.getDouble( ArenaStorageKey.PLAYER_HORIZONTAL_VELOCITY.getKey())); Integer stage = (Integer) configurationSection.get(ArenaStorageKey.STAGE.getKey()); SerializableMaterial winBlockType = (SerializableMaterial) configurationSection.get( ArenaStorageKey.WIN_BLOCK_TYPE.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; } if (winBlockType == null) { winBlockType = new SerializableMaterial(Material.WATER); } DropperArenaData arenaData = loadArenaData(arenaId); if (arenaData == null) { Dropper.getInstance().getLogger().log(Level.SEVERE, "Unable to load arena data for " + arenaId); arenaData = new DropperArenaData(arenaId, new DropperArenaRecordsRegistry(arenaId), new HashSet<>()); } return new DropperArena(arenaId, arenaName, spawnLocation, exitLocation, verticalVelocity, horizontalVelocity, stage, winBlockType.material(), arenaData); } /** * 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(" ", "_"); } /** * Stores the given arena data to a file * * @param arenaDataThe arena data to store
*/ public static void saveArenaData(@NotNull DropperArenaData arenaData) throws IOException { YamlConfiguration configuration = new YamlConfiguration(); configuration.set(ArenaStorageKey.DATA.getKey(), arenaData); configuration.save(getArenaDataFile(arenaData.arenaId())); } /** * 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 loadArenaData(@NotNull UUID arenaId) { File arenaDataFile = getArenaDataFile(arenaId); YamlConfiguration configuration = YamlConfiguration.loadConfiguration(arenaDataFile); return (DropperArenaData) configuration.get(ArenaStorageKey.DATA.getKey()); } /** * 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 getArenaDataFile(@NotNull UUID arenaId) { File arenaDataFile = new File(arenaDataFolder, arenaId + ".yml"); if (!arenaDataFolder.exists() && !arenaDataFolder.mkdirs()) { Dropper.getInstance().getLogger().log(Level.SEVERE, "Unable to create the arena data directories"); } return arenaDataFile; } /** * 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; } } }