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
171
172
173
174
175
176
177
178
179
180
181
|
package at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.events.InventoryFullyOpenedEvent
import at.hannibal2.skyhanni.events.LorenzActionBarEvent
import at.hannibal2.skyhanni.events.ProfileJoinEvent
import at.hannibal2.skyhanni.events.SkillExpGainEvent
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.NumberUtil.formatNumber
import at.hannibal2.skyhanni.utils.NumberUtil.romanToDecimal
import at.hannibal2.skyhanni.utils.StringUtils.matchMatcher
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
class SkillExperience {
// TODO USE SH-REPO
private val actionBarPattern = ".*§3\\+.* (?<skill>.*) \\((?<overflow>.*)/(?<needed>.*)\\).*".toPattern()
private val inventoryPattern = ".* §e(?<number>.*)§6/.*".toPattern()
private val actionBarLowLevelPattern = ".*§3+(?<add>.+) (?<skill>.*) \\((?<percentage>.*)%\\).*".toPattern()
@SubscribeEvent
fun onProfileJoin(event: ProfileJoinEvent) {
skillExp.clear()
}
@SubscribeEvent
fun onActionBar(event: LorenzActionBarEvent) {
if (!LorenzUtils.inSkyBlock) return
actionBarPattern.matchMatcher(event.message) {
val skill = group("skill").lowercase()
val overflow = group("overflow").formatNumber()
val neededForNextLevel = group("needed").formatNumber()
val nextLevel = getLevelForExpExactly(neededForNextLevel)
val baseExp = getExpForLevel(nextLevel - 1)
val totalExp = baseExp + overflow
skillExp[skill] = totalExp
SkillExpGainEvent(skill).postAndCatch()
}
actionBarLowLevelPattern.matchMatcher(event.message) {
val skill = group("skill").lowercase()
SkillExpGainEvent(skill).postAndCatch()
}
}
@SubscribeEvent
fun onInventoryOpen(event: InventoryFullyOpenedEvent) {
if (event.inventoryName != "Your Skills") return
for ((_, stack) in event.inventoryItems) {
val name = stack.name?.removeColor() ?: continue
if (!name.contains(" ")) continue
val lore = stack.getLore()
var next = false
for (line in lore) {
if (line.contains("Progress to Level")) {
next = true
continue
}
if (next) {
val split = name.split(" ")
val skillName = split[0].lowercase()
val level = split[1].romanToDecimal()
val baseExp = getExpForLevel(level)
inventoryPattern.matchMatcher(line) {
val rawNumber = group("number")
val overflow = rawNumber.formatNumber()
val experience = baseExp + overflow
skillExp[skillName] = experience
}
next = false
}
}
}
if (skillExp.isNotEmpty()) return
}
companion object {
private val skillExp = mutableMapOf<String, Long>()
private fun getLevelForExpExactly(experience: Long): Int {
var level = 1
for (levelXp in levelingExp) {
if (levelXp.toLong() == experience) {
return level
}
level++
}
return 0
}
fun getExpForNextLevel(requestedLevel: Int) = levelingExp[requestedLevel]
fun getExpForLevel(requestedLevel: Int): Long {
var total = 0L
var level = 0
for (levelXp in levelingExp) {
total += levelXp
level++
if (level == requestedLevel) {
return total
}
}
return 0
}
// TODO create additional event
fun getExpForSkill(skillName: String) = skillExp[skillName.lowercase()] ?: 0
private val levelingExp = listOf(
50,
125,
200,
300,
500,
750,
1000,
1500,
2000,
3500,
5000,
7500,
10000,
15000,
20000,
30000,
50000,
75000,
100000,
200000,
300000,
400000,
500000,
600000,
700000,
800000,
900000,
1000000,
1100000,
1200000,
1300000,
1400000,
1500000,
1600000,
1700000,
1800000,
1900000,
2000000,
2100000,
2200000,
2300000,
2400000,
2500000,
2600000,
2750000,
2900000,
3100000,
3400000,
3700000,
4000000,
4300000,
4600000,
4900000,
5200000,
5500000,
5800000,
6100000,
6400000,
6700000,
7000000
)
}
}
|