package at.hannibal2.skyhanni.data import at.hannibal2.skyhanni.config.ConfigManager import at.hannibal2.skyhanni.events.HypixelJoinEvent import at.hannibal2.skyhanni.events.LorenzChatEvent import at.hannibal2.skyhanni.utils.LorenzUtils import at.hannibal2.skyhanni.utils.StringUtils.cleanPlayerName import at.hannibal2.skyhanni.utils.StringUtils.matchMatcher import at.hannibal2.skyhanni.utils.jsonobjects.FriendsJson import at.hannibal2.skyhanni.utils.jsonobjects.FriendsJson.PlayerFriends.Friend import net.minecraft.util.ChatStyle import net.minecraftforge.fml.common.eventhandler.SubscribeEvent import java.io.File import java.io.FileReader import java.util.* class FriendAPI { private val file = File("config/skyhanni/friends.json") private val removedFriendPattern = ".*\n§r§eYou removed §r(?.*)§e from your friends list!§r§9§m\n.*".toPattern() private val addedFriendPattern = "§aYou are now friends with (?.*)".toPattern() private val noBestFriendPattern = ".*\n§r(?.*)§e is no longer a best friend!§r§9§m\n.*".toPattern() private val bestFriendPattern = ".*\n(?.*)§a is now a best friend!§r§9§m\n.*".toPattern() companion object { private var friendsJson: FriendsJson? = null private fun getFriends(): MutableMap { val friendsJson = friendsJson ?: error("savedFriends not loaded yet!") return friendsJson.players.getOrPut(LorenzUtils.getRawPlayerUuid()) { FriendsJson.PlayerFriends().also { it.friends = mutableMapOf() } }.friends } private val tempFriends = mutableListOf() fun getAllFriends(): List { val list = mutableListOf() list.addAll(getFriends().values) list.addAll(tempFriends) return list } } @SubscribeEvent fun onHypixelJoin(event: HypixelJoinEvent) { if (file.isFile) { friendsJson = ConfigManager.gson.fromJson(FileReader(file), FriendsJson::class.java) } if (friendsJson == null) { file.parentFile.mkdirs() file.createNewFile() friendsJson = FriendsJson().also { it.players = mutableMapOf() } saveConfig() } } fun saveConfig() { file.writeText(ConfigManager.gson.toJson(friendsJson)) } @SubscribeEvent fun onChat(event: LorenzChatEvent) { readFriendsList(event) removedFriendPattern.matchMatcher(event.message) { val name = group("name").cleanPlayerName() println("removed friend: '$name'") removedFriend(name) } addedFriendPattern.matchMatcher(event.message) { val name = group("name").cleanPlayerName() println("added friend: '$name'") addFriend(name) } noBestFriendPattern.matchMatcher(event.message) { val name = group("name").cleanPlayerName() println("no best friend: '$name'") setBestFriend(name, false) } bestFriendPattern.matchMatcher(event.message) { val name = group("name").cleanPlayerName() println("best friend: '$name'") setBestFriend(name, true) } } private fun setBestFriend(name: String, bestFriend: Boolean) { getFriends().entries.firstOrNull { it.value.name == name }?.let { it.value.bestFriend = bestFriend saveConfig() } } private fun addFriend(name: String) { tempFriends.add(Friend().also { it.name = name }) } private fun removedFriend(name: String) { tempFriends.removeIf { it.name == name } getFriends().entries.removeIf { it.value.name == name } saveConfig() } private fun readFriendsList(event: LorenzChatEvent) { if (!event.message.contains("Friends")) return for (sibling in event.chatComponent.siblings) { val chatStyle = sibling.chatStyle ?: continue val value = chatStyle.chatClickEvent?.value ?: continue if (!value.startsWith("/viewprofile")) continue val uuid = "/viewprofile (?.*)".toPattern().matchMatcher(value) { group("uuid")?.let { UUID.fromString(it) } } val bestFriend = sibling.unformattedText.contains("§l") val name = readName(chatStyle) if (uuid != null && name != null) { getFriends()[uuid] = Friend().also { it.name = name it.bestFriend = bestFriend } } } saveConfig() } private fun readName(chatStyle: ChatStyle): String? { for (component in chatStyle.chatHoverEvent.value.siblings) { val rawName = component.unformattedText val rawNamePattern = "\\n§eClick to view §.(?.*)§e's profile".toPattern() rawNamePattern.matchMatcher(rawName) { return group("name") } } return null } }