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 arenaName

The new name

* @return

True if successfully updated

*/ boolean setName(@NotNull String arenaName); /** * 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 the type of block a player has to hit to win this arena * * @return

The 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 material

The material to set for the win block type

* @return

True if successfully updated

*/ boolean setWinBlockType(@NotNull Material material); /** * 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(@NotNull 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(@NotNull 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(); /** * Sets the spawn location for this arena * * @param newLocation

The new spawn location

* @return

True if successfully updated

*/ boolean setSpawnLocation(@Nullable Location newLocation); /** * Gets this arena's exit location * * @return

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

*/ @Nullable Location getExitLocation(); /** * Sets the exit location for this arena * * @param newLocation

The new exit location

* @return

True if successfully updated

*/ boolean setExitLocation(@Nullable Location newLocation); /** * Adds a reward to this arena * * @param rewardCondition

The condition for the reward to be granted

* @param reward

The reward to be granted

*/ void addReward(@NotNull RewardCondition rewardCondition, @NotNull Reward reward); /** * Clears this arena's rewards for the given condition * * @param rewardCondition

The reward condition to clear all rewards for

*/ void clearRewards(@NotNull RewardCondition rewardCondition); /** * Gets all rewards for the given reward condition * * @param rewardCondition

The condition to get the rewards for

* @return

All rewards

*/ @NotNull Set getRewards(RewardCondition rewardCondition); /** * Gets the maximum amount of players that can join this arena at once * * @return

The maximum amount of players

*/ int getMaxPlayers(); /** * Sets the maximum amount of players that can join this arena at once * * @param newValue

The new maximum amount of players

*/ boolean setMaxPlayers(int newValue); }