blob: 4c23f5ed108df3ae144981e5f26488daf9e9f58f (
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
|
package at.hannibal2.skyhanni.test.command
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.OSUtils
import at.hannibal2.skyhanni.utils.StringUtils.stripHypixelMessage
import net.minecraft.util.ChatComponentText
import net.minecraft.util.IChatComponent
object TestChatCommand {
fun command(args: Array<String>) {
if (args.isEmpty()) {
ChatUtils.userError("Specify a chat message to test!")
return
}
SkyHanniMod.launchCoroutine {
val mutArgs = args.toMutableList()
val isComplex = mutArgs.remove("-complex")
val isClipboard = mutArgs.remove("-clipboard")
val isHidden = mutArgs.remove("-s")
val text = if (isClipboard) {
OSUtils.readFromClipboard()
?: return@launchCoroutine ChatUtils.userError("Clipboard does not contain a string!")
} else mutArgs.joinToString(" ")
val component =
if (isComplex)
try {
IChatComponent.Serializer.jsonToComponent(text)
} catch (ex: Exception) {
ChatUtils.userError("Please provide a valid JSON chat component (either in the command or via -clipboard)")
return@launchCoroutine
}
else ChatComponentText(text.replace("&", "§"))
if (!isHidden) ChatUtils.chat("Testing message: §7${component.formattedText}", prefixColor = "§a")
test(component)
}
}
private fun test(componentText: IChatComponent) {
val message = componentText.formattedText.stripHypixelMessage()
val event = LorenzChatEvent(message, componentText)
event.postAndCatch()
if (event.blockedReason != "") {
ChatUtils.chat("§cChat blocked: ${event.blockedReason}")
} else {
val finalMessage = event.chatComponent
if (finalMessage.formattedText.stripHypixelMessage() != message) {
ChatUtils.chat("§eChat modified!")
}
ChatUtils.chatComponent(finalMessage)
}
}
}
|