mirror of
https://gitlab.com/phoenix-dvpmt/mmoitems.git
synced 2025-01-21 09:21:21 +01:00
<tier-color-cleaned> fixed
This commit is contained in:
parent
ecf8fda224
commit
077a4ce0ef
@ -12,6 +12,7 @@ import net.Indyuce.mmoitems.stat.type.GemStoneStat;
|
||||
import net.Indyuce.mmoitems.stat.type.NameData;
|
||||
import net.Indyuce.mmoitems.stat.type.StatHistory;
|
||||
import net.Indyuce.mmoitems.stat.type.StringStat;
|
||||
import net.Indyuce.mmoitems.util.ColorUtils;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
@ -19,90 +20,104 @@ import org.jetbrains.annotations.Nullable;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class DisplayName extends StringStat implements GemStoneStat {
|
||||
private final String[] cleanFilter = {ChatColor.BOLD.toString(), ChatColor.ITALIC.toString(), ChatColor.UNDERLINE.toString(), ChatColor.STRIKETHROUGH.toString(), ChatColor.MAGIC.toString()};
|
||||
|
||||
public DisplayName() {
|
||||
super("NAME", VersionMaterial.OAK_SIGN.toMaterial(), "Display Name", new String[] { "The item display name." },
|
||||
new String[] { "all" });
|
||||
}
|
||||
public DisplayName() {
|
||||
super("NAME", VersionMaterial.OAK_SIGN.toMaterial(), "Display Name", new String[]{"The item display name."},
|
||||
new String[]{"all"});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void whenApplied(@NotNull ItemStackBuilder item, @NotNull StringData data) {
|
||||
@Override
|
||||
public void whenApplied(@NotNull ItemStackBuilder item, @NotNull StringData data) {
|
||||
final ItemTier tier = item.getMMOItem().getTier();
|
||||
|
||||
// Bake
|
||||
String format = data.toString();
|
||||
// Bake
|
||||
String format = data.toString()
|
||||
.replace("<tier-name>", tier != null ? ChatColor.stripColor(tier.getName()) : "")
|
||||
.replace("<tier-color>", tier != null ? ChatColor.getLastColors(tier.getName()) : "&f")
|
||||
.replace("<tier-color-cleaned>", tier != null ? ColorUtils.stripDecoration(ChatColor.getLastColors(tier.getName())) : "&f");
|
||||
|
||||
ItemTier tier = item.getMMOItem().getTier();
|
||||
format = format.replace("<tier-name>", tier != null ? ChatColor.stripColor(tier.getName()) : "");
|
||||
format = format.replace("<tier-color>", tier != null ? ChatColor.getLastColors(tier.getName()) : "&f");
|
||||
if (tier != null)
|
||||
for (String filter : cleanFilter)
|
||||
if (ChatColor.getLastColors(tier.getName()).contains(filter))
|
||||
format = format.replace("<tier-color-cleaned>", ChatColor.getLastColors(tier.getName().replace(filter, "")));
|
||||
if (tier != null) {
|
||||
System.out.println("Format: " + format);
|
||||
System.out.println("Last Colors: " + ChatColor.getLastColors(tier.getName()) + " w: " + ColorUtils.stripDecoration(ChatColor.getLastColors(tier.getName())));
|
||||
System.out.println("===================\n");
|
||||
}
|
||||
|
||||
// Is this upgradable?
|
||||
format = cropUpgrade(format);
|
||||
if (item.getMMOItem().hasUpgradeTemplate()) { format = appendUpgradeLevel(format, item.getMMOItem().getUpgradeLevel()); }
|
||||
// Is this upgradable?
|
||||
format = cropUpgrade(format);
|
||||
if (item.getMMOItem().hasUpgradeTemplate())
|
||||
format = appendUpgradeLevel(format, item.getMMOItem().getUpgradeLevel());
|
||||
|
||||
item.getMeta().setDisplayName(format);
|
||||
item.getMeta().setDisplayName(format);
|
||||
|
||||
// Force Stat History generation
|
||||
StatHistory.from(item.getMMOItem(), this);
|
||||
// Force Stat History generation
|
||||
StatHistory.from(item.getMMOItem(), this);
|
||||
|
||||
// Add NBT
|
||||
item.addItemTag(getAppliedNBT(data));
|
||||
}
|
||||
// Add NBT
|
||||
item.addItemTag(getAppliedNBT(data));
|
||||
}
|
||||
|
||||
@NotNull String cropUpgrade(@NotNull String format) {
|
||||
String suffix = MMOItems.plugin.getConfig().getString("item-upgrading.name-suffix", " &8(&e+#lvl#&8)");
|
||||
if (suffix == null || suffix.isEmpty()) { return format; }
|
||||
@NotNull
|
||||
String cropUpgrade(@NotNull String format) {
|
||||
String suffix = MMOItems.plugin.getConfig().getString("item-upgrading.name-suffix", " &8(&e+#lvl#&8)");
|
||||
if (suffix == null || suffix.isEmpty())
|
||||
return format;
|
||||
|
||||
//MMOItems.getConsole().sendMessage("Level " + upgradeLevel);
|
||||
//MMOItems.getConsole().sendMessage("Format " + format);
|
||||
//MMOItems.getConsole().sendMessage("Level " + upgradeLevel);
|
||||
//MMOItems.getConsole().sendMessage("Format " + format);
|
||||
|
||||
if (suffix != null) {
|
||||
|
||||
// Crop lvl
|
||||
int lvlOFFSET = suffix.indexOf("#lvl#");
|
||||
if (lvlOFFSET < 0) { return format; }
|
||||
String sB4 = suffix.substring(0, lvlOFFSET);
|
||||
String aFt = suffix.substring(lvlOFFSET + "#lvl#".length());
|
||||
String sB4_alt = sB4.replace("+", "-");
|
||||
String aFt_alt = aFt.replace("+", "-");
|
||||
// Crop lvl
|
||||
int lvlOFFSET = suffix.indexOf("#lvl#");
|
||||
if (lvlOFFSET < 0)
|
||||
return format;
|
||||
String sB4 = suffix.substring(0, lvlOFFSET);
|
||||
String aFt = suffix.substring(lvlOFFSET + "#lvl#".length());
|
||||
String sB4_alt = sB4.replace("+", "-");
|
||||
String aFt_alt = aFt.replace("+", "-");
|
||||
|
||||
// Remove it
|
||||
if (format.contains(sB4)) {
|
||||
// Remove it
|
||||
if (format.contains(sB4)) {
|
||||
|
||||
// Get offsets
|
||||
int sB4_offset = format.indexOf(sB4);
|
||||
int aFt_offset = format.lastIndexOf(aFt);
|
||||
// Get offsets
|
||||
int sB4_offset = format.indexOf(sB4);
|
||||
int aFt_offset = format.lastIndexOf(aFt);
|
||||
|
||||
// No after = to completion
|
||||
if (aFt_offset < 0) { aFt_offset = format.length(); } else { aFt_offset += aFt.length(); }
|
||||
// No after = to completion
|
||||
if (aFt_offset < 0) {
|
||||
aFt_offset = format.length();
|
||||
} else {
|
||||
aFt_offset += aFt.length();
|
||||
}
|
||||
|
||||
// Remove that
|
||||
String beforePrefix = format.substring(0, sB4_offset);
|
||||
String afterPrefix = format.substring(aFt_offset);
|
||||
// Remove that
|
||||
String beforePrefix = format.substring(0, sB4_offset);
|
||||
String afterPrefix = format.substring(aFt_offset);
|
||||
|
||||
// Replace
|
||||
format = beforePrefix + afterPrefix; }
|
||||
// Replace
|
||||
format = beforePrefix + afterPrefix;
|
||||
}
|
||||
|
||||
// Remove it
|
||||
if (format.contains(sB4_alt)) {
|
||||
// Remove it
|
||||
if (format.contains(sB4_alt)) {
|
||||
|
||||
// Get offsets
|
||||
int sB4_offset = format.indexOf(sB4_alt);
|
||||
int aFt_offset = format.lastIndexOf(aFt_alt);
|
||||
// Get offsets
|
||||
int sB4_offset = format.indexOf(sB4_alt);
|
||||
int aFt_offset = format.lastIndexOf(aFt_alt);
|
||||
|
||||
// No after = to completion
|
||||
if (aFt_offset < 0) { aFt_offset = format.length(); } else { aFt_offset += aFt_alt.length(); }
|
||||
// No after = to completion
|
||||
if (aFt_offset < 0) {
|
||||
aFt_offset = format.length();
|
||||
} else {
|
||||
aFt_offset += aFt_alt.length();
|
||||
}
|
||||
|
||||
// Remove that
|
||||
String beforePrefix = format.substring(0, sB4_offset);
|
||||
String afterPrefix = format.substring(aFt_offset);
|
||||
// Remove that
|
||||
String beforePrefix = format.substring(0, sB4_offset);
|
||||
String afterPrefix = format.substring(aFt_offset);
|
||||
|
||||
// Replace
|
||||
format = beforePrefix + afterPrefix; }
|
||||
// Replace
|
||||
format = beforePrefix + afterPrefix;
|
||||
}
|
||||
|
||||
/*/ Bake old indices for removal
|
||||
ArrayList<String> oldSuffixii = new ArrayList<>(); boolean negativity = false;
|
||||
@ -122,193 +137,200 @@ public class DisplayName extends StringStat implements GemStoneStat {
|
||||
//MMOItems.getConsole().sendMessage("Edited " + format);
|
||||
} //*/
|
||||
|
||||
//MMOItems.getConsole().sendMessage("Final " + format);
|
||||
}
|
||||
//MMOItems.getConsole().sendMessage("Final " + format);
|
||||
|
||||
return format;
|
||||
}
|
||||
return format;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public static String appendUpgradeLevel(@NotNull String format, int lvl) {
|
||||
String suffix = MMOItems.plugin.getConfig().getString("item-upgrading.name-suffix");
|
||||
if (suffix != null && lvl != 0) {
|
||||
String actSuffix = levelPrefix(suffix, lvl);
|
||||
return format + actSuffix;
|
||||
}
|
||||
@NotNull
|
||||
public static String appendUpgradeLevel(@NotNull String format, int lvl) {
|
||||
String suffix = MMOItems.plugin.getConfig().getString("item-upgrading.name-suffix");
|
||||
if (suffix != null && lvl != 0) {
|
||||
String actSuffix = levelPrefix(suffix, lvl);
|
||||
return format + actSuffix;
|
||||
}
|
||||
return format;
|
||||
}
|
||||
|
||||
return format;
|
||||
}
|
||||
@NotNull
|
||||
public static String levelPrefix(@NotNull String template, int toLevel) {
|
||||
return template
|
||||
.replace("#lvl#", String.valueOf(toLevel))
|
||||
.replace("+-", "-");
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public static String levelPrefix(@NotNull String template, int toLevel) {
|
||||
return template
|
||||
.replace("#lvl#", String.valueOf(toLevel))
|
||||
.replace("+-", "-");
|
||||
}
|
||||
/**
|
||||
* This is not saved as a custom NBT data, instead it is stored as the name of the item itself.
|
||||
* Alas this returns an empty list
|
||||
*/
|
||||
@NotNull
|
||||
@Override
|
||||
public ArrayList<ItemTag> getAppliedNBT(@NotNull StringData data) {
|
||||
|
||||
/**
|
||||
* This is not saved as a custom NBT data, instead it is stored as the name of the item itself.
|
||||
* Alas this returns an empty list
|
||||
*/
|
||||
@NotNull
|
||||
@Override
|
||||
public ArrayList<ItemTag> getAppliedNBT(@NotNull StringData data) {
|
||||
if (data instanceof NameData) {
|
||||
|
||||
if (data instanceof NameData) {
|
||||
ArrayList<ItemTag> tags = new ArrayList<>();
|
||||
|
||||
ArrayList<ItemTag> tags = new ArrayList<>();
|
||||
// Append those
|
||||
tags.add(new ItemTag(getNBTPath(), ((NameData) data).getMainName()));
|
||||
if (((NameData) data).hasPrefixes()) {
|
||||
tags.add(((NameData) data).compressPrefixes(getNBTPath() + "_PRE"));
|
||||
}
|
||||
if (((NameData) data).hasSuffixes()) {
|
||||
tags.add(((NameData) data).compressSuffixes(getNBTPath() + "_SUF"));
|
||||
}
|
||||
|
||||
// Append those
|
||||
tags.add(new ItemTag(getNBTPath(), ((NameData) data).getMainName()));
|
||||
if (((NameData) data).hasPrefixes()) { tags.add(((NameData) data).compressPrefixes(getNBTPath() + "_PRE"));}
|
||||
if (((NameData) data).hasSuffixes()) { tags.add(((NameData) data).compressSuffixes(getNBTPath() + "_SUF"));}
|
||||
return tags;
|
||||
}
|
||||
|
||||
return tags;
|
||||
}
|
||||
// Thats it
|
||||
return new ArrayList<>();
|
||||
}
|
||||
|
||||
// Thats it
|
||||
return new ArrayList<>();
|
||||
}
|
||||
@Override
|
||||
public void whenLoaded(@NotNull ReadMMOItem mmoitem) {
|
||||
|
||||
@Override
|
||||
public void whenLoaded(@NotNull ReadMMOItem mmoitem) {
|
||||
// Get tags
|
||||
ArrayList<ItemTag> relevantTags = new ArrayList<>();
|
||||
boolean stored = false;
|
||||
ItemTag mainName = ItemTag.getTagAtPath(getNBTPath(), mmoitem.getNBT(), SupportedNBTTagValues.STRING);
|
||||
|
||||
// Get tags
|
||||
ArrayList<ItemTag> relevantTags = new ArrayList<>(); boolean stored = false;
|
||||
ItemTag mainName = ItemTag.getTagAtPath(getNBTPath(), mmoitem.getNBT(), SupportedNBTTagValues.STRING);
|
||||
//NME//MMOItems.log("\u00a7b\u00a2\u00a2\u00a2\u00a77 Loading name of \u00a7b" + mmoitem.getType() + " " + mmoitem.getId());
|
||||
|
||||
//NME//MMOItems.log("\u00a7b\u00a2\u00a2\u00a2\u00a77 Loading name of \u00a7b" + mmoitem.getType() + " " + mmoitem.getId());
|
||||
if (mainName != null) {
|
||||
|
||||
if (mainName != null) {
|
||||
// Ah yes
|
||||
ItemTag prefixes = ItemTag.getTagAtPath(getNBTPath() + "_PRE", mmoitem.getNBT(), SupportedNBTTagValues.STRING);
|
||||
ItemTag suffixes = ItemTag.getTagAtPath(getNBTPath() + "_SUF", mmoitem.getNBT(), SupportedNBTTagValues.STRING);
|
||||
relevantTags.add(mainName);
|
||||
relevantTags.add(prefixes);
|
||||
relevantTags.add(suffixes);
|
||||
|
||||
// Ah yes
|
||||
ItemTag prefixes = ItemTag.getTagAtPath(getNBTPath() + "_PRE", mmoitem.getNBT(), SupportedNBTTagValues.STRING);
|
||||
ItemTag suffixes = ItemTag.getTagAtPath(getNBTPath() + "_SUF", mmoitem.getNBT(), SupportedNBTTagValues.STRING);
|
||||
relevantTags.add(mainName);
|
||||
relevantTags.add(prefixes);
|
||||
relevantTags.add(suffixes);
|
||||
// No need to evaluate anvil changes if the item has no display name
|
||||
if (mmoitem.getNBT().getItem().getItemMeta().hasDisplayName()) {
|
||||
stored = true;
|
||||
}
|
||||
|
||||
// No need to evaluate anvil changes if the item has no display name
|
||||
if (mmoitem.getNBT().getItem().getItemMeta().hasDisplayName()) { stored = true; }
|
||||
} else {
|
||||
|
||||
} else {
|
||||
// No need to continue if the item has no display name
|
||||
if (!mmoitem.getNBT().getItem().getItemMeta().hasDisplayName()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// No need to continue if the item has no display name
|
||||
if (!mmoitem.getNBT().getItem().getItemMeta().hasDisplayName()) { return; }
|
||||
//NME//MMOItems.log("\u00a7a\u00a2\u00a2\u00a2\u00a77 Older item, decrypting as main name as:\u00a7f " + cropUpgrade(mmoitem.getNBT().getItem().getItemMeta().getDisplayName()));
|
||||
|
||||
//NME//MMOItems.log("\u00a7a\u00a2\u00a2\u00a2\u00a77 Older item, decrypting as main name as:\u00a7f " + cropUpgrade(mmoitem.getNBT().getItem().getItemMeta().getDisplayName()));
|
||||
// Add sole tag
|
||||
relevantTags.add(new ItemTag(getNBTPath(), cropUpgrade(mmoitem.getNBT().getItem().getItemMeta().getDisplayName())));
|
||||
}
|
||||
|
||||
// Add sole tag
|
||||
relevantTags.add(new ItemTag(getNBTPath(), cropUpgrade(mmoitem.getNBT().getItem().getItemMeta().getDisplayName())));
|
||||
}
|
||||
// Use that
|
||||
NameData bakedData = (NameData) getLoadedNBT(relevantTags);
|
||||
|
||||
// Use that
|
||||
NameData bakedData = (NameData) getLoadedNBT(relevantTags);
|
||||
// Valid?
|
||||
if (bakedData != null) {
|
||||
|
||||
// Valid?
|
||||
if (bakedData != null) {
|
||||
//NME//MMOItems.log("\u00a7e\u00a2\u00a2\u00a2\u00a77 Built:\u00a7f " + bakedData.toString());
|
||||
/*
|
||||
* Suppose we expect an item name with prefixes and suffixes,
|
||||
* well, removing those should leave the bare name, right?
|
||||
*
|
||||
* If the player has renamed their item, this bare name will be somewhat
|
||||
* different, and this is where those changes are updated.
|
||||
*/
|
||||
|
||||
//NME//MMOItems.log("\u00a7e\u00a2\u00a2\u00a2\u00a77 Built:\u00a7f " + bakedData.toString());
|
||||
/*
|
||||
* Suppose we expect an item name with prefixes and suffixes,
|
||||
* well, removing those should leave the bare name, right?
|
||||
*
|
||||
* If the player has renamed their item, this bare name will be somewhat
|
||||
* different, and this is where those changes are updated.
|
||||
*/
|
||||
@Nullable String itemName = null;
|
||||
if (stored) {
|
||||
|
||||
@Nullable String itemName = null;
|
||||
if (stored) {
|
||||
// Could the player have renamed?
|
||||
itemName = mmoitem.getNBT().getItem().getItemMeta().getDisplayName();
|
||||
String colorless = ChatColor.stripColor(itemName);
|
||||
|
||||
// Could the player have renamed?
|
||||
itemName = mmoitem.getNBT().getItem().getItemMeta().getDisplayName();
|
||||
String colorless = ChatColor.stripColor(itemName);
|
||||
//NME//MMOItems.log("\u00a7b\u00a2\u00a2\u00a2\u00a77 Comparing: " + itemName + " | " + colorless);
|
||||
// By player
|
||||
if (!itemName.equals(colorless)) {
|
||||
//NME//MMOItems.log("\u00a7b\u00a2\u00a2\u00a2\u00a77 Not anvil");
|
||||
itemName = null;
|
||||
|
||||
//NME//MMOItems.log("\u00a7b\u00a2\u00a2\u00a2\u00a77 Comparing: " + itemName + " | " + colorless);
|
||||
// By player
|
||||
if (!itemName.equals(colorless)) {
|
||||
//NME//MMOItems.log("\u00a7b\u00a2\u00a2\u00a2\u00a77 Not anvil");
|
||||
itemName = null;
|
||||
} else {
|
||||
//NME//MMOItems.log("\u00a7b\u00a2\u00a2\u00a2\u00a77 Replaced main with \u00a7b " + itemName);
|
||||
bakedData.setString(itemName);
|
||||
}
|
||||
|
||||
} else {
|
||||
//NME//MMOItems.log("\u00a7b\u00a2\u00a2\u00a2\u00a77 Replaced main with \u00a7b " + itemName);
|
||||
bakedData.setString(itemName);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
// Set
|
||||
mmoitem.setData(this, bakedData);
|
||||
|
||||
// Set
|
||||
mmoitem.setData(this, bakedData);
|
||||
// Update in SH. Must happen after setting the data
|
||||
if (stored && itemName != null) {
|
||||
|
||||
// Update in SH. Must happen after setting the data
|
||||
if (stored && itemName != null) {
|
||||
// History not prematurely loaded?
|
||||
if (mmoitem.getStatHistory(this) == null) {
|
||||
|
||||
// History not prematurely loaded?
|
||||
if (mmoitem.getStatHistory(this) == null) {
|
||||
// Also load history :think ing:
|
||||
ItemTag hisTag = ItemTag.getTagAtPath(ItemStackBuilder.history_keyword + getId(), mmoitem.getNBT(), SupportedNBTTagValues.STRING);
|
||||
|
||||
// Also load history :think ing:
|
||||
ItemTag hisTag = ItemTag.getTagAtPath(ItemStackBuilder.history_keyword + getId(), mmoitem.getNBT(), SupportedNBTTagValues.STRING);
|
||||
if (hisTag != null) {
|
||||
|
||||
if (hisTag != null) {
|
||||
// Aye
|
||||
StatHistory hist = StatHistory.fromNBTString(mmoitem, (String) hisTag.getValue());
|
||||
|
||||
// Aye
|
||||
StatHistory hist = StatHistory.fromNBTString(mmoitem, (String) hisTag.getValue());
|
||||
// History valid? Record
|
||||
if (hist != null) {
|
||||
|
||||
// History valid? Record
|
||||
if (hist != null) {
|
||||
// Original Data
|
||||
NameData og = (NameData) hist.getOriginalData();
|
||||
|
||||
// Original Data
|
||||
NameData og = (NameData) hist.getOriginalData();
|
||||
// Overwrite
|
||||
og.setString(itemName);
|
||||
|
||||
// Overwrite
|
||||
og.setString(itemName);
|
||||
// Load its stat history
|
||||
mmoitem.setStatHistory(this, hist);
|
||||
|
||||
// Load its stat history
|
||||
mmoitem.setStatHistory(this, hist);
|
||||
//NME//MMOItems.log("\u00a7b\u00a2\u00a2\u00a2\u00a77 Name History:");
|
||||
//NME//hist.log();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//NME//MMOItems.log("\u00a7b\u00a2\u00a2\u00a2\u00a77 Name History:");
|
||||
//NME//hist.log();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@Nullable
|
||||
@Override
|
||||
public StringData getLoadedNBT(@NotNull ArrayList<ItemTag> storedTags) {
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public StringData getLoadedNBT(@NotNull ArrayList<ItemTag> storedTags) {
|
||||
// You got a double right
|
||||
ItemTag tg = ItemTag.getTagAtPath(getNBTPath(), storedTags);
|
||||
|
||||
// You got a double right
|
||||
ItemTag tg = ItemTag.getTagAtPath(getNBTPath(), storedTags);
|
||||
// Found righ
|
||||
if (tg != null) {
|
||||
|
||||
// Found righ
|
||||
if (tg != null) {
|
||||
// Get number
|
||||
String value = (String) tg.getValue();
|
||||
|
||||
// Get number
|
||||
String value = (String) tg.getValue();
|
||||
// That's it
|
||||
NameData nd = new NameData(value);
|
||||
|
||||
// That's it
|
||||
NameData nd = new NameData(value);
|
||||
nd.readPrefixes(ItemTag.getTagAtPath(getNBTPath() + "_PRE", storedTags));
|
||||
nd.readSuffixes(ItemTag.getTagAtPath(getNBTPath() + "_SUF", storedTags));
|
||||
|
||||
nd.readPrefixes(ItemTag.getTagAtPath(getNBTPath() + "_PRE", storedTags));
|
||||
nd.readSuffixes(ItemTag.getTagAtPath(getNBTPath() + "_SUF", storedTags));
|
||||
return nd;
|
||||
}
|
||||
|
||||
return nd;
|
||||
}
|
||||
// Fail
|
||||
return null;
|
||||
}
|
||||
|
||||
// Fail
|
||||
return null;
|
||||
}
|
||||
@NotNull
|
||||
@Override
|
||||
public StringData getClearStatData() {
|
||||
return new NameData("");
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public StringData getClearStatData() {
|
||||
return new NameData("");
|
||||
}
|
||||
|
||||
@Override
|
||||
public StringData whenInitialized(Object object) {
|
||||
return new NameData(object.toString());
|
||||
}
|
||||
@Override
|
||||
public StringData whenInitialized(Object object) {
|
||||
return new NameData(object.toString());
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,21 @@
|
||||
package net.Indyuce.mmoitems.util;
|
||||
|
||||
import org.bukkit.ChatColor;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/**
|
||||
* mmoitems
|
||||
* 09/11/2022
|
||||
*
|
||||
* @author Roch Blondiaux (Kiwix).
|
||||
*/
|
||||
public class ColorUtils {
|
||||
|
||||
private static final Pattern STRIP_DECORATION_PATTERN = Pattern.compile("(?i)" + '§' + "[K-O]");
|
||||
|
||||
public static @NotNull String stripDecoration(@NotNull String input) {
|
||||
return "%s%s".formatted(ChatColor.RESET, STRIP_DECORATION_PATTERN.matcher(input).replaceAll("")).replace('§', '&');
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user