aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/party/PartyManager.java
blob: 36ce815f52f09ee356b1a2ce54633d4dfa734faf (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
package kr.syeyoung.dungeonsguide.party;

import kr.syeyoung.dungeonsguide.RichPresenceManager;
import kr.syeyoung.dungeonsguide.commands.CommandReparty;
import kr.syeyoung.dungeonsguide.e;
import kr.syeyoung.dungeonsguide.events.HypixelJoinedEvent;
import kr.syeyoung.dungeonsguide.events.SkyblockJoinedEvent;
import kr.syeyoung.dungeonsguide.events.StompConnectedEvent;
import kr.syeyoung.dungeonsguide.stomp.StompInterface;
import kr.syeyoung.dungeonsguide.stomp.StompMessageHandler;
import kr.syeyoung.dungeonsguide.stomp.StompPayload;
import kr.syeyoung.dungeonsguide.stomp.StompSubscription;
import kr.syeyoung.dungeonsguide.utils.TextUtils;
import lombok.Getter;
import net.minecraft.client.Minecraft;
import net.minecraftforge.client.event.ClientChatReceivedEvent;
import net.minecraftforge.fml.common.eventhandler.EventPriority;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent;
import org.json.JSONArray;
import org.json.JSONObject;
import scala.util.parsing.json.JSON;

import java.security.SecureRandom;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

public class PartyManager implements StompMessageHandler {
    public static final PartyManager INSTANCE = new PartyManager();

    @Getter
    private String partyID = null;
    @Getter
    private String askToJoinSecret = null;

    private SecureRandom random = new SecureRandom();
    private static final String validChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_";

    @Getter
    private boolean allowAskToJoin = false;
    @Getter
    private boolean canInvite = false;
    private int invitedDash  =0;

    public void toggleAllowAskToJoin() {
        if (canInvite) allowAskToJoin = !allowAskToJoin;
        if (allowAskToJoin) {
            generateNewAskToJoinSecret();
        }
    }

    public int getMemberCount() {
        return Math.max(1, members.size());
    }

    public void setPartyID(String partyID) {
        if (this.partyID != null && partyID == null) {
            JSONObject object = new JSONObject();
            object.put("members", new JSONArray());
            StompInterface stompInterface = e.getDungeonsGuide().getStompConnection();
            stompInterface.send(new StompPayload().payload(object.toString()).header("destination", "/app/party.join"));
        }

        if (partyID != null && !partyID.equals(this.partyID)) {
            Minecraft.getMinecraft().thePlayer.sendChatMessage("/p invite -");
            invitedDash = 1;
        } else {
            canInvite = true;
            allowAskToJoin = false;
        }
        this.partyID = partyID;
        this.askToJoinSecret = null;

        if (allowAskToJoin) {
            generateNewAskToJoinSecret();
        } else {
            RichPresenceManager.INSTANCE.updatePresence();
        }
    }

    public void generateNewAskToJoinSecret() {
        if (partyID == null) {
            JSONObject object = new JSONObject();
            object.put("members", new JSONArray());
            StompInterface stompInterface = e.getDungeonsGuide().getStompConnection();
            stompInterface.send(new StompPayload().payload(object.toString()).header("destination", "/app/party.join"));
        }

        StringBuilder secretBuilder = new StringBuilder();
        for (int i = 0; i < 20; i++) {
            secretBuilder.append(validChars.charAt(random.nextInt(validChars.length())));
        }
        this.askToJoinSecret = secretBuilder.toString();

        StompInterface stompInterface = e.getDungeonsGuide().getStompConnection();
        stompInterface.send(new StompPayload().payload(new JSONObject().put("secret", askToJoinSecret).toString()).header("destination", "/app/party.setjoinsecret"));
        RichPresenceManager.INSTANCE.updatePresence();
    }

    private int partyJoin =0;
    private Set<String> members = new HashSet<>();
    private Map<String, Long> recentlyJoined = new HashMap<>();
    @SubscribeEvent(priority = EventPriority.HIGHEST)
    public void onMessage(ClientChatReceivedEvent chatReceivedEvent) {
        if (chatReceivedEvent.type == 2) return;

        String str = chatReceivedEvent.message.getFormattedText();
        System.out.println(str);


        if (str.startsWith("§eYou have joined ")) {
            members.clear();
            String strs[] = TextUtils.stripColor(str).split(" ");
            for (String s : strs) {
                if (s.endsWith("'s")) {
                    members.add(s.substring(0, s.indexOf("'s")));
                    break;
                }
            }
            members.add(Minecraft.getMinecraft().getSession().getUsername());
            partyJoin = 100;
        } else if (str.startsWith("§eYou'll be partying with: ")) {
            String[] players = TextUtils.stripColor(str.substring(27)).split(" ");
            for (String player : players) {
                if (player.startsWith("[")) continue;
                members.add(player);
            }
        } else if (str.equals("§9§m-----------------------------§r")) {
            if ((checkPlayer > 0 || partyJoin > 0) && partyJoin != 100) {
                chatReceivedEvent.setCanceled(true);
            }
            if (partyJoin == 2 || partyJoin == 100) {
                partyJoin = 0;
                // REQ PARTY JOIN

                JSONArray jsonArray = new JSONArray();
                for (String member : members) {
                    jsonArray.put(member);
                }
                JSONObject object = new JSONObject();
                object.put("members", jsonArray);
                StompInterface stompInterface = e.getDungeonsGuide().getStompConnection();
                stompInterface.send(new StompPayload().payload(object.toString()).header("destination", "/app/party.join"));
            }
            if (checkPlayer == 3) {
                checkPlayer = 0;
                String playerName = theObject.getString("player");
                String token = theObject.getString("token");
                if (!members.contains(playerName)) {
                    e.getDungeonsGuide().getStompConnection().send(new StompPayload().payload(new JSONObject().put("status", "failure").put("token", token).toString()).header("destination", "/app/party.check.resp"));
                } else {
                    e.getDungeonsGuide().getStompConnection().send(new StompPayload().payload(new JSONObject().put("status", "success").put("token", token).toString()).header("destination", "/app/party.check.resp"));
                }
            }
            if (invitedDash > 0) {
                invitedDash++;
                chatReceivedEvent.setCanceled(true);
            }
            if (invitedDash == 3) invitedDash = 0;
        } else if (str.endsWith("§ejoined the party.§r")) {
            String asd = null;
            for (String s : TextUtils.stripColor(str).split(" ")) {
                if (s.startsWith("[")) continue;
                asd = s;
                break;
            }
            if (asd != null)
                members.add(asd);
        } else if (str.contains("§r§ejoined the dungeon group! (§r§b")) {
            String username = TextUtils.stripColor(str).split(" ")[3];
            if (username.equalsIgnoreCase(Minecraft.getMinecraft().getSession().getUsername())) {
                Minecraft.getMinecraft().thePlayer.sendChatMessage("/pl");
                partyJoin = 1;
            } else {
                members.add(username);
            }
        } else if (str.endsWith("§ehas been removed from the party.§r")
                || str.endsWith("§ehas left the party.§r")) {
            String asd = null;
            for (String s : TextUtils.stripColor(str).split(" ")) {
                if (s.startsWith("[")) continue;
                asd = s;
                break;
            }
            if (asd != null)
                members.remove(asd);
        } else if ((str.equals("§eYou left the party.§r")
                || str.startsWith("§cThe party was disbanded")
                || str.endsWith("§ehas disbanded the party!§r"))
        ) {
            members.clear();
            setPartyID(null);
        } else if (str.startsWith("§6Party Members ")) {
            if (checkPlayer > 0|| partyJoin > 0) {
                chatReceivedEvent.setCanceled(true);
            }
            if (partyJoin == 1) partyJoin = 2;
            if (checkPlayer == 2) checkPlayer = 3;
            members.clear();
        } else if (str.startsWith("§cYou are not currently in a party.§r")) {
            members.clear();
            partyJoin = 0;
            setPartyID(null);
        } else if (TextUtils.stripColor(str).trim().isEmpty()) {
            if ((checkPlayer > 0|| partyJoin > 0) && partyJoin != 100) {chatReceivedEvent.setCanceled(true);}
        } else if (str.startsWith("§cYou are not in a party")) {
            members.clear();
            partyJoin = 0;
            setPartyID(null);
        } else if (str.startsWith("§eParty ") && str.contains(":")) {
            if (checkPlayer > 0|| partyJoin > 0) {chatReceivedEvent.setCanceled(true);}
            String playerNames = TextUtils.stripColor(str.split(":")[1]);
            for (String s : playerNames.split(" ")) {
                if (s.isEmpty()) continue;
                if (s.equals("●")) continue;
                if (s.startsWith("[")) continue;
                members.add(s);
            }
        } else if (str.equals("§cYou are not allowed to invite players.§r")) {
            if (invitedDash > 0) chatReceivedEvent.setCanceled(true);
            canInvite = false;
            allowAskToJoin = false;
            askToJoinSecret = "";
            RichPresenceManager.INSTANCE.updatePresence();
        } else if (str.equals("§cCouldn't find a player with that name!§r")) {
            canInvite = true;
            if (invitedDash > 0) chatReceivedEvent.setCanceled(true);
        } else if (str.equals("§cYou cannot invite that player since they're not online.")) {
            canInvite = true;
        } else if (str.endsWith("§aenabled All Invite§r")) {
            canInvite = true;
        } else if (str.endsWith("§cdisabled All Invite§r")) {
            canInvite = false;
            allowAskToJoin = false;
            askToJoinSecret = "";
            RichPresenceManager.INSTANCE.updatePresence();
            Minecraft.getMinecraft().thePlayer.sendChatMessage("/p invite -");
            invitedDash = 1;
        } else if (str.endsWith("§r§eto Party Moderator§r")) {
            // §b[MVP§r§f+§r§b] apotato321§r§e has promoted §r§a[VIP§r§6+§r§a] syeyoung §r§eto Party Moderator§r
            String[] thetext = TextUtils.stripColor(str).split(" ");
            int seenThings = 0;
            for (String s : thetext) {
                if (s.equals("has") && seenThings == 0) seenThings = 1;
                else if (s.equals("promoted") && seenThings == 1) seenThings = 2;
                else if (s.equals("[")) continue;
                else if (seenThings == 2) {
                    if (s.equals(Minecraft.getMinecraft().getSession().getUsername())) {
                        canInvite = true;
                    } else {
                        Minecraft.getMinecraft().thePlayer.sendChatMessage("/p invite -");
                        invitedDash = 1;
                    }
                } else {
                    seenThings = 0;
                }
            }
        } else if (str.startsWith("§eThe party was transferred to ")) {
            //§eThe party was transferred to §r§b[MVP§r§f+§r§b] apotato321 §r§eby §r§a[VIP§r§6+§r§a] syeyoung§r
            String[] thetext = TextUtils.stripColor(str.substring(31)).split(" ");
            String asd = null;
            for (String s : thetext) {
                if (s.startsWith("[")) continue;
                asd = s;
                break;
            }
            if (asd != null && Minecraft.getMinecraft().getSession().getUsername().equalsIgnoreCase(asd)) {
                canInvite = true;
            } else {

                Minecraft.getMinecraft().thePlayer.sendChatMessage("/p invite -");
                invitedDash = 1;
            }
        } else if (str.endsWith("§eto Party Leader§r")) {
            // §a[VIP§r§6+§r§a] syeyoung§r§e has promoted §r§b[MVP§r§f+§r§b] apotato321 §r§eto Party Leader§r
            String[] thetext = TextUtils.stripColor(str).split(" ");
            int seenThings = 0;
            for (String s : thetext) {
                if (s.equals("has") && seenThings == 0) seenThings = 1;
                else if (s.equals("promoted") && seenThings == 1) seenThings = 2;
                else if (s.equals("[")) continue;
                else if (seenThings == 2) {
                    if (s.equals(Minecraft.getMinecraft().getSession().getUsername())) {
                        canInvite = true;
                    } else {
                        Minecraft.getMinecraft().thePlayer.sendChatMessage("/p invite -");
                        invitedDash = 1;
                    }
                } else {
                    seenThings = 0;
                }
            }
        }
    }
    @SubscribeEvent
    public void onTick(TickEvent.ClientTickEvent clientTickEvent) {
        if (clientTickEvent.phase == TickEvent.Phase.START) {
            if (checkPlayer == 1) {
                checkPlayer = 2;
                Minecraft.getMinecraft().thePlayer.sendChatMessage("/pl");
            }
        }
    }

    @SubscribeEvent
    public void onHypixelJoin(HypixelJoinedEvent skyblockJoinedEvent) {
        Minecraft.getMinecraft().thePlayer.sendChatMessage("/pl");
        partyJoin = 1;
    }

    private int checkPlayer = 0;
    private JSONObject theObject;

    @Override
    public void handle(StompInterface stompInterface, StompPayload stompPayload) {
        JSONObject object = new JSONObject(stompPayload.payload());
        if ("/user/queue/party.check".equals(stompPayload.headers().get("destination"))) {
            checkPlayer = 1;
            theObject = object;
        } else if ("/user/queue/party.join".equals(stompPayload.headers().get("destination"))) {
            String playerName = object.getString("player");
            String secret = object.getString("secret");
            if (secret.equals(askToJoinSecret) && partyID != null) {
                Minecraft.getMinecraft().thePlayer.sendChatMessage("/p invite "+playerName);
            }
        } else {
            String str = object.getString("status");
            if ("success".equals(str)) {
                setPartyID(object.getString("partyId"));
            } else {
                setPartyID(null);
            }
        }
    }

    @SubscribeEvent
    public void stompConnect(StompConnectedEvent stompConnectedEvent) {
        stompConnectedEvent.getStompInterface().subscribe(StompSubscription.builder()
        .stompMessageHandler(this).ackMode(StompSubscription.AckMode.AUTO).destination("/user/queue/party.resp").build());
        stompConnectedEvent.getStompInterface().subscribe(StompSubscription.builder()
                .stompMessageHandler(this).ackMode(StompSubscription.AckMode.AUTO).destination("/user/queue/party.check").build());
        stompConnectedEvent.getStompInterface().subscribe(StompSubscription.builder()
                .stompMessageHandler(this).ackMode(StompSubscription.AckMode.AUTO).destination("/user/queue/party.join").build());
    }
}