Add missing setPlaceholder methods (#234)

* Add missing setPlaceholder methods
Also includes setBracketPlaceholders and setRelationPlaceholders

* Update PlaceholderAPI.java
This commit is contained in:
Andre_601 2020-04-09 17:37:06 +02:00 committed by GitHub
parent d706469ed8
commit 2caf5f0232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,31 +40,31 @@ import java.util.stream.Collectors;
import static me.clip.placeholderapi.util.Msg.color; import static me.clip.placeholderapi.util.Msg.color;
public class PlaceholderAPI { public class PlaceholderAPI {
private static final Pattern PLACEHOLDER_PATTERN = Pattern.compile("[%]([^%]+)[%]"); private static final Pattern PLACEHOLDER_PATTERN = Pattern.compile("[%]([^%]+)[%]");
private static final Pattern BRACKET_PLACEHOLDER_PATTERN = Pattern.compile("[{]([^{}]+)[}]"); private static final Pattern BRACKET_PLACEHOLDER_PATTERN = Pattern.compile("[{]([^{}]+)[}]");
private static final Pattern RELATIONAL_PLACEHOLDER_PATTERN = Pattern.compile("[%](rel_)([^%]+)[%]"); private static final Pattern RELATIONAL_PLACEHOLDER_PATTERN = Pattern.compile("[%](rel_)([^%]+)[%]");
private static final Map<String, PlaceholderHook> placeholders = new HashMap<>(); private static final Map<String, PlaceholderHook> placeholders = new HashMap<>();
private PlaceholderAPI() { private PlaceholderAPI() {
} }
/** /**
* check if a specific placeholder identifier is currently registered * Check if a specific placeholder identifier is currently registered
* *
* @param identifier to check * @param identifier The identifier to check
* @return true if identifier is already registered * @return true if identifier is already registered
*/ */
public static boolean isRegistered(String identifier) { public static boolean isRegistered(String identifier) {
return getRegisteredIdentifiers().stream().filter(id -> id.equalsIgnoreCase(identifier)) return getRegisteredIdentifiers().stream().filter(id -> id.equalsIgnoreCase(identifier))
.findFirst().orElse(null) != null; .findFirst().orElse(null) != null;
} }
/** /**
* Register a new placeholder hook * Register a new placeholder hook
* *
* @param identifier Identifier of the placeholder -> "%(identifier)_(args...)% * @param identifier Identifier of the placeholder -> "%(identifier)_(args...)%
* @param placeholderHook implementing class that contains the onPlaceholderRequest method which * @param placeholderHook Implementing class that contains the onPlaceholderRequest method which
* is called when a value is needed for the specific placeholder * is called when a value is needed for the specific placeholder
* @return true if the hook was successfully registered, false if there is already a hook * @return true if the hook was successfully registered, false if there is already a hook
* registered for the specified identifier * registered for the specified identifier
@ -72,20 +72,20 @@ public class PlaceholderAPI {
public static boolean registerPlaceholderHook(String identifier, PlaceholderHook placeholderHook) { public static boolean registerPlaceholderHook(String identifier, PlaceholderHook placeholderHook) {
Validate.notNull(identifier, "Identifier can not be null"); Validate.notNull(identifier, "Identifier can not be null");
Validate.notNull(placeholderHook, "Placeholderhook can not be null"); Validate.notNull(placeholderHook, "Placeholderhook can not be null");
if (isRegistered(identifier)) { if (isRegistered(identifier)) {
return false; return false;
} }
placeholders.put(identifier.toLowerCase(), placeholderHook); placeholders.put(identifier.toLowerCase(), placeholderHook);
return true; return true;
} }
/** /**
* unregister a placeholder hook by identifier * Unregister a placeholder hook by identifier
* *
* @param identifier the identifier for the placeholder hook to unregister * @param identifier The identifier for the placeholder hook to unregister
* @return true if the placeholder hook was successfully unregistered, false if there was no * @return true if the placeholder hook was successfully unregistered, false if there was no
* placeholder hook registered for the identifier specified * placeholder hook registered for the identifier specified
*/ */
@ -93,35 +93,35 @@ public class PlaceholderAPI {
Validate.notNull(identifier, "Identifier can not be null"); Validate.notNull(identifier, "Identifier can not be null");
return placeholders.remove(identifier.toLowerCase()) != null; return placeholders.remove(identifier.toLowerCase()) != null;
} }
/** /**
* Get all registered placeholder identifiers * Get all registered placeholder identifiers
* *
* @return all registered placeholder identifiers * @return All registered placeholder identifiers
*/ */
public static Set<String> getRegisteredIdentifiers() { public static Set<String> getRegisteredIdentifiers() {
return ImmutableSet.copyOf(placeholders.keySet()); return ImmutableSet.copyOf(placeholders.keySet());
} }
/** /**
* Get map of registered placeholders * Get map of registered placeholders
* *
* @return copy of the internal placeholder map * @return Copy of the internal placeholder map
*/ */
public static Map<String, PlaceholderHook> getPlaceholders() { public static Map<String, PlaceholderHook> getPlaceholders() {
return ImmutableMap.copyOf(placeholders); return ImmutableMap.copyOf(placeholders);
} }
public static Set<PlaceholderExpansion> getExpansions() { public static Set<PlaceholderExpansion> getExpansions() {
Set<PlaceholderExpansion> set = getPlaceholders().values().stream() Set<PlaceholderExpansion> set = getPlaceholders().values().stream()
.filter(PlaceholderExpansion.class::isInstance).map(PlaceholderExpansion.class::cast) .filter(PlaceholderExpansion.class::isInstance).map(PlaceholderExpansion.class::cast)
.collect(Collectors.toCollection(HashSet::new)); .collect(Collectors.toCollection(HashSet::new));
return ImmutableSet.copyOf(set); return ImmutableSet.copyOf(set);
} }
/** /**
* check if a String contains any PlaceholderAPI placeholders * Check if a String contains any PlaceholderAPI placeholders ({@literal %<identifier>_<params>%}).
* *
* @param text String to check * @param text String to check
* @return true if String contains any registered placeholder identifiers, false otherwise * @return true if String contains any registered placeholder identifiers, false otherwise
@ -129,9 +129,9 @@ public class PlaceholderAPI {
public static boolean containsPlaceholders(String text) { public static boolean containsPlaceholders(String text) {
return text != null && PLACEHOLDER_PATTERN.matcher(text).find(); return text != null && PLACEHOLDER_PATTERN.matcher(text).find();
} }
/** /**
* check if a String contains any PlaceholderAPI bracket placeholders * Check if a String contains any PlaceholderAPI bracket placeholders ({@literal {<identifier>_<params>}}).
* *
* @param text String to check * @param text String to check
* @return true if String contains any registered placeholder identifiers, false otherwise * @return true if String contains any registered placeholder identifiers, false otherwise
@ -139,120 +139,189 @@ public class PlaceholderAPI {
public static boolean containsBracketPlaceholders(String text) { public static boolean containsBracketPlaceholders(String text) {
return text != null && BRACKET_PLACEHOLDER_PATTERN.matcher(text).find(); return text != null && BRACKET_PLACEHOLDER_PATTERN.matcher(text).find();
} }
/** /**
* set placeholders in the list<String> text provided placeholders are matched with the pattern * Translates all placeholders into their corresponding values.
* {<placeholder>} when set with this method * <br>The pattern of a valid placeholder is {@literal {<identifier>_<params>}}.
* *
* @param p Player to parse the placeholders for * @param player Player to parse the placeholders against
* @param text text to set the placeholder values in * @param text List of Strings to set the placeholder values in
* @return modified list with all placeholders set to the corresponding values * @return String containing all translated placeholders
*/ */
public static List<String> setBracketPlaceholders(OfflinePlayer p, List<String> text) { public static List<String> setBracketPlaceholders(OfflinePlayer player, List<String> text) {
return setPlaceholders(p, text, BRACKET_PLACEHOLDER_PATTERN); return setPlaceholders(player, text, BRACKET_PLACEHOLDER_PATTERN, true);
} }
/** /**
* set placeholders in the list<String> text provided placeholders are matched with the pattern * Translates all placeholders into their corresponding values.
* %(identifier)_(params)>% when set with this method * <br>The pattern of a valid placeholder is {@literal {<identifier>_<params>}}.
* *
* @param p Player to parse the placeholders for * @param player Player to parse the placeholders against
* @param text text to parse the placeholder values in * @param text List of Strings to set the placeholder values in
* @return modified list with all placeholders set to the corresponding values * @param colorize If color codes (&[0-1a-fk-o]) should be translated
* @return String containing all translated placeholders
*/ */
public static List<String> setPlaceholders(OfflinePlayer p, List<String> text) { public static List<String> setBracketPlaceholders(OfflinePlayer player, List<String> text, boolean colorize) {
return setPlaceholders(p, text, PLACEHOLDER_PATTERN); return setPlaceholders(player, text, BRACKET_PLACEHOLDER_PATTERN, colorize);
} }
/** /**
* set placeholders in the list<String> text provided placeholders are matched with the pattern * Translates all placeholders into their corresponding values.
* %(identifier)_(params)>% when set with this method * <br>The pattern of a valid placeholder is {@literal %<identifier>_<params>%}.
* *
* @param p Player to parse the placeholders for * @param player Player to parse the placeholders against
* @param text text to parse the placeholder values in * @param text List of Strings to set the placeholder values in
* @return modified list with all placeholders set to the corresponding values * @return String containing all translated placeholders
*/ */
public static List<String> setPlaceholders(OfflinePlayer p, List<String> text, Pattern pattern) { public static List<String> setPlaceholders(OfflinePlayer player, List<String> text) {
if (text == null) { return setPlaceholders(player, text, PLACEHOLDER_PATTERN, true);
}
/**
* Translates all placeholders into their corresponding values.
* <br>The pattern of a valid placeholder is {@literal %<identifier>_<params>%}.
*
* @param player Player to parse the placeholders against
* @param text List of Strings to set the placeholder values in
* @param colorize If color codes (&[0-1a-fk-o]) should be translated
* @return String containing all translated placeholders
*/
public static List<String> setPlaceholders(OfflinePlayer player, List<String> text, boolean colorize) {
return setPlaceholders(player, text, PLACEHOLDER_PATTERN, colorize);
}
/**
* Translates all placeholders into their corresponding values.
* <br>You set the pattern yourself through this method.
*
* @param player Player to parse the placeholders against
* @param text List of Strings to set the placeholder values in
* @param pattern The pattern to match placeholders to. Capture group 1 must contain an underscore separating the
* identifier from the params
* @return String containing all translated placeholders
*/
public static List<String> setPlaceholders(OfflinePlayer player, List<String> text, Pattern pattern) {
return setPlaceholders(player, text, pattern, true);
}
/**
* Translates all placeholders into their corresponding values.
* <br>You set the pattern yourself through this method.
*
* @param player Player to parse the placeholders against
* @param text List of Strings to set the placeholder values in
* @param pattern The pattern to match placeholders to. Capture group 1 must contain an underscore separating the
* identifier from the params
* @param colorize If color codes (&[0-1a-fk-o]) should be translated
* @return String containing all translated placeholders
*/
public static List<String> setPlaceholders(OfflinePlayer player, List<String> text, Pattern pattern, boolean colorize) {
if(text == null) {
return null; return null;
} }
return text.stream().map(line -> setPlaceholders(p, line, pattern)) return text.stream().map(line -> setPlaceholders(player, line, pattern, colorize))
.collect(Collectors.toList()); .collect(Collectors.toList());
} }
/** /**
* set placeholders in the text specified placeholders are matched with the pattern * Translates all placeholders into their corresponding values.
* {<placeholder>} when set with this method * <br>The pattern of a valid placeholder is {@literal {<identifier>_<params>}}.
* *
* @param player Player to parse the placeholders for * @param player Player to parse the placeholders against
* @param text text to parse the placeholder values to * @param text Text to set the placeholder values in
* @return modified text with all placeholders set to the corresponding values * @return String containing all translated placeholders
*/ */
public static String setBracketPlaceholders(OfflinePlayer player, String text) { public static String setBracketPlaceholders(OfflinePlayer player, String text) {
return setPlaceholders(player, text, BRACKET_PLACEHOLDER_PATTERN); return setPlaceholders(player, text, BRACKET_PLACEHOLDER_PATTERN, true);
} }
/** /**
* set placeholders in the text specified placeholders are matched with the pattern * Translates all placeholders into their corresponding values.
* %<(identifier)_(params)>% when set with this method * <br>The pattern of a valid placeholder is {@literal {<identifier>_<params>}}
* *
* @param player Player to parse the placeholders for * @param player Player to parse the placeholders against
* @param text text to parse the placeholder values to * @param text Text to set the placeholder values in
* @return text with all placeholders set to the corresponding values * @param colorize If color codes (&[0-1a-fk-o]) should be translated
* @return String containing all translated placeholders
*/
public static String setBracketPlaceholders(OfflinePlayer player, String text, boolean colorize) {
return setPlaceholders(player, text, BRACKET_PLACEHOLDER_PATTERN, colorize);
}
/**
* Translates all placeholders into their corresponding values.
* <br>The pattern of a valid placeholder is {@literal %<identifier>_<params>%}.
*
* @param player Player to parse the placeholders against
* @param text Text to set the placeholder values in
* @return String containing all translated placeholders
*/ */
public static String setPlaceholders(OfflinePlayer player, String text) { public static String setPlaceholders(OfflinePlayer player, String text) {
return setPlaceholders(player, text, PLACEHOLDER_PATTERN); return setPlaceholders(player, text, PLACEHOLDER_PATTERN);
} }
/** /**
* set placeholders in the text specified placeholders are matched with the pattern * Translates all placeholders into their corresponding values.
* %<(identifier)_(params)>% when set with this method * <br>The pattern of a valid placeholder is {@literal %<identifier>_<params>%}.
* *
* @param player Player to parse the placeholders for * @param player Player to parse the placeholder against
* @param text text to parse the placeholder values to * @param text Text to parse the placeholders in
* @param placeholderPattern the pattern to match placeholders to. Capture group 1 must contain an * @param colorize If color codes (&[0-1a-fk-o]) should be translated
* underscore separating the identifier from the params * @return The text containing the parsed placeholders
* @return text with all placeholders set to the corresponding values
*/ */
public static String setPlaceholders(OfflinePlayer player, String text, Pattern placeholderPattern) { public static String setPlaceholders(OfflinePlayer player, String text, boolean colorize) {
return setPlaceholders(player, text, placeholderPattern, true); return setPlaceholders(player, text, PLACEHOLDER_PATTERN, colorize);
} }
/** /**
* set placeholders in the text specified placeholders are matched with the pattern * Translates all placeholders into their corresponding values.
* %<(identifier)_(params)>% when set with this method * <br>You set the pattern yourself through this method.
* *
* @param player Player to parse the placeholders for * @param player Player to parse the placeholders against
* @param text text to parse the placeholder values to * @param text Text to set the placeholder values in
* @param placeholderPattern the pattern to match placeholders to. Capture group 1 must contain an * @param pattern The pattern to match placeholders to. Capture group 1 must contain an underscore separating the
* @param colorize true/false if color codes should be translated within the output text * identifier from the params
* @return text with all placeholders set to the corresponding values * @return The text containing the parsed placeholders
*/ */
public static String setPlaceholders(OfflinePlayer player, String text, Pattern placeholderPattern, boolean colorize) { public static String setPlaceholders(OfflinePlayer player, String text, Pattern pattern) {
return setPlaceholders(player, text, pattern, true);
}
/**
* Translates all placeholders into their corresponding values.
* <br>You set the pattern yourself through this method.
*
* @param player Player to parse the placeholders against
* @param text Text to set the placeholder values in
* @param pattern The pattern to match placeholders to. Capture group 1 must contain an underscore separating the
* identifier from the params
* @param colorize If color codes (&[0-1a-fk-o]) should be translated
* @return The text containing the parsed placeholders
*/
public static String setPlaceholders(OfflinePlayer player, String text, Pattern pattern, boolean colorize) {
if (text == null) { if (text == null) {
return null; return null;
} }
if (placeholders.isEmpty()) { if (placeholders.isEmpty()) {
return colorize ? color(text) : text; return colorize ? color(text) : text;
} }
Matcher m = placeholderPattern.matcher(text); Matcher m = pattern.matcher(text);
Map<String, PlaceholderHook> hooks = getPlaceholders(); Map<String, PlaceholderHook> hooks = getPlaceholders();
while (m.find()) { while (m.find()) {
String format = m.group(1); String format = m.group(1);
int index = format.indexOf("_"); int index = format.indexOf("_");
if (index <= 0 || index >= format.length()) { if (index <= 0 || index >= format.length()) {
continue; continue;
} }
String identifier = format.substring(0, index).toLowerCase(); String identifier = format.substring(0, index).toLowerCase();
String params = format.substring(index + 1); String params = format.substring(index + 1);
if (hooks.containsKey(identifier)) { if (hooks.containsKey(identifier)) {
String value = hooks.get(identifier).onRequest(player, params); String value = hooks.get(identifier).onRequest(player, params);
if (value != null) { if (value != null) {
@ -260,182 +329,227 @@ public class PlaceholderAPI {
} }
} }
} }
return colorize ? color(text) : text; return colorize ? color(text) : text;
} }
/** /**
* set relational placeholders in the text specified placeholders are matched with the pattern * Translate placeholders in the provided List based on the relation of the two provided players.
* %<rel_(identifier)_(params)>% when set with this method * <br>The pattern of a valid placeholder is {@literal %rel_<identifier>_<param>%}.
* *
* @param one Player to compare * @param one Player to compare
* @param two Player to compare * @param two Player to compare
* @param text text to parse the placeholder values to * @param text text to parse the placeholder values to
* @return text with all relational placeholders set to the corresponding values * @return The text containing the parsed relational placeholders
*/ */
public static List<String> setRelationalPlaceholders(Player one, Player two, List<String> text) { public static List<String> setRelationalPlaceholders(Player one, Player two, List<String> text) {
if (text == null) { return setRelationalPlaceholders(one, two, text, true);
}
/**
* Translate placeholders in the provided list based on the relation of the two provided players.
* <br>The pattern of a valid placeholder is {@literal %rel_<identifier>_<params>%}.
*
* @param one First player to compare
* @param two Second player to compare
* @param text Text to parse the placeholders in
* @param colorize If color codes (&[0-1a-fk-o]) should be translated
* @return The text containing the parsed relational placeholders
*/
public static List<String> setRelationalPlaceholders(Player one, Player two, List<String> text, boolean colorize) {
if(text == null) {
return null; return null;
} }
return text.stream().map(line -> setRelationalPlaceholders(one, two, line)) return text.stream().map(line -> setRelationalPlaceholders(one, two, line, colorize))
.collect(Collectors.toList()); .collect(Collectors.toList());
} }
/** /**
* set relational placeholders in the text specified placeholders are matched with the pattern * set relational placeholders in the text specified placeholders are matched with the pattern
* %<rel_(identifier)_(params)>% when set with this method * %<rel_(identifier)_(params)>% when set with this method
* *
* @param one Player to compare * @param one First player to compare
* @param two Player to compare * @param two Second player to compare
* @param text text to parse the placeholder values to * @param text Text to parse the placeholders in
* @return text with all relational placeholders set to the corresponding values * @return The text containing the parsed relational placeholders
*/ */
public static String setRelationalPlaceholders(Player one, Player two, String text) { public static String setRelationalPlaceholders(Player one, Player two, String text) {
return setRelationalPlaceholders(one,two, text, true); return setRelationalPlaceholders(one,two, text, true);
} }
/** /**
* set relational placeholders in the text specified placeholders are matched with the pattern * set relational placeholders in the text specified placeholders are matched with the pattern
* %<rel_(identifier)_(params)>% when set with this method * %<rel_(identifier)_(params)>% when set with this method
* *
* @param one Player to compare * @param one Player to compare
* @param two Player to compare * @param two Player to compare
* @param text text to parse the placeholder values to * @param text Text to parse the placeholders in
* @param colorize true/false if color codes should be translated within the output text * @param colorize If color codes (&[0-1a-fk-o]) should be translated
* @return text with all relational placeholders set to the corresponding values * @return The text containing the parsed relational placeholders
*/ */
public static String setRelationalPlaceholders(Player one, Player two, String text, boolean colorize) { public static String setRelationalPlaceholders(Player one, Player two, String text, boolean colorize) {
if (text == null) { if (text == null) {
return null; return null;
} }
if (placeholders.isEmpty()) { if (placeholders.isEmpty()) {
return colorize ? color(text) : text; return colorize ? color(text) : text;
} }
Matcher m = RELATIONAL_PLACEHOLDER_PATTERN.matcher(text); Matcher m = RELATIONAL_PLACEHOLDER_PATTERN.matcher(text);
Map<String, PlaceholderHook> hooks = getPlaceholders(); Map<String, PlaceholderHook> hooks = getPlaceholders();
while (m.find()) { while (m.find()) {
String format = m.group(2); String format = m.group(2);
int index = format.indexOf("_"); int index = format.indexOf("_");
if (index <= 0 || index >= format.length()) { if (index <= 0 || index >= format.length()) {
continue; continue;
} }
String identifier = format.substring(0, index).toLowerCase(); String identifier = format.substring(0, index).toLowerCase();
String params = format.substring(index + 1); String params = format.substring(index + 1);
if (hooks.containsKey(identifier)) { if (hooks.containsKey(identifier)) {
if (!(hooks.get(identifier) instanceof Relational)) { if (!(hooks.get(identifier) instanceof Relational)) {
continue; continue;
} }
Relational rel = (Relational) hooks.get(identifier); Relational rel = (Relational) hooks.get(identifier);
String value = rel.onPlaceholderRequest(one, two, params); String value = rel.onPlaceholderRequest(one, two, params);
if (value != null) { if (value != null) {
text = text.replaceAll(Pattern.quote(m.group()), Matcher.quoteReplacement(value)); text = text.replaceAll(Pattern.quote(m.group()), Matcher.quoteReplacement(value));
} }
} }
} }
return colorize ? color(text) : text; return colorize ? color(text) : text;
} }
/** /**
* unregister ALL placeholder hooks that are currently registered * Unregister ALL placeholder hooks that are currently registered
*/ */
protected static void unregisterAll() { protected static void unregisterAll() {
unregisterAllProvidedExpansions(); unregisterAllProvidedExpansions();
placeholders.clear(); placeholders.clear();
} }
/** /**
* unregister all expansions provided by PlaceholderAPI * Unregister all expansions provided by PlaceholderAPI
*/ */
public static void unregisterAllProvidedExpansions() { public static void unregisterAllProvidedExpansions() {
if (placeholders.isEmpty()) { if (placeholders.isEmpty()) {
return; return;
} }
getPlaceholders().forEach((key, value) -> { getPlaceholders().forEach((key, value) -> {
if (value instanceof PlaceholderExpansion) { if (value instanceof PlaceholderExpansion) {
PlaceholderExpansion ex = (PlaceholderExpansion) value; PlaceholderExpansion ex = (PlaceholderExpansion) value;
if (!ex.persist()) { if (!ex.persist()) {
unregisterExpansion(ex); unregisterExpansion(ex);
} }
} }
}); });
} }
public static boolean registerExpansion(PlaceholderExpansion ex) { public static boolean registerExpansion(PlaceholderExpansion ex) {
ExpansionRegisterEvent ev = new ExpansionRegisterEvent(ex); ExpansionRegisterEvent ev = new ExpansionRegisterEvent(ex);
Bukkit.getPluginManager().callEvent(ev); Bukkit.getPluginManager().callEvent(ev);
if (ev.isCancelled()) { if (ev.isCancelled()) {
return false; return false;
} }
return registerPlaceholderHook(ex.getIdentifier(), ex); return registerPlaceholderHook(ex.getIdentifier(), ex);
} }
public static boolean unregisterExpansion(PlaceholderExpansion ex) { public static boolean unregisterExpansion(PlaceholderExpansion ex) {
if (unregisterPlaceholderHook(ex.getIdentifier())) { if (unregisterPlaceholderHook(ex.getIdentifier())) {
Bukkit.getPluginManager().callEvent(new ExpansionUnregisterEvent(ex)); Bukkit.getPluginManager().callEvent(new ExpansionUnregisterEvent(ex));
return true; return true;
} }
return false; return false;
} }
/**
* Gets the placeholder pattern for the default placeholders.
*
* @return The pattern for {@literal %<identifier>_<params>%}
*/
public static Pattern getPlaceholderPattern() { public static Pattern getPlaceholderPattern() {
return PLACEHOLDER_PATTERN; return PLACEHOLDER_PATTERN;
} }
/**
* Gets the placeholder pattern for the bracket placeholders.
*
* @return The pattern for {@literal {<identifier>_<params>}}
*/
public static Pattern getBracketPlaceholderPattern() { public static Pattern getBracketPlaceholderPattern() {
return BRACKET_PLACEHOLDER_PATTERN; return BRACKET_PLACEHOLDER_PATTERN;
} }
/**
* Gets the placeholder pattern for the relational placeholders.
*
* @return The pattern for {@literal %rel_<identifier>_<params>%}
*/
public static Pattern getRelationalPlaceholderPattern() { public static Pattern getRelationalPlaceholderPattern() {
return RELATIONAL_PLACEHOLDER_PATTERN; return RELATIONAL_PLACEHOLDER_PATTERN;
} }
@Deprecated @Deprecated
public static Set<String> getRegisteredPlaceholderPlugins() { public static Set<String> getRegisteredPlaceholderPlugins() {
return getRegisteredIdentifiers(); return getRegisteredIdentifiers();
} }
@Deprecated @Deprecated
public static Set<String> getExternalPlaceholderPlugins() { public static Set<String> getExternalPlaceholderPlugins() {
return null; return null;
} }
@Deprecated @Deprecated
public static boolean registerPlaceholderHook(Plugin plugin, PlaceholderHook placeholderHook) { public static boolean registerPlaceholderHook(Plugin plugin, PlaceholderHook placeholderHook) {
return plugin != null && registerPlaceholderHook(plugin.getName(), placeholderHook); return plugin != null && registerPlaceholderHook(plugin.getName(), placeholderHook);
} }
@Deprecated @Deprecated
public static boolean unregisterPlaceholderHook(Plugin plugin) { public static boolean unregisterPlaceholderHook(Plugin plugin) {
return plugin != null && unregisterPlaceholderHook(plugin.getName()); return plugin != null && unregisterPlaceholderHook(plugin.getName());
} }
public static String setPlaceholders(Player p, String text) { public static String setPlaceholders(Player player, String text) {
return setPlaceholders(p, text, PLACEHOLDER_PATTERN); return setPlaceholders(player, text, PLACEHOLDER_PATTERN, true);
} }
public static List<String> setPlaceholders(Player p, List<String> text) { public static String setPlaceholders(Player player, String text, boolean colorize) {
return setPlaceholders(p, text, PLACEHOLDER_PATTERN); return setPlaceholders(player, text, PLACEHOLDER_PATTERN, colorize);
} }
public static String setBracketPlaceholders(Player p, String text) { public static List<String> setPlaceholders(Player player, List<String> text) {
return setPlaceholders(p, text, BRACKET_PLACEHOLDER_PATTERN); return setPlaceholders(player, text, PLACEHOLDER_PATTERN, true);
} }
public static List<String> setBracketPlaceholders(Player p, List<String> text) { public static List<String> setPlaceholders(Player player, List<String> text, boolean colorize) {
return setPlaceholders(p, text, BRACKET_PLACEHOLDER_PATTERN); return setPlaceholders(player, text, PLACEHOLDER_PATTERN, colorize);
}
public static String setBracketPlaceholders(Player player, String text) {
return setPlaceholders(player, text, BRACKET_PLACEHOLDER_PATTERN, true);
}
public static String setBracketPlaceholders(Player player, String text, boolean colorize) {
return setPlaceholders(player, text, BRACKET_PLACEHOLDER_PATTERN, colorize);
}
public static List<String> setBracketPlaceholders(Player player, List<String> text) {
return setPlaceholders(player, text, BRACKET_PLACEHOLDER_PATTERN, true);
}
public static List<String> setBracketPlaceholders(Player player, List<String> text, boolean colorize) {
return setPlaceholders(player, text, BRACKET_PLACEHOLDER_PATTERN, colorize);
} }
} }