package net.knarcraft.minigames.arena; import org.bukkit.Location; import org.bukkit.block.Block; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.UUID; /** * An interface describing an arena */ public interface Arena { /** * Gets the name of this arena * * @return
The name of this arena
*/ @NotNull String getArenaName(); /** * Gets the data stored for this arena * * @returnThe stored data
*/ @NotNull ArenaData getData(); /** * Gets the id of this arena * * @returnThis arena's identifier
*/ @NotNull UUID getArenaId(); /** * Gets this arena's sanitized name * * @returnThis arena's sanitized name
*/ @NotNull String getArenaNameSanitized(); /** * Removes the data file belonging to this arena * * @returnTrue if successfully removed
*/ boolean removeData(); /** * Saves this arena's data * * @returnTrue if successfully saved
*/ boolean saveData(); /** * Gets whether standing on the given block should cause a win * * @param blockThe block to check
* @returnTrue if standing on the block will cause a win
*/ boolean willCauseWin(Block block); /** * Gets whether standing on the given block should cause a loss * * @param blockThe block to check
* @returnTrue if standing on the block will cause a loss
*/ boolean willCauseLoss(Block block); /** * Gets whether the win location is a solid block * * @returnTrue if the location is a solid block
*/ boolean winLocationIsSolid(); /** * Gets the location of this arena's spawn * * @returnThis arena's spawn location
*/ @NotNull Location getSpawnLocation(); /** * Gets this arena's exit location * * @returnThis arena's exit location, or null if no such location is set.
*/ @Nullable Location getExitLocation(); }