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
|
package at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.events.IslandChangeEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.ProfileJoinEvent
import at.hannibal2.skyhanni.utils.LorenzLogger
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import at.hannibal2.skyhanni.utils.TabListData
import net.minecraft.client.Minecraft
import net.minecraftforge.event.world.WorldEvent
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import net.minecraftforge.fml.common.gameevent.TickEvent
import net.minecraftforge.fml.common.network.FMLNetworkEvent
class HypixelData {
companion object {
var hypixelLive = false
var hypixelAlpha = false
var skyBlock = false
var skyBlockIsland = IslandType.UNKNOWN
//Ironman, Stranded and Bingo
var noTrade = false
var ironman = false
var stranded = false
var bingo = false
var profileName = ""
fun readSkyBlockArea(): String {
return ScoreboardData.sidebarLinesFormatted
.firstOrNull { it.startsWith(" §7⏣ ") }
?.substring(5)?.removeColor()
?: "invalid"
}
}
private var loggerIslandChange = LorenzLogger("debug/island_change")
@SubscribeEvent
fun onWorldChange(event: WorldEvent.Load) {
skyBlock = false
}
@SubscribeEvent
fun onDisconnect(event: FMLNetworkEvent.ClientDisconnectionFromServerEvent) {
hypixelLive = false
hypixelAlpha = false
skyBlock = false
}
@SubscribeEvent
fun onChatMessage(event: LorenzChatEvent) {
if (!LorenzUtils.onHypixel) return
val message = event.message.removeColor().lowercase()
if (message.startsWith("your profile was changed to:")) {
val newProfile = message.replace("your profile was changed to:", "").replace("(co-op)", "").trim()
profileName = newProfile
ProfileJoinEvent(newProfile).postAndCatch()
}
if (message.startsWith("you are playing on profile:")) {
val newProfile = message.replace("you are playing on profile:", "").replace("(co-op)", "").trim()
if (profileName == newProfile) return
profileName = newProfile
ProfileJoinEvent(newProfile).postAndCatch()
}
}
var tick = 0
@SubscribeEvent
fun onTick(event: TickEvent.ClientTickEvent) {
if (event.phase != TickEvent.Phase.START) return
tick++
if (tick % 5 != 0) return
if (!LorenzUtils.onHypixel) {
checkHypixel()
}
if (!LorenzUtils.onHypixel) return
val inSkyBlock = checkScoreboard()
if (inSkyBlock) {
checkIsland()
checkSidebar()
}
if (inSkyBlock == skyBlock) return
skyBlock = inSkyBlock
}
private fun checkHypixel() {
val list = ScoreboardData.sidebarLinesFormatted
if (list.isEmpty()) return
val last = list.last()
hypixelLive = last == "§ewww.hypixel.net"
hypixelAlpha = last == "§ealpha.hypixel.net"
}
private fun checkSidebar() {
ironman = false
stranded = false
bingo = false
for (line in ScoreboardData.sidebarLinesFormatted) {
when (line) {
" §7Ⓑ §7Bingo", // No Rank
" §aⒷ §aBingo", // Rank 1
" §9Ⓑ §9Bingo", // Rank 2
" §5Ⓑ §5Bingo", // Rank 3
" §6Ⓑ §6Bingo", // Rank 4
-> {
bingo = true
}
" §7♲ §7Ironman" -> {
ironman = true
}
" §a☀ §aStranded" -> {
stranded = true
}
}
}
noTrade = ironman || stranded || bingo
}
private fun checkIsland() {
var newIsland = ""
var guesting = false
for (line in TabListData.getTabList()) {
if (line.startsWith("§b§lArea: ")) {
newIsland = line.split(": ")[1].removeColor()
}
if (line == " Status: §r§9Guest") {
guesting = true
}
}
val islandType = getIslandType(newIsland, guesting)
if (skyBlockIsland != islandType) {
IslandChangeEvent(islandType, skyBlockIsland).postAndCatch()
if (islandType == IslandType.UNKNOWN) {
LorenzUtils.debug("Unknown island detected: '$newIsland'")
loggerIslandChange.log("Unknown: '$newIsland'")
} else {
loggerIslandChange.log(islandType.name)
}
skyBlockIsland = islandType
}
}
private fun getIslandType(newIsland: String, guesting: Boolean): IslandType {
val islandType = IslandType.getBySidebarName(newIsland)
if (guesting) {
if (islandType == IslandType.PRIVATE_ISLAND) return IslandType.PRIVATE_ISLAND_GUEST
if (islandType == IslandType.GARDEN) return IslandType.GARDEN_GUEST
}
return islandType
}
private fun checkScoreboard(): Boolean {
val minecraft = Minecraft.getMinecraft()
val world = minecraft.theWorld ?: return false
val objective = world.scoreboard.getObjectiveInDisplaySlot(1) ?: return false
val displayName = objective.displayName
val scoreboardTitle = displayName.removeColor()
return scoreboardTitle.contains("SKYBLOCK") ||
scoreboardTitle.contains("SKIBLOCK") // April 1st jokes are so funny
}
}
|