aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/cosmetics/chatreplacers/ChatReplacerMessage.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/kr/syeyoung/dungeonsguide/cosmetics/chatreplacers/ChatReplacerMessage.java')
-rw-r--r--src/main/java/kr/syeyoung/dungeonsguide/cosmetics/chatreplacers/ChatReplacerMessage.java107
1 files changed, 107 insertions, 0 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/cosmetics/chatreplacers/ChatReplacerMessage.java b/src/main/java/kr/syeyoung/dungeonsguide/cosmetics/chatreplacers/ChatReplacerMessage.java
new file mode 100644
index 00000000..14c2bd11
--- /dev/null
+++ b/src/main/java/kr/syeyoung/dungeonsguide/cosmetics/chatreplacers/ChatReplacerMessage.java
@@ -0,0 +1,107 @@
+/*
+ * Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
+ * Copyright (C) 2021 cyoung06
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published
+ * by the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+package kr.syeyoung.dungeonsguide.cosmetics.chatreplacers;
+
+import kr.syeyoung.dungeonsguide.cosmetics.ActiveCosmetic;
+import kr.syeyoung.dungeonsguide.cosmetics.CosmeticData;
+import kr.syeyoung.dungeonsguide.cosmetics.CosmeticsManager;
+import kr.syeyoung.dungeonsguide.cosmetics.IChatReplacer;
+import kr.syeyoung.dungeonsguide.utils.TextUtils;
+import net.minecraft.util.ChatComponentText;
+import net.minecraft.util.ChatStyle;
+import net.minecraft.util.IChatComponent;
+import net.minecraft.util.Tuple;
+import net.minecraftforge.client.event.ClientChatReceivedEvent;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.UUID;
+
+public class ChatReplacerMessage implements IChatReplacer {
+ @Override
+ public boolean isAcceptable(ClientChatReceivedEvent event) {
+ for (IChatComponent sibling : event.message.getSiblings()) {
+ if (sibling.getChatStyle() != null && sibling.getChatStyle().getChatClickEvent() != null && sibling.getChatStyle().getChatClickEvent().getValue().startsWith("/msg")) return true;
+ }
+ return false;
+ }
+
+ @Override
+ public void translate(ClientChatReceivedEvent event, CosmeticsManager cosmeticsManager) {
+ List<Tuple<IChatComponent, IChatComponent>> replaceMents = new ArrayList<>();
+ List<IChatComponent> iChatComponents = new ArrayList<>( event.message.getSiblings() );
+ List<IChatComponent> hasMsg = new ArrayList<>();
+ for (IChatComponent sibling : iChatComponents) {
+ if (sibling.getChatStyle() != null && sibling.getChatStyle().getChatClickEvent() != null && sibling.getChatStyle().getChatClickEvent().getValue().startsWith("/msg")) {
+ hasMsg.add(sibling);
+ }
+ }
+ iChatComponents.removeAll(hasMsg);
+
+ ChatComponentText chatComponents = new ChatComponentText("");
+ chatComponents.getSiblings().addAll(hasMsg);
+ ChatStyle origStyle = hasMsg.get(0).getChatStyle();
+ String name = chatComponents.getFormattedText();
+
+
+ String[] splited = name.split(" ");
+ String actualName = splited[splited.length-1];
+
+ List<ActiveCosmetic> cDatas = cosmeticsManager.getActiveCosmeticByPlayerNameLowerCase().get(TextUtils.stripColor(actualName).toLowerCase());
+ if (cDatas == null || splited.length > 2) return;
+ CosmeticData color=null, prefix=null;
+ for (ActiveCosmetic activeCosmetic : cDatas) {
+ CosmeticData cosmeticData = cosmeticsManager.getCosmeticDataMap().get(activeCosmetic.getCosmeticData());
+ if (cosmeticData !=null && cosmeticData.getCosmeticType().equals("color")) {
+ color = cosmeticData;
+ } else if (cosmeticData != null && cosmeticData.getCosmeticType().equals("prefix")) {
+ prefix = cosmeticData;
+ }
+ }
+
+ String building = "";
+ if (prefix != null) building += prefix.getData().replace("&", "§") + " ";
+ if (splited.length == 2) building += splited[0] +" ";
+
+ if (color != null) {
+ String nick = splited[1];
+ building += color.getData().replace("&","§");
+ boolean foundLegitChar = false;
+ boolean foundColor = false;
+ for (char c : nick.toCharArray()) {
+ if (foundColor) {
+ foundColor = false; continue;
+ }
+ if (c == '§' && !foundLegitChar) foundColor = true;
+ else {
+ foundLegitChar = true;
+ building += c;
+ }
+ }
+ } else {
+ building += splited[1] ;
+ }
+
+ ChatComponentText chatComponents1 = new ChatComponentText(building);
+ chatComponents1.setChatStyle(origStyle);
+ event.message.getSiblings().clear();
+ event.message.getSiblings().add(chatComponents1);
+ event.message.getSiblings().addAll(iChatComponents);
+ }
+}