emoji plugin: fix stripping chat recolor tags
This was using the event's message instead of the node's, after the node's message had been wrapped with col tags. Additionally, fix plugin to match emoji triggers that are in the same word as (col) tags.
This commit is contained in:
@@ -26,6 +26,8 @@ package net.runelite.client.plugins.emojis;
|
||||
|
||||
import java.awt.image.BufferedImage;
|
||||
import java.util.Arrays;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
import javax.annotation.Nullable;
|
||||
import javax.inject.Inject;
|
||||
import joptsimple.internal.Strings;
|
||||
@@ -52,6 +54,8 @@ import net.runelite.client.util.ImageUtil;
|
||||
@Slf4j
|
||||
public class EmojiPlugin extends Plugin
|
||||
{
|
||||
private static final Pattern TAG_REGEXP = Pattern.compile("<[^>]*>");
|
||||
|
||||
@Inject
|
||||
private Client client;
|
||||
|
||||
@@ -128,7 +132,8 @@ public class EmojiPlugin extends Plugin
|
||||
return;
|
||||
}
|
||||
|
||||
final String message = chatMessage.getMessage();
|
||||
final MessageNode messageNode = chatMessage.getMessageNode();
|
||||
final String message = messageNode.getValue();
|
||||
final String updatedMessage = updateMessage(message);
|
||||
|
||||
if (updatedMessage == null)
|
||||
@@ -136,7 +141,6 @@ public class EmojiPlugin extends Plugin
|
||||
return;
|
||||
}
|
||||
|
||||
final MessageNode messageNode = chatMessage.getMessageNode();
|
||||
messageNode.setRuneLiteFormatMessage(updatedMessage);
|
||||
chatMessageManager.update(messageNode);
|
||||
client.refreshChat();
|
||||
@@ -169,7 +173,9 @@ public class EmojiPlugin extends Plugin
|
||||
boolean editedMessage = false;
|
||||
for (int i = 0; i < messageWords.length; i++)
|
||||
{
|
||||
final Emoji emoji = Emoji.getEmoji(messageWords[i]);
|
||||
// Remove tags except for <lt> and <gt>
|
||||
final String trigger = removeTags(messageWords[i]);
|
||||
final Emoji emoji = Emoji.getEmoji(trigger);
|
||||
|
||||
if (emoji == null)
|
||||
{
|
||||
@@ -178,7 +184,7 @@ public class EmojiPlugin extends Plugin
|
||||
|
||||
final int emojiId = modIconsStart + emoji.ordinal();
|
||||
|
||||
messageWords[i] = "<img=" + emojiId + ">";
|
||||
messageWords[i] = messageWords[i].replace(trigger, "<img=" + emojiId + ">");
|
||||
editedMessage = true;
|
||||
}
|
||||
|
||||
@@ -190,4 +196,29 @@ public class EmojiPlugin extends Plugin
|
||||
|
||||
return Strings.join(messageWords, " ");
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove tags, except for <lt> and <gt>
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
private static String removeTags(String str)
|
||||
{
|
||||
StringBuffer stringBuffer = new StringBuffer();
|
||||
Matcher matcher = TAG_REGEXP.matcher(str);
|
||||
while (matcher.find())
|
||||
{
|
||||
matcher.appendReplacement(stringBuffer, "");
|
||||
String match = matcher.group(0);
|
||||
switch (match)
|
||||
{
|
||||
case "<lt>":
|
||||
case "<gt>":
|
||||
stringBuffer.append(match);
|
||||
break;
|
||||
}
|
||||
}
|
||||
matcher.appendTail(stringBuffer);
|
||||
return stringBuffer.toString();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user