aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/com/ambientaddons/utils/SkyBlock.kt
blob: a6bbd5703fea5fa19a7d9cf8154851618e084f23 (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
package com.ambientaddons.utils

import AmbientAddons.Companion.mc
import com.ambientaddons.utils.DungeonFloor.Companion.toDungeonFloor
import com.ambientaddons.utils.Extensions.cleanSB
import com.ambientaddons.utils.Extensions.stripControlCodes
import com.ambientaddons.utils.Extensions.substringBetween
import com.ambientaddons.utils.TabListUtils.fetchTabEntries
import gg.essential.universal.UChat
import net.minecraft.scoreboard.Score
import net.minecraft.scoreboard.ScorePlayerTeam
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

object SkyBlock {
    private var areaRegex = Regex("^(?:Area|Dungeon): ([\\w ].+)\$")
    var onHypixel = false
    var inSkyblock = false
    var area: Area? = null
    private var areaString: String? = null
    var dungeonFloor: DungeonFloor? = null
    var ticks = 0

    @SubscribeEvent
    fun onWorldUnload(event: WorldEvent.Unload) {
        inSkyblock = false
        dungeonFloor = null
        area = null
    }

    @SubscribeEvent
    fun onConnect(event: FMLNetworkEvent.ClientConnectedToServerEvent) {
        onHypixel = mc.runCatching {
            !event.isLocal && ((thePlayer?.clientBrand?.lowercase()?.contains("hypixel")
                ?: currentServerData?.serverIP?.lowercase()?.contains("hypixel")) == true)
        }.getOrDefault(false)
    }

    @SubscribeEvent
    fun onDisconnect(event: FMLNetworkEvent.ClientDisconnectionFromServerEvent) {
        onHypixel = false
    }

    // from Skytils, under AGPL 3.0
    fun fetchScoreboardLines(): List<String> {
        val scoreboard = mc.theWorld?.scoreboard ?: return emptyList()
        val objective = scoreboard.getObjectiveInDisplaySlot(1) ?: return emptyList()
        val scores = scoreboard.getSortedScores(objective).filter { input: Score? ->
            input != null && input.playerName != null && !input.playerName
                .startsWith("#")
        }.take(15)
        return scores.map {
            ScorePlayerTeam.formatPlayerName(scoreboard.getPlayersTeam(it.playerName), it.playerName).cleanSB()
        }.asReversed()
    }

    // modified from Harry282/Skyblock-Client, under AGPL 3.0
    @SubscribeEvent
    fun onTick(event: TickEvent.ClientTickEvent) {
        if (!onHypixel || event.phase != TickEvent.Phase.START) return
        if (ticks % 10 == 0) {
            val title = mc.theWorld?.scoreboard?.getObjectiveInDisplaySlot(1)?.displayName?.cleanSB()
            if (!inSkyblock) {
                inSkyblock = title?.contains("SKYBLOCK") == true
            }
            if (inSkyblock) {
                if (areaString == null) {
                    val tab = fetchTabEntries()
                    val areaString = tab.firstNotNullOfOrNull { areaRegex.find(it.text.stripControlCodes()) }?.let {
                        it.groupValues.getOrNull(1)
                    }
                    area = Area.fromString(areaString)
                }
                if (area == Area.Dungeon && dungeonFloor == null) {
                    val dungeonLine = fetchScoreboardLines().find {
                        it.run { contains("The Catacombs (") && !contains("Queue") }
                    }
                    dungeonFloor = dungeonLine?.substringBetween("(", ")")?.toDungeonFloor()
                }
            }
        }
        ticks++
    }

    override fun toString(): String =
        "onHypixel: $onHypixel, inSkyblock: $inSkyblock, location: $area, floor: $dungeonFloor"

}