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 * * @return

The stored data

*/ @NotNull ArenaData getData(); /** * Gets the id of this arena * * @return

This arena's identifier

*/ @NotNull UUID getArenaId(); /** * Gets this arena's sanitized name * * @return

This arena's sanitized name

*/ @NotNull String getArenaNameSanitized(); /** * Removes the data file belonging to this arena * * @return

True if successfully removed

*/ boolean removeData(); /** * Saves this arena's data * * @return

True if successfully saved

*/ boolean saveData(); /** * Gets whether standing on the given block should cause a win * * @param block

The block to check

* @return

True 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 block

The block to check

* @return

True if standing on the block will cause a loss

*/ boolean willCauseLoss(Block block); /** * Gets whether the win location is a solid block * * @return

True if the location is a solid block

*/ boolean winLocationIsSolid(); /** * Gets the location of this arena's spawn * * @return

This arena's spawn location

*/ @NotNull Location getSpawnLocation(); /** * Gets this arena's exit location * * @return

This arena's exit location, or null if no such location is set.

*/ @Nullable Location getExitLocation(); }