package at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.PacketEvent
import at.hannibal2.skyhanni.events.ProfileJoinEvent
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import net.minecraft.client.Minecraft
import net.minecraft.network.play.server.S38PacketPlayerListItem
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 hypixel = false
var skyblock = false
var dungeon = false
}
@SubscribeEvent
fun onConnect(event: FMLNetworkEvent.ClientConnectedToServerEvent) {
hypixel = Minecraft.getMinecraft().runCatching {
!event.isLocal && (thePlayer?.clientBrand?.lowercase()?.contains("hypixel")
?: currentServerData?.serverIP?.lowercase()?.contains("hypixel") ?: false)
}.onFailure { it.printStackTrace() }.getOrDefault(false)
}
val areaRegex = Regex("§r§b§l(?[\\w]+): §r§7(?[\\w ]+)§r")
@SubscribeEvent
fun onTabUpdate(event: PacketEvent.ReceiveEvent) {
if (dungeon || !hypixel || event.packet !is S38PacketPlayerListItem ||
(event.packet.action != S38PacketPlayerListItem.Action.UPDATE_DISPLAY_NAME &&
event.packet.action != S38PacketPlayerListItem.Action.ADD_PLAYER)
) return
event.packet.entries.forEach { playerData ->
val name = playerData?.displayName?.formattedText ?: playerData?.profile?.name ?: return@forEach
areaRegex.matchEntire(name)?.let { result ->
dungeon = skyblock && result.groups["area"]?.value == "Dungeon"
return@forEach
}
}
}
@SubscribeEvent
fun onWorldChange(event: WorldEvent.Load) {
skyblock = false
dungeon = false
}
@SubscribeEvent
fun onDisconnect(event: FMLNetworkEvent.ClientDisconnectionFromServerEvent) {
hypixel = false
skyblock = false
dungeon = false
}
@SubscribeEvent
fun onStatusBar(event: LorenzChatEvent) {
if (!hypixel) return
val message = event.message.removeColor().lowercase()
if (message.startsWith("your profile was changed to:")) {
val stripped = message.replace("your profile was changed to:", "").replace("(co-op)", "").trim()
ProfileJoinEvent(stripped).postAndCatch()
}
if (message.startsWith("you are playing on profile:")) {
val stripped = message.replace("you are playing on profile:", "").replace("(co-op)", "").trim()
ProfileJoinEvent(stripped).postAndCatch()
}
}
var timerTick = 0
@SubscribeEvent
fun onTick(event: TickEvent.ClientTickEvent) {
if (!hypixel) return
if (event.phase != TickEvent.Phase.START) return
timerTick++
if (timerTick % 5 != 0) return
val newState = checkScoreboard()
if (newState == skyblock) return
skyblock = newState
}
private fun checkScoreboard(): Boolean {
val minecraft = Minecraft.getMinecraft()
val world = minecraft.theWorld ?: return false
val sidebarObjective = world.scoreboard.getObjectiveInDisplaySlot(1) ?: return false
val displayName = sidebarObjective.displayName
return displayName.removeColor().contains("SKYBLOCK")
}
}