aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHiZe_ <superhize@hotmail.com>2023-06-02 10:59:07 +0200
committerGitHub <noreply@github.com>2023-06-02 10:59:07 +0200
commit746c82be7379eeea2208e1d82d4e375826ebdd1c (patch)
tree2c7a75cbcbba65c3e84d8d9e44d3862a32ab83ae /src
parent287e0eefdbfb0509151ef40c38dce4b745409e62 (diff)
downloadskyhanni-746c82be7379eeea2208e1d82d4e375826ebdd1c.tar.gz
skyhanni-746c82be7379eeea2208e1d82d4e375826ebdd1c.tar.bz2
skyhanni-746c82be7379eeea2208e1d82d4e375826ebdd1c.zip
Added price in bronze/silver Trophy Fishing Sack (#191)
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/inventory/SackDisplay.kt114
1 files changed, 69 insertions, 45 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/SackDisplay.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/SackDisplay.kt
index 1ed2dbd37..619f231b2 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/inventory/SackDisplay.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/SackDisplay.kt
@@ -27,6 +27,7 @@ class SackDisplay {
var inInventory = false
var isRuneSack = false
var isGemstoneSack = false
+ var isTrophySack = false
}
private val config get() = SkyHanniMod.feature.inventory.sackDisplay
@@ -96,34 +97,33 @@ class SackDisplay {
val (internalName, colorCode, stored, total, price) = item
totalPrice += price
if (rendered >= config.itemToShow) continue
- val list = mutableListOf<Any>()
if (stored == "0" && !config.showEmpty) continue
val itemStack = NEUItems.getItemStack(internalName)
- list.add(" §7- ")
- list.add(itemStack)
-
- list.add(Renderable.optionalLink("$itemName: ", {
- if (!NEUItems.neuHasFocus() && !LorenzUtils.noTradeMode) {
- LorenzUtils.sendCommandToServer("bz ${itemName.removeColor()}")
- }
- }) { !NEUItems.neuHasFocus() })
-
- val displayItem = when (config.numberFormat) {
- 0 -> "$colorCode${stored}§7/§b${total}"
- 1 -> "$colorCode${NumberUtil.format(stored.formatNumber())}§7/§b${total}"
- 2 -> "$colorCode${stored}§7/§b${total.formatNumber().toInt().addSeparators()}"
- else -> "$colorCode${stored}§7/§b${total}"
- }
-
- list.add(displayItem)
- if (colorCode == "§a") // §a = Full, §e = Not full, §7 = Empty
- list.add(" §c§l(Full!)")
-
- if (config.showPrice && price != 0)
- list.add(" §7(§6${format(price)}§7)")
-
+ newDisplay.add(buildList {
+ add(" §7- ")
+ add(itemStack)
+ if (!isTrophySack)
+ add(Renderable.optionalLink("${itemName.replace("§k", "")}: ", {
+ if (!NEUItems.neuHasFocus() && !LorenzUtils.noTradeMode) {
+ LorenzUtils.sendCommandToServer("bz ${itemName.removeColor()}")
+ }
+ }) { !NEUItems.neuHasFocus() })
+ else
+ add("${itemName.replace("§k", "")}: ")
+
+ add(when (config.numberFormat) {
+ 0 -> "$colorCode${stored}§7/§b${total}"
+ 1 -> "$colorCode${NumberUtil.format(stored.formatNumber())}§7/§b${total}"
+ 2 -> "$colorCode${stored}§7/§b${total.formatNumber().toInt().addSeparators()}"
+ else -> "$colorCode${stored}§7/§b${total}"
+ })
+
+ if (colorCode == "§a")
+ add(" §c§l(Full!)")
+ if (config.showPrice && price != 0)
+ add(" §7(§6${format(price)}§7)")
+ })
rendered++
- newDisplay.add(list)
}
newDisplay.add(buildList {
@@ -149,7 +149,6 @@ class SackDisplay {
}) { !NEUItems.neuHasFocus() })
}
})
-
if (config.showPrice)
newDisplay.addAsSingletonList("§eTotal price: §6${format(totalPrice)}")
}
@@ -199,6 +198,7 @@ class SackDisplay {
inInventory = false
isRuneSack = false
isGemstoneSack = false
+ isTrophySack = false
runeItem.clear()
gemstoneItem.clear()
sackItem.clear()
@@ -214,6 +214,8 @@ class SackDisplay {
val stacks = event.inventoryItems
isRuneSack = inventoryName == "Runes Sack"
isGemstoneSack = inventoryName == "Gemstones Sack"
+ isTrophySack = inventoryName.contains("Trophy Fishing Sack")
+ val sackRarity = if (inventoryName.startsWith("Bronze")) TrophyRarity.BRONZE else if (inventoryName.startsWith("Silver")) TrophyRarity.SILVER else TrophyRarity.NONE
inInventory = true
for ((_, stack) in stacks) {
val name = stack.name ?: continue
@@ -262,26 +264,13 @@ class SackDisplay {
val internalName = stack.getInternalName()
item.internalName = internalName
item.colorCode = group("color")
- val price: Int = when (config.priceFrom) {
- 0 -> {
- (NEUItems.getPrice(internalName) * stored.formatNumber()).toInt()
- }
-
- 1 -> {
- try {
- val bazaarData = BazaarApi.getBazaarDataByInternalName(internalName)
- (((bazaarData?.npcPrice?.toInt() ?: 0) * stored.formatNumber())).toInt()
-
- } catch (e: Exception) {
- 0
- }
- }
-
- else -> 0
- }
item.stored = stored
item.total = total
- item.price = price
+ if (isTrophySack) {
+ val trophyName = name.removeColor().uppercase().replace(" ", "_").replace("-", "_")
+ item.price = calculatePrice("MAGMA_FISH", Trophy.valueOf(trophyName).convert(sackRarity, stored))
+ } else
+ item.price = calculatePrice(internalName, stored)
if (isRuneSack) {
val level = group("level")
@@ -336,11 +325,46 @@ class SackDisplay {
var price: Int = 0,
)
+ enum class Trophy(private val bronzeValue: Int, private val silverValue: Int) {
+ BLOBFISH(4, 5),
+ FLYFISH(32, 48),
+ GOLDEN_FISH(400, 700),
+ GUSHER(32, 48),
+ KARATE_FISH(40, 60),
+ LAVAHORSE(12, 16),
+ MANA_RAY(40, 60),
+ MOLDFIN(32, 48),
+ SKELETON_FISH(32, 48),
+ SLUGFISH(40, 60),
+ SOUL_FISH(32, 48),
+ STEAMING_HOT_FLOUNDER(20, 28),
+ SULPHUR_SKITTER(40, 60),
+ VANILLE(80, 120),
+ VOLCANIC_STONEFISH(20, 28),
+ OBFUSCATED_1(16, 24),
+ OBFUSCATED_2(40, 60),
+ OBFUSCATED_3(400, 700);
+
+ fun convert(rarity: TrophyRarity, stored: String): String {
+ return when (rarity) {
+ TrophyRarity.BRONZE -> (this.bronzeValue * stored.formatNumber().toInt()).toString()
+ TrophyRarity.SILVER -> (this.silverValue * stored.formatNumber().toInt()).toString()
+ else -> "0"
+ }
+ }
+ }
+
+ enum class TrophyRarity {
+ NONE, BRONZE, SILVER
+ }
+
private fun isEnabled() = LorenzUtils.inSkyBlock && config.enabled
private fun isRuneDisplayEnabled() = config.showRunes
private fun calculatePrice(internalName: String, stored: String) = when (config.priceFrom) {
- 0 -> (NEUItems.getPrice(internalName) * stored.formatNumber()).toInt()
+ 0 -> {
+ (NEUItems.getPrice(internalName, true) * stored.formatNumber()).toInt()
+ }
1 -> try {
val npcPrice = BazaarApi.getBazaarDataByInternalName(internalName)?.npcPrice ?: 0.0