package dulkirmod.features.chat import dulkirmod.config.Config import dulkirmod.utils.Utils import net.minecraft.util.ChatComponentText import net.minecraft.util.EnumChatFormatting import net.minecraftforge.client.event.ClientChatReceivedEvent object Bridge { private val guildFormat = "^(§2Guild|§3Officer) > (?:\\S+ )?([\\w§]{3,18})(?: §[a-z0-9]\\[[A-Z]+])?§f: ([^>]+) > .+".toRegex() private val alternateFormat = "^(§2Guild|§3Officer) > (?:\\S+ )?([\\w§]{3,18})(?: §[a-z0-9]\\[[A-Z]+])?§f: ([^:]+): .+".toRegex() private val otherAltFormat = "^(§2Guild|§3Officer) > (?:\\S+ )?([\\w§]{3,18})(?: §[a-z0-9]\\[[A-Z]+])?§f: ([^»]+) » .+".toRegex() fun handle(event: ClientChatReceivedEvent) { val message = event.message.unformattedText if (guildFormat matches message && Config.bridgeBot) { val matchResult = guildFormat.find(message) val (prefix, name, playerName) = matchResult!!.destructured if (Utils.stripColorCodes(name.lowercase()) == Config.botName.lowercase()) { val newPrefix = if (prefix == "§2Guild") "§2Bridge" else "§3Bridge" val color = if (Config.bridgeColor == 16) "§z" else EnumChatFormatting.values()[Config.bridgeColor] event.message.siblings[0] = ChatComponentText( "$newPrefix > $color$playerName§f: " ) event.message.siblings[1] = ChatComponentText( event.message.siblings[1].unformattedText.replace("$playerName > ", "") ).setChatStyle(event.message.siblings[1].chatStyle.createShallowCopy()) } } // OTHER FORMAT else if (alternateFormat matches message && Config.bridgeBot) { val matchResult = alternateFormat.find(message) val (prefix, name, playerName) = matchResult!!.destructured if (Utils.stripColorCodes(name.lowercase()) == Config.botName.lowercase()) { val newPrefix = if (prefix == "§2Guild") "§2Bridge" else "§3Bridge" val color = if (Config.bridgeColor == 16) "§z" else EnumChatFormatting.values()[Config.bridgeColor] event.message.siblings[0] = ChatComponentText( "$newPrefix > $color$playerName§f: " ) event.message.siblings[1] = ChatComponentText( event.message.siblings[1].unformattedText.replace("$playerName: ", "") ).setChatStyle(event.message.siblings[1].chatStyle.createShallowCopy()) } } else if (otherAltFormat matches message && Config.bridgeBot) { val matchResult = otherAltFormat.find(message) val (prefix, name, playerName) = matchResult!!.destructured if (Utils.stripColorCodes(name.lowercase()) == Config.botName.lowercase()) { val newPrefix = if (prefix == "§2Guild") "§2Bridge" else "§3Bridge" val color = if (Config.bridgeColor == 16) "§z" else EnumChatFormatting.values()[Config.bridgeColor] event.message.siblings[0] = ChatComponentText( "$newPrefix > $color$playerName§f: " ) event.message.siblings[1] = ChatComponentText( event.message.siblings[1].unformattedText.replace("$playerName » ", "") ).setChatStyle(event.message.siblings[1].chatStyle.createShallowCopy()) } } } }