aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/cosmetics/chatreplacers/ChatReplacerPV.java
blob: e5e4053f648253e58e602b862ac9e7b21f9b04fd (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
 * 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.minecraftforge.client.event.ClientChatReceivedEvent;

import java.util.List;


// Bug 289 - mod conflict with NEU (Replaces /socialoptions with /pv)
public class ChatReplacerPV implements IChatReplacer {
    @Override
    public boolean isAcceptable(ClientChatReceivedEvent event) {
        if (event.message.getChatStyle() != null && event.message.getChatStyle().getChatClickEvent() != null && event.message.getChatStyle().getChatClickEvent().getValue().startsWith("/pv")) return true;
        return false;
    }

    @Override
    public void translate(ClientChatReceivedEvent event, CosmeticsManager cosmeticsManager) {
            if (event.message.getChatStyle() != null && event.message.getChatStyle().getChatClickEvent() != null && event.message.getChatStyle().getChatClickEvent().getValue().startsWith("/pv")) {
                String username = event.message.getChatStyle().getChatClickEvent().getValue().split(" ")[1];
                List<ActiveCosmetic> cDatas = cosmeticsManager.getActiveCosmeticByPlayerNameLowerCase().get(username.toLowerCase());

                if (cDatas != null) {
                    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[] splitInto = event.message.getUnformattedTextForChat().split(" ");
                    int lastValidNickname = -1;
                    int lastprefix = -1;
                    for (int i = 0; i < splitInto.length; i++) {
                        String s = splitInto[i];
                        if (s.startsWith("§7")) s = s.substring(2);
                        char c = s.charAt(0);
                        if (('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || ('0' <= c && c <= '9') || c == '_' || c == '-') {
                            lastValidNickname = i;
                            if (i >= 1) {
                                String str = TextUtils.stripColor(splitInto[i-1]);
                                if (str.startsWith("[") && str.endsWith("]"))break;
                            }
                        }
                    }
                    if (lastValidNickname == -1) return;

                    if (lastValidNickname -1 >= 0 && TextUtils.stripColor(splitInto[lastValidNickname - 1]).charAt(0) == '[') lastprefix = lastValidNickname -1;
                    else lastprefix = lastValidNickname;

                    String building = "";
                    for (int i = 0; i < lastprefix; i++) {
                        building += splitInto[i] +" ";
                    }
                    if (prefix != null) building += prefix.getData().replace("&", "§") + " ";
                    for (int i = lastprefix; i < lastValidNickname; i++) {
                        building += splitInto[i] +" ";
                    }
                    if (color != null) {
                        String nick = splitInto[lastValidNickname];
                        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;
                            }
                        }
                        building += " ";
                    } else {
                        building += splitInto[lastValidNickname] + " ";
                    }
                    for (int i = lastValidNickname+1; i<splitInto.length; i++) {
                        building += splitInto[i] + " ";
                    }
                    if (event.message.getUnformattedTextForChat().charAt(event.message.getUnformattedTextForChat().length()-1) != ' ')
                        building = building.substring(0, building.length() - 1);

                    ChatComponentText newChatCompText = new ChatComponentText(building);
                    newChatCompText.setChatStyle(event.message.getChatStyle());
                    newChatCompText.getSiblings().addAll(event.message.getSiblings());

                    event.message = newChatCompText;
                }
            }

    }
}