package net.knarcraft.minigames.arena.dropper; import net.knarcraft.minigames.arena.AbstractPlayerEntryState; import net.knarcraft.minigames.container.SerializableUUID; import org.bukkit.GameMode; import org.bukkit.Location; import org.bukkit.entity.Player; import org.jetbrains.annotations.NotNull; import java.util.Map; import java.util.UUID; /** * The state of a player before entering a dropper arena */ public class DropperPlayerEntryState extends AbstractPlayerEntryState { private final float originalFlySpeed; private final float horizontalVelocity; private final DropperArenaGameMode arenaGameMode; /** * Instantiates a new player state * * @param player
The player whose state should be stored
*/ public DropperPlayerEntryState(@NotNull Player player, @NotNull DropperArenaGameMode arenaGameMode, float horizontalVelocity) { super(player); this.originalFlySpeed = player.getFlySpeed(); this.arenaGameMode = arenaGameMode; this.horizontalVelocity = horizontalVelocity; } /** * Instantiates a new parkour player entry state * * @param playerIdThe id of the player whose state this should keep track of
* @param entryLocationThe location the player entered from
* @param originalIsFlyingWhether the player was flying before entering the arena
* @param originalGameModeThe game-mode of the player before entering the arena
* @param originalAllowFlightWhether the player was allowed flight before entering the arena
* @param originalInvulnerableWhether the player was invulnerable before entering the arena
* @param originalIsSwimmingWhether the player was swimming before entering the arena
* @param originalFlySpeedThe fly-speed of the player before entering the arena
* @param horizontalVelocityThe horizontal velocity of the player before entering the arena
*/ public DropperPlayerEntryState(@NotNull UUID playerId, Location entryLocation, boolean originalIsFlying, GameMode originalGameMode, boolean originalAllowFlight, boolean originalInvulnerable, boolean originalIsSwimming, float originalFlySpeed, float horizontalVelocity, DropperArenaGameMode arenaGameMode) { super(playerId, entryLocation, originalIsFlying, originalGameMode, originalAllowFlight, originalInvulnerable, originalIsSwimming); this.originalFlySpeed = originalFlySpeed; this.horizontalVelocity = horizontalVelocity; this.arenaGameMode = arenaGameMode; } @Override public void setArenaState() { Player player = getPlayer(); if (player == null) { return; } player.setAllowFlight(true); player.setFlying(true); player.setGameMode(GameMode.ADVENTURE); player.setSwimming(false); // If playing on the inverted game-mode, negate the horizontal velocity to swap the controls if (this.arenaGameMode == DropperArenaGameMode.INVERTED) { player.setFlySpeed(-this.horizontalVelocity); } else { player.setFlySpeed(this.horizontalVelocity); } } @Override public boolean restore() { Player player = getPlayer(); if (player == null) { return false; } this.restore(player); return true; } @Override public void restore(@NotNull Player player) { super.restore(player); player.setFlySpeed(this.originalFlySpeed); } @NotNull @Override public MapThe data to deserialize
*/ @SuppressWarnings("unused") public static DropperPlayerEntryState deserialize(Map