package net.knarcraft.minigames.arena; import net.knarcraft.minigames.MiniGames; import net.knarcraft.minigames.container.SerializableUUID; import net.knarcraft.minigames.property.PersistentDataKey; import org.bukkit.Bukkit; import org.bukkit.GameMode; import org.bukkit.Location; import org.bukkit.NamespacedKey; import org.bukkit.entity.Player; import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.meta.ItemMeta; import org.bukkit.persistence.PersistentDataType; import org.jetbrains.annotations.NotNull; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Objects; import java.util.Set; import java.util.UUID; import java.util.logging.Level; /** * An abstract representation of a player's entry state */ public abstract class AbstractPlayerEntryState implements PlayerEntryState { protected final UUID playerId; private final Location entryLocation; private final boolean originalIsFlying; private final GameMode originalGameMode; private final boolean originalAllowFlight; private final boolean originalInvulnerable; private final boolean originalIsSwimming; private final boolean originalCollideAble; /** * Instantiates a new abstract player entry state * * @param player
The player whose state this should keep track of
*/ public AbstractPlayerEntryState(@NotNull Player player) { this.playerId = player.getUniqueId(); this.entryLocation = player.getLocation().clone(); this.originalIsFlying = player.isFlying(); this.originalGameMode = player.getGameMode(); this.originalAllowFlight = player.getAllowFlight(); this.originalInvulnerable = player.isInvulnerable(); this.originalIsSwimming = player.isSwimming(); this.originalCollideAble = player.isCollidable(); } /** * Instantiates a new abstract 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 originalCollideAbleWhether the player was collide-able before entering the arena
*/ public AbstractPlayerEntryState(@NotNull UUID playerId, Location entryLocation, boolean originalIsFlying, GameMode originalGameMode, boolean originalAllowFlight, boolean originalInvulnerable, boolean originalIsSwimming, boolean originalCollideAble) { this.playerId = playerId; this.entryLocation = entryLocation; this.originalIsFlying = originalIsFlying; this.originalGameMode = originalGameMode; this.originalAllowFlight = originalAllowFlight; this.originalInvulnerable = originalInvulnerable; this.originalIsSwimming = originalIsSwimming; this.originalCollideAble = originalCollideAble; } @Override public @NotNull UUID getPlayerId() { return this.playerId; } @Override public boolean restore() { Player player = getPlayer(); if (player == null) { return false; } restore(player); return true; } @Override public void restore(@NotNull Player player) { player.setCollidable(this.originalCollideAble); player.setAllowFlight(this.originalAllowFlight); player.setFlying(player.getAllowFlight() && this.originalIsFlying); player.setGameMode(this.originalGameMode); player.setInvulnerable(this.originalInvulnerable); player.setSwimming(this.originalIsSwimming); removeMenuItem(player); } @Override public Location getEntryLocation() { return this.entryLocation; } /** * Gets the player this entry state belongs to * * @returnThe player, or null if not currently online
*/ protected Player getPlayer() { Player player = Bukkit.getOfflinePlayer(this.playerId).getPlayer(); if (player == null) { MiniGames.log(Level.WARNING, "Unable to change state for player with id " + this.playerId + " because the player was not found on the server."); } return player; } @NotNull @Override public MapThe player to remove the menu item from
*/ private void removeMenuItem(Player player) { SetThe serialization data to look through
* @param keyThe key to get
* @returnThe boolean value of the key
*/ protected static boolean getBoolean(Map