package net.knarcraft.minigames.arena; import net.knarcraft.minigames.MiniGames; import net.knarcraft.minigames.config.Message; import net.knarcraft.minigames.container.PlaceholderContainer; import net.knarcraft.minigames.property.RecordResult; import net.knarcraft.minigames.util.PlayerTeleporter; import org.bukkit.Location; import org.bukkit.entity.Player; import org.jetbrains.annotations.NotNull; public abstract class AbstractArenaSession implements ArenaSession { private final @NotNull Arena arena; private final @NotNull ArenaGameMode gameMode; private final @NotNull Player player; protected int deaths; protected final long startTime; protected PlayerEntryState entryState; /** * Instantiates a new abstract arena session * * @param arena

The arena that's being played in

* @param player

The player playing the arena

* @param gameMode

The game-mode

*/ public AbstractArenaSession(@NotNull Arena arena, @NotNull Player player, @NotNull ArenaGameMode gameMode) { this.arena = arena; this.player = player; this.gameMode = gameMode; this.deaths = 0; this.startTime = System.currentTimeMillis(); } @Override public void triggerQuit(boolean immediately, boolean removeSession) { // Stop this session if (removeSession) { removeSession(); } // Teleport the player out of the arena teleportToExit(immediately); // Make the player visible to everyone MiniGames.getInstance().getPlayerVisibilityManager().showPlayersFor(player); player.sendMessage(Message.SUCCESS_ARENA_QUIT.getMessage()); } /** * Announces a record set by this player * * @param recordResult

The result of the record

* @param type

The type of record set (time or deaths)

*/ protected void announceRecord(@NotNull RecordResult recordResult, @NotNull String type) { if (recordResult == RecordResult.NONE) { return; } // Gets a string representation of the played game-mode String gameModeString = getGameModeString(); Message recordInfoMessage = switch (recordResult) { case WORLD_RECORD -> Message.RECORD_ACHIEVED_GLOBAL; case PERSONAL_BEST -> Message.RECORD_ACHIEVED_PERSONAL; default -> throw new IllegalStateException("Unexpected value: " + recordResult); }; String recordInfo = recordInfoMessage.getPartialMessage("{recordType}", type); PlaceholderContainer placeholderContainer = new PlaceholderContainer().add("{gameMode}", gameModeString); placeholderContainer.add("{recordInfo}", recordInfo); player.sendMessage(Message.SUCCESS_RECORD_ACHIEVED.getMessage(placeholderContainer)); } /** * Registers the player's record if necessary, and prints record information to the player */ protected void registerRecord() { ArenaRecordsRegistry recordsRegistry = this.arena.getData().getRecordRegistries().get(this.gameMode); long timeElapsed = System.currentTimeMillis() - this.startTime; announceRecord(recordsRegistry.registerTimeRecord(this.player.getUniqueId(), timeElapsed), "time"); announceRecord(recordsRegistry.registerDeathRecord(this.player.getUniqueId(), this.deaths), "least deaths"); } /** * Teleports the playing player out of the arena */ protected void teleportToExit(boolean immediately) { // Teleport the player out of the arena Location exitLocation; if (this.arena.getExitLocation() != null) { exitLocation = this.arena.getExitLocation(); } else { exitLocation = this.entryState.getEntryLocation(); } PlayerTeleporter.teleportPlayer(this.player, exitLocation, true, immediately); } /** * Gets the string representation of the session's game-mode * * @return

The string representation

*/ protected abstract String getGameModeString(); /** * Removes this session from current sessions */ protected abstract void removeSession(); }