blob: e79e60dfbd1164e1ff00bb9f274aab3f48164f29 (
plain)
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
|
package at.hannibal2.skyhanni.api
import at.hannibal2.skyhanni.events.InventoryOpenEvent
import at.hannibal2.skyhanni.events.ProfileApiDataLoadedEvent
import at.hannibal2.skyhanni.events.ProfileJoinEvent
import at.hannibal2.skyhanni.features.bazaar.BazaarApi
import at.hannibal2.skyhanni.utils.ItemUtils.getLore
import at.hannibal2.skyhanni.utils.ItemUtils.name
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import java.util.regex.Pattern
class CollectionAPI {
private val counterPattern = Pattern.compile("(?:.*) §e(.*)§6\\/(?:.*)")
private val singleCounterPattern = Pattern.compile("§7Total Collected: §e(.*)")
@SubscribeEvent
fun onProfileDataLoad(event: ProfileApiDataLoadedEvent) {
val profileData = event.profileData
for ((rawName, rawCounter) in profileData["collection"].asJsonObject.entrySet()) {
val counter = rawCounter.asLong
var itemName = BazaarApi.getBazaarDataForInternalName(rawName)?.itemName
if (rawName == "MUSHROOM_COLLECTION") {
itemName = "Mushroom"
}
if (rawName == "MELON") {
itemName = "Melon"
}
if (rawName == "GEMSTONE_COLLECTION") {
itemName = "Gemstone"
}
// Hypixel moment
if (rawName == "WOOL" || rawName == "CORRUPTED_FRAGMENT") {
continue
}
if (itemName == null) {
println("collection name is null for '$rawName'")
continue
}
collectionValue[itemName] = counter
}
}
@SubscribeEvent
fun onProfileJoin(event: ProfileJoinEvent) {
collectionValue.clear()
}
@SubscribeEvent
fun onTick(event: InventoryOpenEvent) {
val inventoryName = event.inventoryName
if (inventoryName.endsWith(" Collection")) {
val stack = event.inventoryItems[4] ?: return
for (line in stack.getLore()) {
val matcher = singleCounterPattern.matcher(line)
if (matcher.matches()) {
val counter = matcher.group(1).replace(",", "").toLong()
val name = inventoryName.split(" ").dropLast(1).joinToString(" ")
collectionValue[name] = counter
}
}
}
if (inventoryName.endsWith(" Collections")) {
if (inventoryName == "Boss Collections") return
for ((_, stack) in event.inventoryItems) {
var name = stack.name?.removeColor() ?: continue
if (name.contains("Collections")) continue
val lore = stack.getLore()
if (!lore.any { it.contains("Click to view!") }) continue
if (!isCollectionTier0(lore)) {
name = name.split(" ").dropLast(1).joinToString(" ")
}
for (line in lore) {
val matcher = counterPattern.matcher(line)
if (matcher.matches()) {
val counter = matcher.group(1).replace(",", "").toLong()
collectionValue[name] = counter
}
}
}
}
}
companion object {
private val collectionValue = mutableMapOf<String, Long>()
private val collectionTier0Pattern = Pattern.compile("§7Progress to .* I: .*")
fun isCollectionTier0(lore: List<String>) = lore.map { collectionTier0Pattern.matcher(it) }.any { it.matches() }
fun getCollectionCounter(searchName: String): Pair<String, Long>? {
for ((collectionName, counter) in collectionValue) {
if (collectionName.equals(searchName, true)) {
return Pair(collectionName, counter)
}
}
return null
}
}
}
|