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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
package at.hannibal2.skyhanni.features.chat
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.HypixelCommands
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.NumberUtil.formatInt
import at.hannibal2.skyhanni.utils.NumberUtil.shortFormat
import at.hannibal2.skyhanni.utils.RegexUtils.matchMatcher
import at.hannibal2.skyhanni.utils.RegexUtils.matches
import at.hannibal2.skyhanni.utils.StringUtils
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
@SkyHanniModule
object StashCompact {
// <editor-fold desc="Patterns">
private val patternGroup = RepoPattern.group("stash.compact")
/**
* REGEX-TEST: §f §7You have §3226 §7materials stashed away!
* REGEX-TEST: §f §7You have §31,000 §7items stashed away!
* REGEX-TEST: §f §7You have §a2 §7items stashed away!
*/
private val materialCountPattern by patternGroup.pattern(
"material.count",
"§f *§7You have §.(?<count>[\\d,]+) (?:§.)+(?<type>item|material)s? stashed away!.*",
)
/**
* REGEX-TEST: §f §8(This totals 1 type of material stashed!)
* REGEX-TEST: §f §8(This totals 2 types of items stashed!)
* REGEX-TEST: §f §8(This totals 3 types of materials stashed!)
* REGEX-TEST: §f §8(This totals 4 types of items stashed!)
*/
private val differingMaterialsCountPattern by patternGroup.pattern(
"differing.materials.count",
"§f *§8\\(This totals (?<count>[\\d,]+) types? of (?<type>item|material)s? stashed!\\).*",
)
/**
* REGEX-TEST: §f §3§l>>> §3§lCLICK HERE§b to pick them up! §3§l<<<
* REGEX-TEST: §f §6§l>>> §6§lCLICK HERE§e to pick them up! §6§l<<<
*/
private val pickupStashPattern by patternGroup.pattern(
"pickup.stash",
"§f *§.§l>>> §.§lCLICK HERE§. to pick (?:them|it) up! §.§l<<<.*",
)
/**
* REGEX-TEST: §eOne or more items didn't fit in your inventory and were added to your item stash! §6Click here to pick them up!
* REGEX-TEST: §eOne or more materials didn't fit in your inventory and were added to your material stash! §6Click here to pick them up!
*/
@Suppress("MaxLineLength")
private val genericAddedToStashPattern by patternGroup.pattern(
"generic",
"§eOne or more (?:item|material)s? didn't fit in your inventory and were added to your (?:item|material) stash! §6Click here §eto pick them up!",
)
// </editor-fold>
private val config get() = SkyHanniMod.feature.chat.filterType.stashMessages
private var currentMessage: StashMessage? = null
private var lastMessage: StashMessage? = null
data class StashMessage(val materialCount: Int, val type: String) {
var differingMaterialsCount: Int? = null
}
@SubscribeEvent
fun onChat(event: LorenzChatEvent) {
if (!isEnabled()) return
// TODO make a system for detecting message "groups" (multiple consecutive messages)
materialCountPattern.matchMatcher(event.message) {
currentMessage = StashMessage(group("count").formatInt(), group("type"))
event.blockedReason = "stash_compact"
}
differingMaterialsCountPattern.matchMatcher(event.message) {
currentMessage?.differingMaterialsCount = group("count").formatInt()
event.blockedReason = "stash_compact"
}
if (pickupStashPattern.matches(event.message)) {
event.blockedReason = "stash_compact"
val current = currentMessage ?: return
if (current.materialCount <= config.hideLowWarningsThreshold) return
if (config.hideDuplicateCounts && current == lastMessage) return
current.sendCompactedStashMessage()
}
if (!config.hideAddedMessages) return
genericAddedToStashPattern.matchMatcher(event.message) {
event.blockedReason = "stash_compact"
}
}
private fun StashMessage.sendCompactedStashMessage() {
val typeNameFormat = StringUtils.pluralize(materialCount, type)
val (mainColor, accentColor) = if (type == "item") "§e" to "§6" else "§b" to "§3"
val typeStringExtra = differingMaterialsCount?.let {
", ${mainColor}totalling $accentColor$it ${StringUtils.pluralize(it, "type")}$mainColor"
}.orEmpty()
val action = if (config.useViewStash) "view" else "pickup"
ChatUtils.clickableChat(
"${mainColor}You have $accentColor${materialCount.shortFormat()} $mainColor$typeNameFormat in stash$typeStringExtra. " +
"${mainColor}Click to $accentColor$action ${mainColor}your stash!",
onClick = {
if (config.useViewStash) HypixelCommands.viewStash(type)
else HypixelCommands.pickupStash()
},
hover = "§eClick to $action your $type stash!",
)
currentMessage = null
lastMessage = this
}
private fun isEnabled() = LorenzUtils.inSkyBlock && config.enabled
}
|