1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
package at.hannibal2.skyhanni.features.inventory
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.events.InventoryCloseEvent
import at.hannibal2.skyhanni.events.InventoryOpenEvent
import at.hannibal2.skyhanni.events.LorenzToolTipEvent
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.CollectionUtils.transformAt
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.NumberUtil.addSeparators
import at.hannibal2.skyhanni.utils.RegexUtils.matchMatcher
import at.hannibal2.skyhanni.utils.RegexUtils.matches
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
@SkyHanniModule
object StockOfStonkFeature {
private val config get() = SkyHanniMod.feature.inventory
private val repoGroup = RepoPattern.group("inventory.stockofstonks")
/**
* REGEX-TEST: Stonks Auction
*/
private val inventoryPattern by repoGroup.pattern(
"inventory",
"Stonks Auction",
)
/**
* REGEX-TEST: §dStonks Auction
*/
private val itemPattern by repoGroup.pattern(
"item",
"§dStonks Auction",
)
/**
* REGEX-TEST: §5§o§7§7▶ §c§lTOP 5,000§7 - §5Stock of Stonks §8x2
*/
private val topPattern by repoGroup.pattern(
"top",
"§5§o§7§7▶ §c§lTOP (?<rank>[\\d,]+)§7 - §5Stock of Stonks §8x(?<amount>\\d+)",
)
/**
* REGEX-TEST: §5§o§7 Minimum Bid: §62,400,002 Coins
*/
private val bidPattern by repoGroup.pattern(
"bid",
"§5§o§7 Minimum Bid: §6(?<amount>[\\d,]+) Coins",
)
var inInventory = false
@SubscribeEvent
fun onInventoryOpen(event: InventoryOpenEvent) {
if (isEnabled()) {
inInventory = inventoryPattern.matches(event.inventoryName)
}
}
@SubscribeEvent
fun onInventoryClose(event: InventoryCloseEvent) {
inInventory = false
}
@SubscribeEvent
fun onLorenzToolTip(event: LorenzToolTipEvent) {
if (!isEnabled()) return
if (!inInventory) return
if (!itemPattern.matches(event.itemStack.displayName)) return
var stonksReward = 0
var index = 0
var bestValueIndex = 0
var bestRatio = Long.MAX_VALUE
loop@ while (index < event.toolTip.size) {
val line = event.toolTip[index]
index++
topPattern.matchMatcher(line) {
stonksReward = group("amount").toInt()
continue@loop
}
bidPattern.matchMatcher(line) {
val cost = group("amount").replace(",", "").toLong()
val ratio = cost / stonksReward
event.toolTip[index - 1] = line + " §7(§6§6${ratio.addSeparators()} §7per)" // double §6 for the replacement at the end
if (ratio < bestRatio) {
bestValueIndex = index - 1
bestRatio = ratio
}
}
}
event.toolTip.transformAt(bestValueIndex) { replace("§6§6", "§a") }
}
private fun isEnabled() = LorenzUtils.inSkyBlock && config.stonkOfStonkPrice
}
|