diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-05-18 18:24:51 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-05-18 18:24:51 +0200 |
commit | e764c9152279ba2a0f309952e6c5bd1f23560b60 (patch) | |
tree | 5033d7d6da9ce902afd1ed7a5e64b7be5c77059e /src/main/java | |
parent | f532ef8aa56ff5dd2b67ca04d7501ecf36bba4c8 (diff) | |
download | skyhanni-e764c9152279ba2a0f309952e6c5bd1f23560b60.tar.gz skyhanni-e764c9152279ba2a0f309952e6c5bd1f23560b60.tar.bz2 skyhanni-e764c9152279ba2a0f309952e6c5bd1f23560b60.zip |
Added support to grab profile data from tab list, showing error messages if advanced tab list is disabled
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt | 59 |
1 files changed, 49 insertions, 10 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt b/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt index 46c06560e..5a9763bc0 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt @@ -9,11 +9,13 @@ import at.hannibal2.skyhanni.utils.StringUtils.matchMatcher import net.minecraftforge.event.world.WorldEvent import net.minecraftforge.fml.common.eventhandler.EventPriority import net.minecraftforge.fml.common.eventhandler.SubscribeEvent +import net.minecraftforge.fml.common.gameevent.TickEvent object ProfileStorageData { var playerSpecific: Storage.PlayerSpecific? = null var profileSpecific: Storage.ProfileSpecific? = null var loaded = false + var noTabListTime = -1L private var nextProfile: String? = null @@ -38,9 +40,7 @@ object ProfileStorageData { LorenzUtils.error("profileSpecific after profile swap can not be set: playerSpecific is null!") return } - profileSpecific = playerSpecific.profiles.getOrPut(profileName) { Storage.ProfileSpecific() } - loaded = true - println("profileSpecific loaded after profile swap!") + loadProfileSpecific(playerSpecific, profileName, "profile swap (chat message)") ConfigLoadEvent().postAndCatch() } @@ -54,15 +54,54 @@ object ProfileStorageData { if (profileSpecific == null) { val profileName = event.name - profileSpecific = playerSpecific.profiles.getOrPut(profileName) { Storage.ProfileSpecific() } - loaded = true - migrateProfileSpecific() - println("profileSpecific loaded for first join!") - ConfigLoadEvent().postAndCatch() + loadProfileSpecific(playerSpecific, profileName, "first join (chat message)") + } + } + + @SubscribeEvent + fun onTabListUpdate(event: TabListUpdateEvent) { + if (profileSpecific != null) return + val playerSpecific = playerSpecific ?: return + for (line in event.tabList) { + val pattern = "§e§lProfile: §r§a(?<name>.*)".toPattern() + pattern.matchMatcher(line) { + val profileName = group("name").lowercase() + loadProfileSpecific(playerSpecific, profileName, "tab list") + nextProfile = null + return + } + } + + if (LorenzUtils.inSkyBlock) { + noTabListTime = System.currentTimeMillis() } } @SubscribeEvent + fun onTick(event: TickEvent.ClientTickEvent) { + if (event.phase != TickEvent.Phase.START) return + if (!LorenzUtils.inSkyBlock) return + if (noTabListTime == -1L) return + + if (System.currentTimeMillis() > noTabListTime + 3_000) { + noTabListTime = System.currentTimeMillis() + LorenzUtils.chat( + "§c[SkyHanni] Extra Information from Tab list not found! " + + "Enable it: SkyBlock Menu ➜ Settings ➜ Personal ➜ User Interface ➜ Player List Info" + ) + } + } + + private fun loadProfileSpecific(playerSpecific: Storage.PlayerSpecific, profileName: String, reason: String) { + noTabListTime = -1 + profileSpecific = playerSpecific.profiles.getOrPut(profileName) { Storage.ProfileSpecific() } + println("Loaded profileSpecific: $reason") + tryMigrateProfileSpecific() + ConfigLoadEvent().postAndCatch() + loaded = true + } + + @SubscribeEvent fun onConfigLoad(event: HypixelJoinEvent) { val playerUuid = LorenzUtils.getRawPlayerUuid() playerSpecific = SkyHanniMod.feature.storage.players.getOrPut(playerUuid) { Storage.PlayerSpecific() } @@ -82,7 +121,7 @@ object ProfileStorageData { } } - private fun migrateProfileSpecific() { + private fun tryMigrateProfileSpecific() { val oldHidden = SkyHanniMod.feature.hidden if (oldHidden.isMigrated) return @@ -106,7 +145,7 @@ object ProfileStorageData { it.kuudraTiersDone = oldHidden.crimsonIsleKuudraTiersDone } - profileSpecific?.garden?.let { + profileSpecific?.garden?.let { it.experience = oldHidden.gardenExp it.cropCounter = oldHidden.gardenCropCounter it.cropUpgrades = oldHidden.gardenCropUpgrades |