package net.knarcraft.minigames.arena.reward; import net.knarcraft.minigames.MiniGames; import net.knarcraft.minigames.config.MiniGameMessage; import org.bukkit.Bukkit; import org.bukkit.entity.Player; import org.jetbrains.annotations.NotNull; import java.util.HashMap; import java.util.Map; /** * A reward that executes a specified command when it's granted */ public class CommandReward implements Reward { private final @NotNull String command; /** * Instantiates a new command reward * * @param command

The command to execute when granting this reward

*/ public CommandReward(@NotNull String command) { this.command = command; } @Override public boolean grant(@NotNull Player player) { return Bukkit.dispatchCommand(Bukkit.getServer().getConsoleSender(), replaceNamePlaceholder(player, command)); } @Override public @NotNull String getGrantMessage() { return MiniGames.getInstance().getStringFormatter().replacePlaceholder( MiniGameMessage.SUCCESS_COMMAND_REWARDED, "{command}", command); } @NotNull @Override public Map serialize() { Map data = new HashMap<>(); data.put("command", command); return data; } /** * Replaces the name placeholder in the given input with the given player's name * * @param player

The player whose name should be used

* @param input

The input containing a name placeholder

* @return

The input with the placeholder replaced

*/ private String replaceNamePlaceholder(@NotNull Player player, @NotNull String input) { return input.replaceAll("[<%(\\[{]player[_\\-]?(name)?[>%)\\]}]", player.getName()); } /** * Deserializes the command reward defined in the given data * * @param data

The data to deserialize from

* @return

The deserialized data

*/ @SuppressWarnings("unused") public static CommandReward deserialize(Map data) { return new CommandReward((String) data.get("command")); } }