From 017edfa6eaca6b682a68c16fc0a9c621ebaf1177 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 2 Mar 2023 14:08:43 +0100 Subject: Show the price for copper inside the visitor gui. --- .../hannibal2/skyhanni/config/features/Garden.java | 8 +++++++- .../features/garden/GardenVisitorFeatures.kt | 22 ++++++++++++++++------ 2 files changed, 23 insertions(+), 7 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index d05b29442..a50d9201d 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -96,11 +96,17 @@ public class Garden { public boolean visitorHighlight = true; @Expose - @ConfigOption(name = "Show Price", desc = "Show the bazaar price of the items required for the visitors.") + @ConfigOption(name = "Visitor Price", desc = "Show the bazaar price of the items required for the visitors.") @ConfigEditorBoolean @ConfigAccordionId(id = 1) public boolean visitorShowPrice = true; + @Expose + @ConfigOption(name = "Copper Price", desc = "Show the price for copper inside the visitor gui.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 1) + public boolean visitorCopperPrice = false; + @Expose @ConfigOption(name = "Numbers", desc = "") @ConfigEditorAccordion(id = 4) diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt index 0a064401e..b9fb4ee5f 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt @@ -19,6 +19,7 @@ import net.minecraftforge.event.entity.player.ItemTooltipEvent import net.minecraftforge.fml.common.eventhandler.SubscribeEvent import net.minecraftforge.fml.common.gameevent.TickEvent import java.util.* +import java.util.regex.Pattern class GardenVisitorFeatures { @@ -27,6 +28,7 @@ class GardenVisitorFeatures { private var lastClickedNpc = 0 private var nearby = false private var tick = 0 + private val copperPattern = Pattern.compile(" §8\\+§c(.*) Copper") private val config: Garden get() = SkyHanniMod.feature.garden companion object { @@ -134,21 +136,21 @@ class GardenVisitorFeatures { val name = event.itemStack.name ?: return if (name != "§aAccept Offer") return - var i = 0 val list = event.toolTip var totalPrice = 0.0 var amountDifferentItems = 0 - for (l in list) { + var endReached = false + for ((i, l) in list.withIndex()) { val line = l.substring(4) if (line == "") { if (amountDifferentItems > 1) { val format = NumberUtil.format(totalPrice) list[1] = list[1] + "$line §f(§6Total §6$format§f)" } - break + endReached = true } - if (i > 1) { + if (i > 1 && !endReached) { val (itemName, amount) = ItemUtils.readItemAmount(line) if (itemName != null) { val lowestBin: Double @@ -159,7 +161,7 @@ class GardenVisitorFeatures { println(message) LorenzUtils.error(message) e.printStackTrace() - continue + return } val price = lowestBin * amount totalPrice += price @@ -168,7 +170,15 @@ class GardenVisitorFeatures { amountDifferentItems++ } } - i++ + + if (config.visitorCopperPrice) { + val matcher = copperPattern.matcher(line) + if (matcher.matches()) { + val coppers = matcher.group(1).replace(",", "").toInt() + val pricePerCopper = NumberUtil.format((totalPrice / coppers).toInt()) + list[i] = list[i] + " §f(§7Copper price §6$pricePerCopper§f)" + } + } } } -- cgit