package net.knarcraft.minigames.arena; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.Set; import java.util.UUID; /** * A registry keeping track of all player sessions for some arenas * * @param

The type of arena this registry stores

*/ public interface ArenaPlayerRegistry { /** * Gets the ids of the players currently playing * * @return

The ids of the playing players

*/ @NotNull Set getPlayingPlayers(); /** * Gets the current entry state for the given player * * @param playerId

The id of the player to get an entry state for

* @return

The entry state of the player, or null if not found

*/ @Nullable PlayerEntryState getEntryState(@NotNull UUID playerId); /** * Registers that the given player has started playing the given dropper arena session * * @param playerId

The id of the player that started playing

* @param arenaSession

The arena session to register

*/ void registerPlayer(@NotNull UUID playerId, @NotNull ArenaSession arenaSession); /** * Removes this player from players currently playing * * @param playerId

The id of the player to remove

* @param restoreState

Whether to restore the state of the player as part of the removal

*/ boolean removePlayer(@NotNull UUID playerId, boolean restoreState); /** * Gets the player's active dropper arena session * * @param playerId

The id of the player to get arena for

* @return

The player's active arena session, or null if not currently playing

*/ @Nullable ArenaSession getArenaSession(@NotNull UUID playerId); /** * Removes all active sessions for the given arena * * @param arena

The arena to remove sessions for

* @param immediately

Whether to immediately teleport the player

*/ void removeForArena(K arena, boolean immediately); }