blob: a9e5da9b596620898b8ba92f5d2a9ab631cc508c (
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
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
|
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.test.command.CopyErrorCommand
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.UUID
class FriendAPI {
private val file = File("config/skyhanni/friends.json")
private val removedFriendPattern =
".*\n§r§eYou removed §r(?<name>.*)§e from your friends list!§r§9§m\n.*".toPattern()
private val addedFriendPattern = "§aYou are now friends with (?<name>.*)".toPattern()
private val noBestFriendPattern = ".*\n§r(?<name>.*)§e is no longer a best friend!§r§9§m\n.*".toPattern()
private val bestFriendPattern = ".*\n(?<name>.*)§a is now a best friend!§r§9§m\n.*".toPattern()
companion object {
private var friendsJson: FriendsJson? = null
private fun getFriends(): MutableMap<UUID, Friend> {
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<Friend>()
fun getAllFriends(): List<Friend> {
val list = mutableListOf<Friend>()
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()
removedFriend(name)
}
addedFriendPattern.matchMatcher(event.message) {
val name = group("name").cleanPlayerName()
addFriend(name)
}
noBestFriendPattern.matchMatcher(event.message) {
val name = group("name").cleanPlayerName()
setBestFriend(name, false)
}
bestFriendPattern.matchMatcher(event.message) {
val name = group("name").cleanPlayerName()
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 (?<uuid>.*)".toPattern().matchMatcher(value) {
group("uuid")?.let {
try {
UUID.fromString(it)
} catch (e: IllegalArgumentException) {
CopyErrorCommand.logError(e, "Error reading friend list.")
return
}
}
}
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 §.(?<name>.*)§e's profile".toPattern()
rawNamePattern.matchMatcher(rawName) {
return group("name")
}
}
return null
}
}
|