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
|
package at.hannibal2.skyhanni.features.commands
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.config.features.misc.PartyCommandsConfig
import at.hannibal2.skyhanni.data.FriendAPI
import at.hannibal2.skyhanni.data.PartyAPI
import at.hannibal2.skyhanni.data.hypixel.chat.event.PartyChatEvent
import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.LorenzUtils
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
object PartyChatCommands {
data class PartyChatCommand(
val names: List<String>,
val isEnabled: () -> Boolean,
val requiresPartyLead: Boolean,
val executable: (PartyChatEvent) -> Unit,
)
private fun useConfig() = SkyHanniMod.feature.misc.partyCommands
val allPartyCommands = listOf(
PartyChatCommand(
listOf("pt", "ptme", "transfer"),
{ useConfig().transferCommand },
requiresPartyLead = true,
executable = {
ChatUtils.sendCommandToServer("party transfer ${it.author}")
}
),
PartyChatCommand(
listOf("pw", "warp", "warpus"),
{ useConfig().warpCommand },
requiresPartyLead = true,
executable = {
ChatUtils.sendCommandToServer("party warp")
}
),
)
val indexedPartyChatCommands = buildMap {
for (command in allPartyCommands) {
for (name in command.names) {
put(name.lowercase(), command)
}
}
}
fun isTrustedUser(name: String): Boolean {
val friend = FriendAPI.getAllFriends().find { it.name == name }
return when (useConfig().defaultRequiredTrustLevel) {
PartyCommandsConfig.TrustedUser.FRIENDS -> friend != null
PartyCommandsConfig.TrustedUser.BEST_FRIENDS -> friend?.bestFriend == true
PartyCommandsConfig.TrustedUser.ANYONE -> true
PartyCommandsConfig.TrustedUser.NO_ONE -> false
}
}
private val commandBeginChars = ".!?".toSet()
@SubscribeEvent
fun onPartyCommand(event: PartyChatEvent) {
if (event.message.firstOrNull() !in commandBeginChars)
return
val commandLabel = event.message.substring(1).substringBefore(' ')
val command = indexedPartyChatCommands[commandLabel.lowercase()] ?: return
if (event.author == LorenzUtils.getPlayerName()) {
return
}
if (!command.isEnabled()) return
if (command.requiresPartyLead && PartyAPI.partyLeader != LorenzUtils.getPlayerName()) {
return
}
if (!isTrustedUser(event.author)) {
ChatUtils.chat("§cIgnoring chat command from ${event.author}. Change your party chat command settings or /friend (best) them.")
return
}
command.executable(event)
}
}
|