package net.knarcraft.dropper.arena; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.HashMap; import java.util.Map; import java.util.UUID; /** * A registry to keep track of which players are playing in which arenas */ public class DropperArenaPlayerRegistry { private final Map arenaPlayers = new HashMap<>(); /** * Registers that the given player has started playing the given dropper arena session * * @param playerId

The id of the player that started playing

* @param arena

The arena session to register

*/ public void registerPlayer(@NotNull UUID playerId, @NotNull DropperArenaSession arena) { this.arenaPlayers.put(playerId, arena); } /** * Removes this player from players currently playing * * @param playerId

The id of the player to remove

*/ public boolean removePlayer(@NotNull UUID playerId) { return this.arenaPlayers.remove(playerId) != null; } /** * 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

*/ public @Nullable DropperArenaSession getArenaSession(@NotNull UUID playerId) { return this.arenaPlayers.getOrDefault(playerId, null); } /** * Removes all active sessions for the given arena * * @param arena

The arena to remove sessions for

*/ public void removeForArena(DropperArena arena) { for (Map.Entry entry : this.arenaPlayers.entrySet()) { if (entry.getValue().getArena() == arena) { // Kick the player gracefully entry.getValue().triggerQuit(false); this.arenaPlayers.remove(entry.getKey()); } } } }