package net.knarcraft.dropper.arena; import net.knarcraft.dropper.property.ArenaGameMode; import org.bukkit.GameMode; import org.bukkit.Location; import org.bukkit.entity.Player; import org.jetbrains.annotations.NotNull; /** * The state of a player before entering a dropper arena */ public class PlayerEntryState { private final Player player; private final Location entryLocation; private final boolean originalIsFlying; private final float originalFlySpeed; private final GameMode originalGameMode; private final boolean originalAllowFlight; private final boolean originalInvulnerable; private final boolean originalIsSwimming; private final ArenaGameMode arenaGameMode; /** * Instantiates a new player state * * @param player
The player whose state should be stored
*/ public PlayerEntryState(@NotNull Player player, @NotNull ArenaGameMode arenaGameMode) { this.player = player; this.entryLocation = player.getLocation().clone(); this.originalFlySpeed = player.getFlySpeed(); this.originalIsFlying = player.isFlying(); this.originalGameMode = player.getGameMode(); this.originalAllowFlight = player.getAllowFlight(); this.originalInvulnerable = player.isInvulnerable(); this.originalIsSwimming = player.isSwimming(); this.arenaGameMode = arenaGameMode; } /** * Sets the state of the stored player to the state used by arenas * * @param horizontalVelocityThe horizontal velocity to apply to the player
*/ public void setArenaState(float horizontalVelocity) { this.player.setAllowFlight(true); this.player.setFlying(true); this.player.setGameMode(GameMode.ADVENTURE); this.player.setSwimming(false); // If playing on the inverted game-mode, negate the horizontal velocity to swap the controls if (arenaGameMode == ArenaGameMode.INVERTED) { this.player.setFlySpeed(-horizontalVelocity); } else { this.player.setFlySpeed(horizontalVelocity); } } /** * Restores the stored state for the stored player */ public void restore() { this.player.setFlying(this.originalIsFlying); this.player.setGameMode(this.originalGameMode); this.player.setAllowFlight(this.originalAllowFlight); this.player.setFlySpeed(this.originalFlySpeed); this.player.setInvulnerable(this.originalInvulnerable); this.player.setSwimming(this.originalIsSwimming); } /** * Gets the location the player entered from * * @returnThe location the player entered from
*/ public Location getEntryLocation() { return this.entryLocation; } }