blob: e49eae87eb93c3a052a4656ba28bdb8c4c0c205b (
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
|
package com.dulkirfabric.util
import com.dulkirfabric.DulkirModFabric.mc
import com.dulkirfabric.events.AreaChangeEvent
import com.dulkirfabric.events.LongUpdateEvent
import meteordevelopment.orbit.EventHandler
import net.minecraft.client.network.PlayerListEntry
object TablistUtils {
var tablist: List<PlayerListEntry>? = null
private val areaPattern = "Area: (.+)".toRegex()
private val speedPattern = "^Speed: (.+)".toRegex()
private val numVisitorPattern = "Visitors: \\((\\d)\\)".toRegex()
private val nextVisitorPattern = "Next Visitor: (.+)".toRegex()
private val compostTimePattern = "Time Left: (.+)".toRegex()
data class PersistentInfo(
var area: String = "",
var speed: String = "",
var numVisitors: Int = -1,
var nextVisitorTime: String = "",
var compostTime: String = ""
)
var persistentInfo: PersistentInfo = PersistentInfo()
@EventHandler
fun onLongUpdate(event: LongUpdateEvent) {
if (mc.player == null) return
tablist = mc.inGameHud.playerListHud.collectPlayerEntries()
updatePersistentData()
}
private fun updatePersistentData() {
if (tablist == null) return
var speedFlag = false
var numVisitorFlag = false
var compostFlag = false
tablist!!.forEach {
val str = it.displayName?.string?.trim() ?: return@forEach
areaPattern.find(str)?.let { result ->
if (persistentInfo.area != result.groupValues[1]) {
AreaChangeEvent(result.groupValues[1], persistentInfo.area).post()
persistentInfo.area = result.groupValues[1]
}
return@forEach
}
speedPattern.matchEntire(str)?.let { result ->
persistentInfo.speed = result.groupValues[1]
speedFlag = true
return@forEach
}
numVisitorPattern.matchEntire(str)?.let { result ->
persistentInfo.numVisitors = Integer.parseInt(result.groupValues[1])
numVisitorFlag = true
return@forEach
}
nextVisitorPattern.matchEntire(str)?.let { result ->
persistentInfo.nextVisitorTime = result.groupValues[1]
return@forEach
}
compostTimePattern.matchEntire(str)?.let { result ->
persistentInfo.compostTime = result.groupValues[1]
compostFlag = true
return@forEach
}
}
if (!speedFlag) {
persistentInfo.speed = "Unknown"
}
if (!numVisitorFlag) {
persistentInfo.numVisitors = -1
persistentInfo.nextVisitorTime = "Unknown"
}
if (!compostFlag) {
persistentInfo.compostTime = "Unknown"
}
}
}
|