/* * This file is part of PlaceholderAPI * * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * PlaceholderAPI is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package me.clip.placeholderapi; import com.google.common.collect.ImmutableMap; import me.clip.placeholderapi.expansion.PlaceholderExpansion; import me.clip.placeholderapi.replacer.CharsReplacer; import me.clip.placeholderapi.replacer.RegexReplacer; import me.clip.placeholderapi.replacer.Replacer; import org.bukkit.OfflinePlayer; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; public interface Values { String SMALL_TEXT = "My name is %player_name%"; String LARGE_TEXT = "My name is %player_name% and my location is (%player_x%, %player_y%, %player_z%), this placeholder is invalid %server_name%"; ImmutableMap PLACEHOLDERS = ImmutableMap.builder() .put("player", new MockPlayerPlaceholderExpansion()) .build(); Replacer CHARS_REPLACER = new CharsReplacer(Replacer.Closure.PERCENT); Replacer REGEX_REPLACER = new RegexReplacer(Replacer.Closure.PERCENT); final class MockPlayerPlaceholderExpansion extends PlaceholderExpansion { public static final String PLAYER_X = "10"; public static final String PLAYER_Y = "20"; public static final String PLAYER_Z = "30"; public static final String PLAYER_NAME = "Sxtanna"; @NotNull @Override public String getIdentifier() { return "player"; } @NotNull @Override public String getAuthor() { return "Sxtanna"; } @NotNull @Override public String getVersion() { return "1.0"; } @Override public String onRequest(@Nullable final OfflinePlayer player, @NotNull final String params) { final String[] parts = params.split("_"); if (parts.length == 0) { return null; } switch (parts[0]) { case "name": return PLAYER_NAME; case "x": return PLAYER_X; case "y": return PLAYER_Y; case "z": return PLAYER_Z; } return null; } } }