aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAscynx <78341107+Ascynx@users.noreply.github.com>2022-10-22 04:33:57 +0200
committerGitHub <noreply@github.com>2022-10-22 02:33:57 +0000
commita2e1983b47392d7724df78f842ef81bfb6f67d60 (patch)
tree2b21fd64c3093794f82f7414a47dd5deecd42858
parente4d4a7c4179d2359dcdadcc49b38470c9db873e3 (diff)
downloadNotEnoughUpdates-a2e1983b47392d7724df78f842ef81bfb6f67d60.tar.gz
NotEnoughUpdates-a2e1983b47392d7724df78f842ef81bfb6f67d60.tar.bz2
NotEnoughUpdates-a2e1983b47392d7724df78f842ef81bfb6f67d60.zip
Merge pull request #310
* neuec tooltip cache * forgor to remove (W.I.P) * forgot to make it on by default * Format and comment change * Merge branch 'NotEnoughUpdates:master' into enchant-optimisation * Merge remote-tracking branch 'origin/enchant-optimisation' into encha… * Merge branch 'NotEnoughUpdates:master' into enchant-optimisation * bing bong fps gon * Merge branch 'NotEnoughUpdates:master' into enchant-optimisation * remove max book blurb because in theory it will be added to the repo * Merge branch 'master' into enchant-optimisation * Merge branch 'master' into enchant-optimisation * Fixed issues * Moved Custom enchant colour stuff to it's own accordion * Merge branch 'NotEnoughUpdates:master' into enchant-optimisation
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/listener/ItemTooltipListener.java405
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java2
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java21
3 files changed, 292 insertions, 136 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/listener/ItemTooltipListener.java b/src/main/java/io/github/moulberry/notenoughupdates/listener/ItemTooltipListener.java
index d89e886f..1dfd273e 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/listener/ItemTooltipListener.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/listener/ItemTooltipListener.java
@@ -29,6 +29,7 @@ import io.github.moulberry.notenoughupdates.ItemPriceInformation;
import io.github.moulberry.notenoughupdates.NotEnoughUpdates;
import io.github.moulberry.notenoughupdates.core.util.MiscUtils;
import io.github.moulberry.notenoughupdates.core.util.StringUtils;
+import io.github.moulberry.notenoughupdates.miscfeatures.ItemCustomizeManager;
import io.github.moulberry.notenoughupdates.miscfeatures.PetInfoOverlay;
import io.github.moulberry.notenoughupdates.miscgui.GuiEnchantColour;
import io.github.moulberry.notenoughupdates.profileviewer.GuiProfileViewer;
@@ -60,6 +61,7 @@ import java.util.HashSet;
import java.util.List;
import java.util.Locale;
import java.util.Map;
+import java.util.Objects;
import java.util.Set;
import java.util.TreeSet;
import java.util.regex.Matcher;
@@ -79,6 +81,80 @@ public class ItemTooltipListener {
private boolean pressedShiftLast = false;
private int sbaloaded = -1;
+ //region Enchant optimisation
+ private String lastItemUuid;
+
+ public static class EnchantString {
+ final String preEnchantText;
+ final String enchantName;
+
+ final String mod;
+ final String colourCode;
+ final boolean isChroma;
+
+ public EnchantString(String enchant, String preEnchantText, String modifier, String colourCode) {
+ this.preEnchantText = preEnchantText;
+ this.enchantName = enchant;
+ this.mod = modifier;
+ this.colourCode = colourCode;
+ this.isChroma = colourCode.equals("z");
+ }
+
+ private boolean matches(String line) {
+ return line.matches(".*" + preEnchantText + enchantName + ".*");
+ }
+
+ public String applyMods(String line, int lineIndex) {
+ if (!matches(line)) return null;
+
+ if (!isChroma) {
+ return line.replace(preEnchantText + enchantName,
+ "\u00A7" + colourCode + mod + enchantName
+ );
+ } else {
+ //if you couldn't tell, this is for chroma.
+ int newOffset = Minecraft.getMinecraft().fontRendererObj.getStringWidth(preEnchantText + enchantName);
+ return line.replace(
+ preEnchantText + enchantName,
+ Utils.chromaString(enchantName, newOffset / 12f + lineIndex, preEnchantText.matches(".*\\u00A7d.*"))
+ );
+ }
+ }
+}
+
+public static class EnchantLine {
+ final String originalLine;
+ final ArrayList<EnchantString> enchants;
+
+ public EnchantLine(String line, ArrayList<EnchantString> enchants) {
+ this.enchants = enchants;
+ this.originalLine = line;
+ }
+
+ public boolean isSameAsBefore(String line) {
+ return line.equals(originalLine);
+ }
+
+ public String replaceLine(String line, int index) {
+ if (line.equals(originalLine)) {
+ for (EnchantString enchant: enchants) {
+ String modifiedLine = enchant.applyMods(line, index);
+ if (modifiedLine != null) {
+ line = modifiedLine;
+ }
+ }
+ }
+
+ return line;
+ }
+}
+
+ private final ArrayList<EnchantLine> enchantList = new ArrayList<>();
+ private int firstEnchantIndex = -1;
+ private int lastEnchantIndex = -1;
+
+ //endregion
+
public ItemTooltipListener(NotEnoughUpdates neu) {
this.neu = neu;
percentStats.add("bonus_attack_speed");
@@ -175,12 +251,26 @@ public class ItemTooltipListener {
boolean gotToEnchants = false;
boolean passedEnchants = false;
+ boolean foundEnchants = false;
boolean dungeonProfit = false;
- int index = 0;
List<String> newTooltip = new ArrayList<>();
- for (String line : event.toolTip) {
+ String currentUuid = ItemCustomizeManager.getUuidForItem(event.itemStack);
+
+ boolean resetEnchantCache = false;
+ //reset data if cache is off
+ if (!NotEnoughUpdates.INSTANCE.config.misc.cacheItemEnchant) {
+ lastItemUuid = null;
+ firstEnchantIndex = -1;
+ lastEnchantIndex = -1;
+ enchantList.clear();
+ }
+
+ for (int k = 0; k < event.toolTip.size(); k++) {
+ String line = event.toolTip.get(k);
+ boolean thisLineHasEnchants = false;
+
if (line.endsWith(EnumChatFormatting.DARK_GRAY + "Reforge Stone") &&
NotEnoughUpdates.INSTANCE.config.tooltipTweaks.showReforgeStats) {
JsonObject reforgeStones = Constants.REFORGESTONES;
@@ -327,7 +417,7 @@ public class ItemTooltipListener {
} else if (line.contains("\u00A7cR\u00A76a\u00A7ei\u00A7an\u00A7bb\u00A79o\u00A7dw\u00A79 Rune")) {
line = line.replace(
"\u00A7cR\u00A76a\u00A7ei\u00A7an\u00A7bb\u00A79o\u00A7dw\u00A79 Rune",
- Utils.chromaString("Rainbow Rune", index, false) + EnumChatFormatting.BLUE
+ Utils.chromaString("Rainbow Rune", k, false) + EnumChatFormatting.BLUE
);
} else if (hasEnchantments) {
if (Keyboard.isKeyDown(Keyboard.KEY_LSHIFT) &&
@@ -381,144 +471,182 @@ public class ItemTooltipListener {
}
}
if (hasEnchantments || hasAttributes) {
- ArrayList<String> addedEnchants = new ArrayList<>();
- for (String op : NotEnoughUpdates.INSTANCE.config.hidden.enchantColours) {
- List<String> colourOps = GuiEnchantColour.splitter.splitToList(op);
- String enchantName = GuiEnchantColour.getColourOpIndex(colourOps, 0);
- String comparator = GuiEnchantColour.getColourOpIndex(colourOps, 1);
- String comparison = GuiEnchantColour.getColourOpIndex(colourOps, 2);
- String colourCode = GuiEnchantColour.getColourOpIndex(colourOps, 3);
- String modifier = GuiEnchantColour.getColourOpIndex(colourOps, 4);
-
- int modifierI = GuiEnchantColour.getIntModifier(modifier);
-
- assert enchantName != null;
- if (enchantName.length() == 0) continue;
- assert comparator != null;
- if (comparator.length() == 0) continue;
- assert comparison != null;
- if (comparison.length() == 0) continue;
- assert colourCode != null;
- if (colourCode.length() == 0) continue;
-
- int comparatorI = ">=<".indexOf(comparator.charAt(0));
-
- int levelToFind;
- try {
- levelToFind = Integer.parseInt(comparison);
- } catch (Exception e) {
- continue;
- }
-
- if (comparatorI < 0) continue;
- String regexText = "0123456789abcdefz";
- if (isSkyblockAddonsLoaded()) {
- regexText = regexText + "Z";
+ Pattern findEnchantPattern = Pattern.compile(".*(?<enchant>[\\w ]+) (?<level>[0-9]+|[IVXLCDM]+)$");
+ Matcher findEnchantMatcher = findEnchantPattern.matcher(line);
+ if (findEnchantMatcher.matches()) {
+ if (NotEnoughUpdates.INSTANCE.config.misc.cacheItemEnchant && !foundEnchants) {
+ foundEnchants = true;
+ if ((
+ lastItemUuid == null || currentUuid == null ||
+ (currentUuid != null &&
+ !Objects.equals(lastItemUuid, currentUuid)))) {
+ firstEnchantIndex = k;//k being the line index
+ lastEnchantIndex = k;
+ enchantList.clear();
+ }
}
+ thisLineHasEnchants = true;
+ }
- if (regexText.indexOf(colourCode.charAt(0)) < 0) continue;
+ ArrayList<String> addedEnchants = new ArrayList<>();
+ //if cacheItemEnchant option is disabled it will always be length of 0
+ if (enchantList.size() == 0 || enchantList.size() <= k - firstEnchantIndex) {
+ ArrayList<EnchantString> enchants = new ArrayList<>();
+ final String oLine = line;
+
+ for (String op : NotEnoughUpdates.INSTANCE.config.hidden.enchantColours) {
+ List<String> colourOps = GuiEnchantColour.splitter.splitToList(op);
+ String enchantName = GuiEnchantColour.getColourOpIndex(colourOps, 0);
+ String comparator = GuiEnchantColour.getColourOpIndex(colourOps, 1);
+ String comparison = GuiEnchantColour.getColourOpIndex(colourOps, 2);
+ String colourCode = GuiEnchantColour.getColourOpIndex(colourOps, 3);
+ String modifier = GuiEnchantColour.getColourOpIndex(colourOps, 4);
+
+ int modifierI = GuiEnchantColour.getIntModifier(modifier);
+
+ assert enchantName != null;
+ if (enchantName.length() == 0) continue;
+ assert comparator != null;
+ if (comparator.length() == 0) continue;
+ assert comparison != null;
+ if (comparison.length() == 0) continue;
+ assert colourCode != null;
+ if (colourCode.length() == 0) continue;
+
+ int comparatorI = ">=<".indexOf(comparator.charAt(0));
+
+ int levelToFind;
+ try {
+ levelToFind = Integer.parseInt(comparison);
+ } catch (Exception e) {
+ continue;
+ }
- //item_lore = item_lore.replaceAll("\\u00A79("+lvl4Max+" IV)", EnumChatFormatting.DARK_PURPLE+"$1");
- //9([a-zA-Z ]+?) ([0-9]+|(I|II|III|IV|V|VI|VII|VIII|IX|X))(,|$)
- Pattern pattern;
- try {
- pattern = Pattern.compile(
- "(\\u00A7b|\\u00A79|\\u00A7(b|9|l)\\u00A7d\\u00A7l)(?<enchantName>" + enchantName + ") " +
- "(?<level>[0-9]+|(I|II|III|IV|V|VI|VII|VIII|IX|X|XI|XII|XIII|XIV|XV|XVI|XVII|XVIII|XIX|XX))((\\u00A79)?,|( \\u00A78(?:,?[0-9]+)*)?$)");
- } catch (Exception e) {
- continue;
- }
- Matcher matcher = pattern.matcher(line);
- int matchCount = 0;
- while (matcher.find() && matchCount < 5) {
- if (Utils.cleanColour(matcher.group("enchantName")).startsWith(" ")) continue;
-
- matchCount++;
- int level = -1;
- String levelStr = matcher.group("level");
- if (levelStr == null || levelStr.isEmpty()) continue;
- level = Utils.parseIntOrRomanNumeral(levelStr);
- boolean matches = false;
- if (level > 0) {
- switch (comparator) {
- case ">":
- matches = level > levelToFind;
- break;
- case "=":
- matches = level == levelToFind;
- break;
- case "<":
- matches = level < levelToFind;
- break;
- }
+ if (comparatorI < 0) continue;
+ String regexText = "0123456789abcdefz";
+ if (isSkyblockAddonsLoaded()) {
+ regexText = regexText + "Z";
}
- if (matches) {
- String enchantText = matcher.group("enchantName");
- StringBuilder extraModifiersBuilder = new StringBuilder();
- if ((modifierI & GuiEnchantColour.BOLD_MODIFIER) != 0) {
- extraModifiersBuilder.append(EnumChatFormatting.BOLD);
- }
- if ((modifierI & GuiEnchantColour.ITALIC_MODIFIER) != 0) {
- extraModifiersBuilder.append(EnumChatFormatting.ITALIC);
- }
- if ((modifierI & GuiEnchantColour.UNDERLINE_MODIFIER) != 0) {
- extraModifiersBuilder.append(EnumChatFormatting.UNDERLINE);
- }
- if ((modifierI & GuiEnchantColour.OBFUSCATED_MODIFIER) != 0) {
- extraModifiersBuilder.append(EnumChatFormatting.OBFUSCATED);
- }
- if ((modifierI & GuiEnchantColour.STRIKETHROUGH_MODIFIER) != 0) {
- extraModifiersBuilder.append(EnumChatFormatting.STRIKETHROUGH);
+ if (regexText.indexOf(colourCode.charAt(0)) < 0) continue;
+
+ //item_lore = item_lore.replaceAll("\\u00A79("+lvl4Max+" IV)", EnumChatFormatting.DARK_PURPLE+"$1");
+ //9([a-zA-Z ]+?) ([0-9]+|(I|II|III|IV|V|VI|VII|VIII|IX|X))(,|$)
+ Pattern pattern;
+ try {
+ pattern = Pattern.compile(
+ "(\\u00A7b|\\u00A79|\\u00A7(b|9|l)\\u00A7d\\u00A7l)(?<enchantName>" + enchantName + ") " +
+ "(?<level>[0-9]+|(I|II|III|IV|V|VI|VII|VIII|IX|X|XI|XII|XIII|XIV|XV|XVI|XVII|XVIII|XIX|XX))((\\u00A79)?,|( \\u00A78(?:,?[0-9]+)*)?$)");
+ } catch (Exception e) {
+ continue;
+ }
+ Matcher matcher = pattern.matcher(line);
+ int matchCount = 0;
+ while (matcher.find() && matchCount < 5) {
+ if (Utils.cleanColour(matcher.group("enchantName")).startsWith(" ")) continue;
+
+ matchCount++;
+ int level = -1;
+ String levelStr = matcher.group("level");
+ if (levelStr == null || levelStr.isEmpty()) continue;
+ level = Utils.parseIntOrRomanNumeral(levelStr);
+ boolean matches = false;
+ if (level > 0) {
+ switch (comparator) {
+ case ">":
+ matches = level > levelToFind;
+ break;
+ case "=":
+ matches = level == levelToFind;
+ break;
+ case "<":
+ matches = level < levelToFind;
+ break;
+ }
}
+ if (matches) {
+ String enchantText = matcher.group("enchantName");
+ StringBuilder extraModifiersBuilder = new StringBuilder();
- String extraMods = extraModifiersBuilder.toString();
+ if ((modifierI & GuiEnchantColour.BOLD_MODIFIER) != 0) {
+ extraModifiersBuilder.append(EnumChatFormatting.BOLD);
+ }
+ if ((modifierI & GuiEnchantColour.ITALIC_MODIFIER) != 0) {
+ extraModifiersBuilder.append(EnumChatFormatting.ITALIC);
+ }
+ if ((modifierI & GuiEnchantColour.UNDERLINE_MODIFIER) != 0) {
+ extraModifiersBuilder.append(EnumChatFormatting.UNDERLINE);
+ }
+ if ((modifierI & GuiEnchantColour.OBFUSCATED_MODIFIER) != 0) {
+ extraModifiersBuilder.append(EnumChatFormatting.OBFUSCATED);
+ }
+ if ((modifierI & GuiEnchantColour.STRIKETHROUGH_MODIFIER) != 0) {
+ extraModifiersBuilder.append(EnumChatFormatting.STRIKETHROUGH);
+ }
+
+ String extraMods = extraModifiersBuilder.toString();
+ if (!colourCode.equals("z")) {
+ if (!addedEnchants.contains(enchantText)) {
+ int startMatch = matcher.start();
+ int endMatch = matcher.end();
+ String subString = oLine.substring(startMatch, endMatch);
+ String preEnchantText = subString.split(String.valueOf(enchantText.charAt(0)))[0];
+
+ line = line.replace(preEnchantText + enchantText,
+ "\u00A7" + colourCode + extraMods + enchantText
+ );
+
+ enchants.add(new EnchantString(
+ enchantText,
+ preEnchantText,
+ extraMods,
+ colourCode
+ ));
+ }
+ } else {
+ //Chroma
+ int startMatch = matcher.start();
+ int endMatch = matcher.end();
+ String subString = line.substring(startMatch, endMatch);
+ int newOffset = Minecraft.getMinecraft().fontRendererObj.getStringWidth(subString);
+
+ //split the substring with the first letter found in enchant text allowing to only get the color codes.
+ String preEnchantText = subString.split(String.valueOf(enchantText.charAt(0)))[0];
- if (!colourCode.equals("z")) {
- if (!addedEnchants.contains(enchantText)) {
- line = line.replace("\u00A79" + enchantText, "\u00A7" + colourCode + extraMods + enchantText);
- line = line.replace("\u00A7b" + enchantText, "\u00A7" + colourCode + extraMods + enchantText);
- line = line.replace(
- "\u00A79\u00A7d\u00A7l" + enchantText,
- "\u00A7" + colourCode + extraMods + enchantText
- );
- line = line.replace(
- "\u00A7b\u00A7d\u00A7l" + enchantText,
- "\u00A7" + colourCode + extraMods + enchantText
- );
line = line.replace(
- "\u00A7l\u00A7d\u00A7l" + enchantText,
- "\u00A7" + colourCode + extraMods + enchantText
+ preEnchantText + enchantText,
+ Utils.chromaString(enchantText, newOffset / 12f + k, preEnchantText.matches(".*\\u00A7d.*"))
);
+ enchants.add(new EnchantString(
+ enchantText,
+ preEnchantText,
+ extraMods,
+ colourCode
+ ));
}
- } else {
- int offset = Minecraft.getMinecraft().fontRendererObj.getStringWidth(line.replaceAll(
- "\\u00A79" + enchantText + ".*",
- ""
- ));
- line = line.replace(
- "\u00A79" + enchantText,
- Utils.chromaString(enchantText, offset / 12f + index, false)
- );
-
- offset = Minecraft.getMinecraft().fontRendererObj.getStringWidth(line.replaceAll(
- "\\u00A79\\u00A7d\\u00A7l" + enchantText + ".*",
- ""
- ));
- line = line.replace(
- "\u00A79\u00A7d\u00A7l" + enchantText,
- Utils.chromaString(enchantText, offset / 12f + index, true)
- );
- offset = Minecraft.getMinecraft().fontRendererObj.getStringWidth(line.replaceAll(
- "\\u00A7l\\u00A7d\\u00A7l" + enchantText + ".*",
- ""
- ));
- line = line.replace(
- "\u00A7l\u00A7d\u00A7l" + enchantText,
- Utils.chromaString(enchantText, offset / 12f + index, true)
- );
+ addedEnchants.add(enchantText);
+ }
+ }
+ }
+ if (NotEnoughUpdates.INSTANCE.config.misc.cacheItemEnchant) {
+ if (lastItemUuid == null || !Objects.equals(lastItemUuid, currentUuid)) {
+ EnchantLine enchantLine = new EnchantLine(oLine, enchants);
+ enchantList.add(enchantLine);
+ }
+ }
+ }
+
+ if (NotEnoughUpdates.INSTANCE.config.misc.cacheItemEnchant && foundEnchants) {
+ //found enchants in the past
+ if (k <= lastEnchantIndex) {
+ if (Objects.equals(lastItemUuid, currentUuid) && (firstEnchantIndex != -1 && enchantList.size() > k - firstEnchantIndex) && (k - firstEnchantIndex) > 0) {
+ //if it has the line, replaces it with the cached line
+ EnchantLine enchantLine = enchantList.get(k - firstEnchantIndex);
+ if (!enchantLine.isSameAsBefore(line)) {
+ resetEnchantCache = true;
}
- addedEnchants.add(enchantText);
+
+ line = enchantLine.replaceLine(line, k);
}
}
}
@@ -543,7 +671,7 @@ public class ItemTooltipListener {
Minecraft.getMinecraft().currentScreen instanceof GuiChest) {
if (line.contains(EnumChatFormatting.GREEN + "Open Reward Chest")) {
dungeonProfit = true;
- } else if (index == 7 && dungeonProfit) {
+ } else if (k == 7 && dungeonProfit) {
GuiChest eventGui = (GuiChest) Minecraft.getMinecraft().currentScreen;
ContainerChest cc = (ContainerChest) eventGui.inventorySlots;
IInventory lower = cc.getLowerChestInventory();
@@ -688,11 +816,9 @@ public class ItemTooltipListener {
}
}
}
-
- index++;
+ if (thisLineHasEnchants) lastEnchantIndex+=1;
}
-
pressedShiftLast = Keyboard.isKeyDown(Keyboard.KEY_LSHIFT) || Keyboard.isKeyDown(Keyboard.KEY_RSHIFT);
pressedArrowLast = Keyboard.isKeyDown(Keyboard.KEY_LEFT) || Keyboard.isKeyDown(Keyboard.KEY_RIGHT);
@@ -707,6 +833,18 @@ public class ItemTooltipListener {
NotEnoughUpdates.INSTANCE.config.petOverlay.hidePetTooltip) {
event.toolTip.clear();
}
+
+
+ if (foundEnchants && currentUuid != null && lastItemUuid != currentUuid) {
+ lastItemUuid = currentUuid;//cache is set;
+ }
+
+ if (resetEnchantCache) {
+ lastItemUuid = null;
+ enchantList.clear();
+ firstEnchantIndex = -1;
+ lastEnchantIndex = -1;
+ }
}
private void petToolTipXPExtendPetMenu(ItemTooltipEvent event) {
@@ -843,7 +981,6 @@ public class ItemTooltipListener {
MiscUtils.copyToClipboard(NotEnoughUpdates.INSTANCE.manager.getSkullValueForItem(event.itemStack));
}
-
event.toolTip.add(
EnumChatFormatting.AQUA + "Internal Name: " + EnumChatFormatting.GRAY + internal + EnumChatFormatting.GOLD +
" [K]");
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java
index e1b9d567..15fc8ef8 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java
@@ -269,7 +269,7 @@ public class ItemCustomizeManager {
return CUSTOM_GLINT_TEXTURE;
}
- private static String getUuidForItem(ItemStack stack) {
+ public static String getUuidForItem(ItemStack stack) {
if (!stack.hasTagCompound()) return null;
int nbtHash = stack.getTagCompound().hashCode();
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java
index ededb5da..afeec514 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java
@@ -141,14 +141,23 @@ public class Misc {
@ConfigEditorButton(runnableId = 13, buttonText = "Open")
public boolean openPV = true;
- @Expose
@ConfigOption(
+ name = "Custom Enchant Colours",
+ desc = ""
+ )
+ @ConfigEditorAccordion(
+ id = 1
+ )
+ public boolean neuEnchantsAccordion = true;
+ @Expose
+ @ConfigOption(
name = "Edit Enchant Colours",
desc = "Change the colours of certain SkyBlock enchants (/neuec)",
searchTags = "color"
)
@ConfigEditorButton(runnableId = 8, buttonText = "Open")
+ @ConfigAccordionId(id = 1)
public boolean editEnchantColoursButton = true;
@Expose
@@ -162,10 +171,20 @@ public class Misc {
maxValue = 500,
minStep = 10
)
+ @ConfigAccordionId(id = 1)
public int chromaSpeed = 100;
@Expose
@ConfigOption(
+ name = "Cache Tooltip Enchants",
+ desc = "Caches item enchants in tooltip to only use the neuec config once per item lookup.\nNOTE: It doesn't work on items without a uuid"
+ )
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 1)
+ public boolean cacheItemEnchant = true;
+
+ @Expose
+ @ConfigOption(
name = "Disable Skull retexturing",
desc = "Disables the skull retexturing."
)