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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
package at.hannibal2.skyhanni.features.bingo.card
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.data.jsonobjects.repo.BingoData
import at.hannibal2.skyhanni.events.InventoryUpdatedEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.bingo.BingoCardUpdateEvent
import at.hannibal2.skyhanni.events.bingo.BingoGoalReachedEvent
import at.hannibal2.skyhanni.features.bingo.BingoAPI
import at.hannibal2.skyhanni.features.bingo.card.goals.BingoGoal
import at.hannibal2.skyhanni.features.bingo.card.goals.GoalType
import at.hannibal2.skyhanni.features.bingo.card.goals.HiddenGoalData
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.ItemUtils.getLore
import at.hannibal2.skyhanni.utils.ItemUtils.name
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.RegexUtils.matchMatcher
import at.hannibal2.skyhanni.utils.SimpleTimeMark
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import at.hannibal2.skyhanni.utils.TimeUtils
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import kotlin.time.Duration
@SkyHanniModule
object BingoCardReader {
private val config get() = SkyHanniMod.feature.event.bingo.bingoCard
private val patternGroup = RepoPattern.group("bingo.card")
private val percentagePattern by patternGroup.pattern(
"percentage",
" {2}§8Top §.(?<percentage>.*)%"
)
private val goalCompletePattern by patternGroup.pattern(
"goalcomplete",
"§6§lBINGO GOAL COMPLETE! §r§e(?<name>.*)"
)
private val personalHiddenGoalPattern by patternGroup.pattern(
"hiddengoal",
".*§7§eThe next hint will unlock in (?<time>.*)"
)
@SubscribeEvent
fun onInventoryUpdated(event: InventoryUpdatedEvent) {
if (!config.enabled) return
if (event.inventoryName != "Bingo Card") return
for ((slot, stack) in event.inventoryItems) {
val lore = stack.getLore()
val goalType = when {
lore.any { it.endsWith("Personal Goal") } -> GoalType.PERSONAL
lore.any { it.endsWith("Community Goal") } -> GoalType.COMMUNITY
else -> continue
}
val name = stack.name.removeColor()
var index = 0
val builder = StringBuilder()
for (s in lore) {
if (index > 1) {
if (s == "") break
builder.append(s)
builder.append(" ")
}
index++
}
var description = builder.toString()
if (description.endsWith(" ")) {
description = description.substring(0, description.length - 1)
}
if (description.startsWith("§7§7")) {
description = description.substring(2)
}
val done = lore.any { it.contains("GOAL REACHED") }
val communityGoalPercentage = readCommunityGoalPercentage(lore)
val hiddenGoalData = getHiddenGoalData(name, description, goalType)
val visualDescription = hiddenGoalData.tipNote
val guide = BingoAPI.getData(name)?.guide?.map { "§7$it" } ?: listOf("§cNo guide yet!")
val bingoGoal = BingoAPI.bingoGoals.getOrPut(slot) { BingoGoal() }
with(bingoGoal) {
this.type = goalType
this.displayName = name
this.description = visualDescription
this.guide = guide
this.done = done
this.hiddenGoalData = hiddenGoalData
}
communityGoalPercentage?.let {
bingoGoalDifference(bingoGoal, it)
bingoGoal.communtyGoalPercentage = it
}
}
BingoAPI.lastBingoCardOpenTime = SimpleTimeMark.now()
BingoCardUpdateEvent().post()
}
private fun bingoGoalDifference(bingoGoal: BingoGoal, new: Double) {
val old = bingoGoal.communtyGoalPercentage ?: 1.0
if (!config.communityGoalProgress) return
if (new == old) return
val oldFormat = BingoAPI.getCommunityPercentageColor(old)
val newFormat = BingoAPI.getCommunityPercentageColor(new)
val color = if (new > old) "§c" else "§a"
ChatUtils.chat("$color${bingoGoal.displayName}: $oldFormat §b->" + " $newFormat")
}
private fun readCommunityGoalPercentage(lore: List<String>): Double? {
for (line in lore) {
percentagePattern.matchMatcher(line) {
return group("percentage").toDouble() / 100
}
}
return null
}
private fun getHiddenGoalData(
name: String,
originalDescription: String,
goalType: GoalType,
): HiddenGoalData {
var unknownTip = false
val nextHintTime: Duration? = when (goalType) {
GoalType.PERSONAL -> {
personalHiddenGoalPattern.matchMatcher(originalDescription) {
unknownTip = true
TimeUtils.getDuration(group("time").removeColor())
}
}
GoalType.COMMUNITY -> {
if (originalDescription == "§7This goal will be revealed §7when it hits Tier IV.") {
unknownTip = true
}
null
}
}
val description = BingoAPI.getData(name)?.getDescriptionLine()
val tipNote = description?.let {
unknownTip = false
it
} ?: originalDescription
return HiddenGoalData(unknownTip, nextHintTime, tipNote)
}
@SubscribeEvent
fun onChat(event: LorenzChatEvent) {
if (!LorenzUtils.isBingoProfile) return
if (!config.enabled) return
val name = goalCompletePattern.matchMatcher(event.message) {
group("name")
} ?: return
val goal = BingoAPI.personalGoals.firstOrNull { it.displayName == name } ?: return
goal.done = true
BingoGoalReachedEvent(goal).post()
BingoCardUpdateEvent().post()
}
private fun BingoData.getDescriptionLine() = "§7" + note.joinToString(" ")
}
|