package net.knarcraft.minigames.arena; import net.knarcraft.minigames.arena.reward.Reward; import net.knarcraft.minigames.arena.reward.RewardCondition; import org.bukkit.Location; import org.bukkit.Material; import org.bukkit.block.Block; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.Set; import java.util.UUID; /** * An interface describing an arena */ @SuppressWarnings("unused") public interface Arena { /** * Gets the name of this arena * * @return
The name of this arena
*/ @NotNull String getArenaName(); /** * Sets the name of this arena * * @param arenaNameThe new name
* @returnTrue if successfully updated
*/ boolean setName(@NotNull String arenaName); /** * 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 the type of block a player has to hit to win this arena * * @returnThe kind of block players must hit
*/ @NotNull Material getWinBlockType(); /** * Sets the material of the win block type * *The win block type is the type of block a player must hit to win in this arena
* * @param materialThe material to set for the win block type
* @returnTrue if successfully updated
*/ boolean setWinBlockType(@NotNull Material material); /** * 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(@NotNull 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(@NotNull 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(); /** * Sets the spawn location for this arena * * @param newLocationThe new spawn location
* @returnTrue if successfully updated
*/ boolean setSpawnLocation(@Nullable Location newLocation); /** * Gets this arena's exit location * * @returnThis arena's exit location, or null if no such location is set.
*/ @Nullable Location getExitLocation(); /** * Sets the exit location for this arena * * @param newLocationThe new exit location
* @returnTrue if successfully updated
*/ boolean setExitLocation(@Nullable Location newLocation); /** * Adds a reward to this arena * * @param rewardConditionThe condition for the reward to be granted
* @param rewardThe reward to be granted
*/ void addReward(@NotNull RewardCondition rewardCondition, @NotNull Reward reward); /** * Clears this arena's rewards for the given condition * * @param rewardConditionThe reward condition to clear all rewards for
*/ void clearRewards(@NotNull RewardCondition rewardCondition); /** * Gets all rewards for the given reward condition * * @param rewardConditionThe condition to get the rewards for
* @returnAll rewards
*/ @NotNull SetThe maximum amount of players
*/ int getMaxPlayers(); /** * Sets the maximum amount of players that can join this arena at once * * @param newValueThe new maximum amount of players
*/ boolean setMaxPlayers(int newValue); }