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 MapThe player whose name should be used
* @param inputThe input containing a name placeholder
* @returnThe 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 dataThe data to deserialize from
* @returnThe deserialized data
*/ @SuppressWarnings("unused") public static CommandReward deserialize(Map