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
|
package at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.events.CropMilestoneUpdateEvent
import at.hannibal2.skyhanni.events.InventoryOpenEvent
import at.hannibal2.skyhanni.events.ProfileJoinEvent
import at.hannibal2.skyhanni.features.garden.CropType
import at.hannibal2.skyhanni.utils.ItemUtils.getLore
import at.hannibal2.skyhanni.utils.ItemUtils.name
import at.hannibal2.skyhanni.utils.NumberUtil.romanToDecimalIfNeeded
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import java.util.regex.Pattern
class GardenCropMilestones {
private val overflowPattern = Pattern.compile("(?:.*) §e(.*)§6\\/(?:.*)")
private val nextTierPattern = Pattern.compile("§7Progress to Tier (.*): §e(?:.*)")
// Add when api support is there
// @SubscribeEvent
// fun onProfileDataLoad(event: ProfileApiDataLoadedEvent) {
// val profileData = event.profileData
// for ((key, value) in profileData.entrySet()) {
// if (key.startsWith("experience_skill_")) {
// val label = key.substring(17)
// val exp = value.asLong
// gardenExp[label] = exp
// }
// }
// }
@SubscribeEvent
fun onProfileJoin(event: ProfileJoinEvent) {
if (cropCounter.isEmpty()) {
for (crop in CropType.values()) {
cropCounter[crop] = 0
}
}
}
@SubscribeEvent
fun onInventoryOpen(event: InventoryOpenEvent) {
if (event.inventoryName != "Crop Milestones") return
for ((_, stack) in event.inventoryItems) {
val cropName = stack.name?.removeColor() ?: continue
val crop = CropType.getByName(cropName) ?: continue
val lore = stack.getLore()
var cropForTier = 0L
var next = false
for (line in lore) {
if (line.contains("Progress to Tier")) {
val matcher = nextTierPattern.matcher(line)
if (matcher.matches()) {
val nextTier = matcher.group(1).romanToDecimalIfNeeded()
val currentTier = nextTier - 1
cropForTier = getCropsForTier(currentTier)
}
next = true
continue
}
if (next) {
val matcher = overflowPattern.matcher(line)
if (matcher.matches()) {
val rawNumber = matcher.group(1)
val overflow = rawNumber.formatNumber()
cropCounter[crop] = cropForTier + overflow
}
next = false
}
}
}
CropMilestoneUpdateEvent().postAndCatch()
}
companion object {
val cropCounter: MutableMap<CropType, Long> get() = SkyHanniMod.feature.hidden.gardenCropCounter
fun getTierForCrops(crops: Long): Int {
var tier = 0
var totalCrops = 0L
for (tierCrops in cropMilestone) {
totalCrops += tierCrops
if (totalCrops > crops) {
return tier
}
tier++
}
return tier
}
fun getCropsForTier(requestedTier: Int): Long {
var totalCrops = 0L
var tier = 0
for (tierCrops in cropMilestone) {
totalCrops += tierCrops
tier++
if (tier == requestedTier) {
return totalCrops
}
}
return 0
}
// TODO use repo
private val cropMilestone = listOf(
100,
150,
250,
500,
1500,
2500,
5000,
5000,
10000,
25000,
25000,
25000,
30000,
70000,
100000,
200000,
250000,
250000,
500000,
1000000,
1500000,
2000000,
3000000,
4000000,
7000000,
10000000,
20000000,
25000000,
25000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
50000000,
100000000,
)
}
}
private fun String.formatNumber(): Long {
var text = replace(",", "")
val multiplier = if (text.endsWith("k")) {
text = text.substring(0, text.length - 1)
1_000
} else if (text.endsWith("m")) {
text = text.substring(0, text.length - 1)
1_000_000
} else 1
val d = text.toDouble()
return (d * multiplier).toLong()
}
|