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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
|
/*
* 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.chat;
import kr.syeyoung.dungeonsguide.DungeonsGuide;
import kr.syeyoung.dungeonsguide.events.HypixelJoinedEvent;
import kr.syeyoung.dungeonsguide.events.StompConnectedEvent;
import kr.syeyoung.dungeonsguide.stomp.*;
import kr.syeyoung.dungeonsguide.utils.TextUtils;
import lombok.Getter;
import lombok.Setter;
import net.minecraft.client.Minecraft;
import net.minecraft.util.ChatComponentText;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import org.json.JSONArray;
import org.json.JSONObject;
import java.security.SecureRandom;
import java.util.*;
import java.util.function.Consumer;
public class PartyManager implements StompMessageHandler {
public static final PartyManager INSTANCE = new PartyManager();
@Getter
private PartyContext partyContext;
public PartyContext getPartyContext(boolean createIfNeeded) {
PartyContext pc = partyContext == null && createIfNeeded ? partyContext = new PartyContext() : partyContext;
if (createIfNeeded)
pc.addRawMember(Minecraft.getMinecraft().getSession().getUsername());
return pc;
}
@Getter
@Setter
private int maxParty = 5;
@Getter
private String askToJoinSecret = null;
private static final SecureRandom random = new SecureRandom();
private static final String validChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_";
private Set<Consumer<PartyContext>> partyBuiltCallback = new HashSet<>();
public PartyManager() {
ChatProcessor cp = ChatProcessor.INSTANCE;
// Not in Party
cp.subscribe((str, a) -> {
if (str.equals("§cYou are not currently in a party.§r")
|| str.equals("§eYou left the party.§r")
|| str.equals("§cYou must be in a party to join the party channel!§r")
|| str.equals("§cThe party was disbanded because all invites expired and the party was empty§r")
|| str.equals("§cYou are not in a party and were moved to the ALL channel.§r")
|| str.startsWith("§cThe party was disbanded")
|| str.endsWith("§ehas disbanded the party!§r")
|| str.endsWith("§cYou are not in a party")) {
leaveParty();
for (Consumer<PartyContext> partyContextConsumer : partyBuiltCallback) {
try {
partyContextConsumer.accept(null);
} catch (Exception e) {
e.printStackTrace();
}
}
partyBuiltCallback.clear();
a.put("type", "notinparty");
}
return ChatProcessResult.NONE;
});
// All invite
cp.subscribe((str, a) -> {
if (str.endsWith("§aenabled All Invite§r")) {
getPartyContext(true).setAllInvite(true);
a.put("type", "allinvite_on");
} else if (str.endsWith("§cdisabled All Invite§r")
|| str.equals("§cYou are not allowed to invite players.§r")) {
getPartyContext(true).setAllInvite(false);
a.put("type", "allinvite_off");
potentialInvitenessChange();
}
return ChatProcessResult.NONE;
});
// Member building
cp.subscribe(new ChatSubscriber() {
boolean memberExpected;
PartyContext partyContext = new PartyContext();
@Override
public ChatProcessResult process(String txt, Map<String, Object> context) {
if (txt.startsWith("§6Party Members ")) {
memberExpected = true;
partyContext = new PartyContext();
partyContext.setPartyModerator(new TreeSet<>(String.CASE_INSENSITIVE_ORDER));
partyContext.setPartyMember(new TreeSet<>(String.CASE_INSENSITIVE_ORDER));
context.put("type", "member_start");
} else if (txt.startsWith("§eParty ") && txt.contains(":")){
String role = txt.split(":")[0];
String playerNames = TextUtils.stripColor(txt.split(":")[1]);
for (String s : playerNames.split(" ")) {
if (s.isEmpty()) continue;
if (s.equals("●")) continue;
if (s.startsWith("[")) continue;
partyContext.addRawMember(s);
if (role.contains("Moder")) partyContext.addPartyModerator(s);
if (role.contains("Member")) partyContext.addPartyMember(s);
if (role.contains("Leader")) partyContext.setPartyOwner(s);
}
if (role.contains("Moder")) {
partyContext.setModeratorComplete(true);
context.put("type", "member_moder");
}
if (role.contains("Member")) {
partyContext.setMemberComplete(true);
context.put("type", "member_member");
}
if (role.contains("Leader")) {
context.put("type", "member_leader");
}
} else if (txt.startsWith("§9§m---------------------------")) {
if (memberExpected) {
PartyContext old = getPartyContext(true);
old.setPartyOwner(partyContext.getPartyOwner());
old.setPartyModerator(partyContext.getPartyModerator());
old.setPartyMember(partyContext.getPartyMember());
old.setPartyRawMembers(new TreeSet<>(String.CASE_INSENSITIVE_ORDER));
old.getPartyRawMembers().addAll(old.getPartyMember());
old.getPartyRawMembers().addAll(old.getPartyModerator());
old.getPartyRawMembers().add(old.getPartyOwner());
old.setModeratorComplete(true); old.setMemberComplete(true);
old.setRawMemberComplete(true);
old.setPartyExistHypixel(true);
memberExpected = false;
context.put("type", "member_end");
for (Consumer<PartyContext> partyContextConsumer : partyBuiltCallback) {
try {
partyContextConsumer.accept(partyContext);
} catch (Exception e) {
e.printStackTrace();
}
}
partyBuiltCallback.clear();
if (old.getPartyID() == null) {
joinedParty();
}
potentialInvitenessChange();
}
}
return ChatProcessResult.NONE;
}
});
// Player party join / leave
cp.subscribe((str ,a) -> {
if (str.endsWith("§ejoined the party.§r")) {
String username = null;
for (String s : TextUtils.stripColor(str).split(" ")) {
if (s.startsWith("[")) continue;
username = s;
break;
}
if (username != null) {
getPartyContext(true).addPartyMember(username);
}
a.put("type", "party_join");
} else if (str.endsWith("§ehas been removed from the party.§r")
|| str.endsWith("§ehas left the party.§r")) {
String username = null;
for (String s : TextUtils.stripColor(str).split(" ")) {
if (s.startsWith("[")) continue;
username = s;
break;
}
if (username != null && partyContext != null) {
getPartyContext().removeFromParty(username);
}
a.put("type", "party_leave");
} else if (str.endsWith(" They have §r§c60 §r§eseconds to accept.§r")) {
String[] messageSplit = TextUtils.stripColor(str).split(" ");
String inviter = null;
for (String s : messageSplit) {
if (s.startsWith("[")) continue;
inviter = s;
break;
}
if (inviter != null && partyContext != null) {
if (getPartyContext().hasMember(inviter)) {
getPartyContext().setAllInvite(true);
}
}
getPartyContext(true).setPartyExistHypixel(true);
a.put("type", "party_invite_exist");
} else if (str.equals("§cCouldn't find a player with that name!§r") || str.equals("§cYou cannot invite that player since they're not online.")) {
a.put("type", "party_invite_noexist");
String username = Minecraft.getMinecraft().getSession().getUsername();
if (partyContext != null && getPartyContext().hasMember(username)) {
getPartyContext().setAllInvite(true);
}
}
return ChatProcessResult.NONE;
});
// Promotion
cp.subscribe((str, a) -> {
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[] messageSplit = TextUtils.stripColor(str.substring(31)).split(" ");
String newLeader = null;
for (String s : messageSplit) {
if (s.startsWith("[")) continue;
newLeader = s;
break;
}
String oldLeader;
boolean left= false;
if (str.endsWith("§r§eleft§r")) {
oldLeader = messageSplit[messageSplit.length-2];
left = true;
} else {
oldLeader = messageSplit[messageSplit.length-1];
}
if (oldLeader != null && newLeader != null ) {
getPartyContext(true).setPartyOwner(newLeader);
if (left)
getPartyContext(true).removeFromParty(oldLeader);
else
getPartyContext(true).addPartyModerator(oldLeader);
}
a.put("type", "party_transfer");
potentialInvitenessChange();
} 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[] messageSplit = TextUtils.stripColor(str).split(" ");
String oldLeader = null;
for (String s : messageSplit) {
if (s.startsWith("[")) continue;
oldLeader = s;
break;
}
messageSplit = TextUtils.stripColor(str.substring(str.indexOf("has promoted") + 13)).split(" ");
String newLeader = null;
for (String s : messageSplit) {
if (s.startsWith("[")) continue;
newLeader = s;
break;
}
if (oldLeader != null && newLeader != null) {
getPartyContext(true).setPartyOwner(newLeader);
getPartyContext(true).addPartyModerator(oldLeader);
}
a.put("type", "party_transfer");
potentialInvitenessChange();
} 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[] messageSplit = TextUtils.stripColor(str).split(" ");
String oldLeader = null;
for (String s : messageSplit) {
if (s.startsWith("[")) continue;
oldLeader = s;
break;
}
messageSplit = TextUtils.stripColor(str.substring(str.indexOf("has promoted") + 13)).split(" ");
String newModerator = null;
for (String s : messageSplit) {
if (s.startsWith("[")) continue;
newModerator = s;
break;
}
if (oldLeader != null && newModerator != null) {
getPartyContext(true).setPartyOwner(oldLeader);
getPartyContext(true).addPartyModerator(newModerator);
}
a.put("type", "party_promotion");
potentialInvitenessChange();
} else if (str.endsWith("§r§eto Party Member§r")) {
String[] messageSplit = TextUtils.stripColor(str).split(" ");
String oldLeader = null;
for (String s : messageSplit) {
if (s.startsWith("[")) continue;
oldLeader = s;
break;
}
messageSplit = TextUtils.stripColor(str.substring(str.indexOf("has demoted") + 12)).split(" ");
String newMember = null;
for (String s : messageSplit) {
if (s.startsWith("[")) continue;
newMember = s;
break;
}
if (oldLeader != null && newMember != null) {
getPartyContext(true).setPartyOwner(oldLeader);
getPartyContext(true).addPartyMember(newMember);
}
a.put("type", "party_demotion");
potentialInvitenessChange();
}
return ChatProcessResult.NONE;
});
// Player Join
cp.subscribe(new ChatSubscriber() {
boolean joined;
@Override
public ChatProcessResult process(String str, Map<String, Object> context) {
if (str.startsWith("§eYou have joined ")) {
String[] messageSplit = TextUtils.stripColor(str.substring(18)).split(" ");
String leader = null;
for (String s : messageSplit) {
if (s.startsWith("[")) continue;
leader = s;
break;
}
leader = leader.substring(0, leader.length()-2); // remove 's
partyContext = new PartyContext();
getPartyContext().setPartyOwner(leader);
getPartyContext().addPartyMember(Minecraft.getMinecraft().getSession().getUsername());
context.put("type", "party_selfjoin_leader");
joined= true;
} 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;
getPartyContext().addRawMember(player);
}
context.put("type", "party_selfjoin_players");
} else if (str.startsWith("§9§m---------------------------") && joined) {
joined = false;
getPartyContext().setRawMemberComplete(true);
joinedParty();
potentialInvitenessChange();
}
return ChatProcessResult.NONE;
}});
// Player Join Dungon
cp.subscribe((str, a)-> {
if (str.contains("§r§ejoined the dungeon group! (§r§b")) {
String username = TextUtils.stripColor(str).split(" ")[3];
if (username.equalsIgnoreCase(Minecraft.getMinecraft().getSession().getUsername())) {
partyContext = new PartyContext();
requestPartyList((str2) -> {
potentialInvitenessChange();
});
} else {
getPartyContext(true).setMemberComplete(false);
requestPartyList((str2) -> {});
}
}
return ChatProcessResult.NONE;
});
}
public void toggleAllowAskToJoin() {
if (canInvite()) {
if (askToJoinSecret != null) askToJoinSecret = null;
else {
updateAskToJoin();
}
}
}
public void updateAskToJoin() {
StringBuilder secretBuilder = new StringBuilder();
for (int i = 0; i < 20; i++) {
secretBuilder.append(validChars.charAt(random.nextInt(validChars.length())));
}
askToJoinSecret = secretBuilder.toString();
StompInterface stompInterface = DungeonsGuide.getDungeonsGuide().getStompConnection();
stompInterface.send(new StompPayload().payload(new JSONObject().put("secret", askToJoinSecret).toString()).header("destination", "/app/party.setjoinsecret"));
}
public static ChatSubscriber dashShredder() {
return (str, a) -> (int)a.get("removed") == 0 && str.startsWith("§9§m---------------------------") ? ChatProcessResult.REMOVE_LISTENER_AND_CHAT : ChatProcessResult.NONE;
}
public static ChatSubscriber typeShredder(boolean end, String... types) {
return (str, a) -> (int)a.get("removed") == 0 &&Arrays.stream(types).anyMatch(s -> s.equals(a.getOrDefault("type", null))) ? (end ? ChatProcessResult.REMOVE_LISTENER_AND_CHAT : ChatProcessResult.REMOVE_CHAT) : ChatProcessResult.NONE;
}
public static ChatSubscriber combinedShredder(ChatSubscriber... chatSubscribers) {
return (str, a) -> {
boolean removeChat = false;
boolean removeListener = false;
for (ChatSubscriber chatSubscriber : chatSubscribers) {
ChatProcessResult chatProcessResult = chatSubscriber.process(str, a);
if (chatProcessResult.isRemoveChat()) removeChat = true;
if (chatProcessResult.isRemoveListener()) removeListener = true;
}
return (removeChat && removeListener) ? ChatProcessResult.REMOVE_LISTENER_AND_CHAT : (removeChat ? ChatProcessResult.REMOVE_CHAT : (removeListener ? ChatProcessResult.REMOVE_LISTENER : ChatProcessResult.NONE));
};
}
@SubscribeEvent
public void onHypixelJoin(HypixelJoinedEvent skyblockJoinedEvent) {
partyContext = null;
requestPartyList((a) -> {
if (a == null) return;
if (isLeader() || isModerator()) return;
if (a.getAllInvite() != null) return;
requestAllInvite();
});
}
private void leaveParty() {
if (partyContext != null) {
getPartyContext().setPartyExistHypixel(false);
if (getPartyContext().isSelfSolo()) return;
if (getPartyContext().getPartyID() != null) {
JSONObject object = new JSONObject();
object.put("partyid", getPartyContext().getPartyID());
StompInterface stompInterface = DungeonsGuide.getDungeonsGuide().getStompConnection();
stompInterface.send(new StompPayload().payload(object.toString()).header("destination", "/app/party.leave"));
}
}
partyContext = new PartyContext();
playerInvAntiSpam.clear();
getPartyContext().setPartyExistHypixel(false);
getPartyContext().setPartyOwner(Minecraft.getMinecraft().getSession().getUsername());
getPartyContext().setPartyModerator(new TreeSet<>(String.CASE_INSENSITIVE_ORDER)); getPartyContext().setMemberComplete(true);
getPartyContext().setPartyMember(new TreeSet<>(String.CASE_INSENSITIVE_ORDER)); getPartyContext().setModeratorComplete(true);
getPartyContext().setAllInvite(false);
joinedParty();
}
private void joinedParty() {
JSONArray jsonArray = new JSONArray();
for (String member : getPartyContext().getPartyRawMembers()) {
jsonArray.put(member);
}
JSONObject object = new JSONObject();
object.put("members", jsonArray);
StompInterface stompInterface = DungeonsGuide.getDungeonsGuide().getStompConnection();
stompInterface.send(new StompPayload().payload(object.toString()).header("destination", "/app/party.join"));
getPartyContext().setPartyID("!@#!@#!@#..........FETCHING..........$!@$!@$!@$"+UUID.randomUUID().toString());
}
public boolean isLeader() {
return partyContext != null && getPartyContext().hasLeader(Minecraft.getMinecraft().getSession().getUsername()); // "getUsername"
}
public boolean isModerator() {
return partyContext != null && getPartyContext().hasModerator(Minecraft.getMinecraft().getSession().getUsername());
}
public boolean canInvite() {
return isLeader() || isModerator() || (partyContext != null && getPartyContext().getAllInvite() != null && getPartyContext().getAllInvite());
}
private boolean requested = false;
public void requestPartyList(Consumer<PartyContext> onPartyCallback) {
if (requested) {
partyBuiltCallback.add(onPartyCallback);
return;
}
requested = true;
ChatProcessor.INSTANCE.addToChatQueue("/pl", () -> {
ChatProcessor.INSTANCE.subscribe(dashShredder());
ChatProcessor.INSTANCE.subscribe(combinedShredder(typeShredder(true, "member_end"), dashShredder(), typeShredder(false,"notinparty", "member_start", "member_moder", "member_leader", "member_member")));
}, true);
partyBuiltCallback.add(onPartyCallback);
partyBuiltCallback.add(pc -> requested=false);
}
public void requestAllInvite() {
if (isLeader() || isModerator()) return;
if (partyContext != null && getPartyContext().getAllInvite() != null) return;
ChatProcessor.INSTANCE.addToChatQueue("/p invite -", () -> {
ChatProcessor.INSTANCE.subscribe(dashShredder());
ChatProcessor.INSTANCE.subscribe(typeShredder(true, "notinparty", "allinvite_off", "party_invite_noexist"));
ChatProcessor.INSTANCE.subscribe(dashShredder());
}, true);
}
private Map<String, Long> playerInvAntiSpam = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
@Override
public void handle(StompInterface stompInterface, StompPayload stompPayload) {
JSONObject object = new JSONObject(stompPayload.payload());
if ("/user/queue/party.check".equals(stompPayload.headers().get("destination"))) {
String playerName = object.getString("player");
String token = object.getString("token");
if (partyContext == null) {
requestPartyList((pc) -> {
boolean contains = pc.getPartyRawMembers().contains(playerName);
if (!contains) {
DungeonsGuide.getDungeonsGuide().getStompConnection().send(new StompPayload().payload(new JSONObject().put("status", "failure").put("token", token).toString()).header("destination", "/app/party.check.resp"));
} else {
DungeonsGuide.getDungeonsGuide().getStompConnection().send(new StompPayload().payload(new JSONObject().put("status", "success").put("token", token).toString()).header("destination", "/app/party.check.resp"));
}
});
} else {
if (getPartyContext().getPartyRawMembers().contains(playerName)) {
DungeonsGuide.getDungeonsGuide().getStompConnection().send(new StompPayload().payload(new JSONObject().put("status", "success").put("token", token).toString()).header("destination", "/app/party.check.resp"));
} else if (getPartyContext().isMemberComplete() && getPartyContext().isModeratorComplete() && getPartyContext().getPartyOwner() != null) {
DungeonsGuide.getDungeonsGuide().getStompConnection().send(new StompPayload().payload(new JSONObject().put("status", "failure").put("token", token).toString()).header("destination", "/app/party.check.resp"));
} else {
requestPartyList((pc) -> {
boolean contains = pc.getPartyRawMembers().contains(playerName);
if (!contains) {
DungeonsGuide.getDungeonsGuide().getStompConnection().send(new StompPayload().payload(new JSONObject().put("status", "failure").put("token", token).toString()).header("destination", "/app/party.check.resp"));
} else {
DungeonsGuide.getDungeonsGuide().getStompConnection().send(new StompPayload().payload(new JSONObject().put("status", "success").put("token", token).toString()).header("destination", "/app/party.check.resp"));
}
});
}
}
} else if ("/user/queue/party.broadcast".equals(stompPayload.headers().get("destination"))) {
try {
Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("§eDungeons Guide §7:: Message Broadcasted from player:: \n" + new JSONObject(stompPayload.payload()).getString("payload")));
} catch (Exception e) {
e.printStackTrace();
}
} 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) && partyContext != null && getPartyContext().getPartyRawMembers().size() < maxParty && playerInvAntiSpam.getOrDefault(playerName, 0L) < System.currentTimeMillis() - 5000) {
playerInvAntiSpam.put(playerName, System.currentTimeMillis());
ChatProcessor.INSTANCE.addToChatQueue("/p invite "+playerName,() -> {}, true);
}
} else if ("/user/queue/party.askedtojoin.resp".equals(stompPayload.headers().get("destination"))) {
String invFrom = object.getString("username");
String token2 = object.getString("token");
if (!token2.equals(lastToken)) return;
lastToken = null;
ChatProcessor.INSTANCE.addToChatQueue("/p accept "+invFrom, () -> {}, true);
long end = System.currentTimeMillis() + 3000;
ChatProcessor.INSTANCE.subscribe((str, a) -> {
if (!str.contains("§r§ehas invited you to join their party!")) return System.currentTimeMillis() > end ? ChatProcessResult.REMOVE_LISTENER : ChatProcessResult.NONE;
String[] messageSplit = TextUtils.stripColor(str).split(" ");
String inviter = null;
for (String s : messageSplit) {
if (s.startsWith("[")) continue;
if (s.startsWith("-")) continue;;
inviter = s;
break;
}
if (invFrom.equalsIgnoreCase(inviter)) {
ChatProcessor.INSTANCE.addToChatQueue("/p accept "+invFrom, () -> {}, true);
}
return ChatProcessResult.NONE;
});
} else {
String str = object.getString("status");
if ("success".equals(str) && partyContext != null) {
getPartyContext().setPartyID(object.getString("partyId"));
if (askToJoinSecret != null) {
updateAskToJoin();
}
} else if (partyContext != null){
getPartyContext().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.broadcast").build());
stompConnectedEvent.getStompInterface().subscribe(StompSubscription.builder()
.stompMessageHandler(this).ackMode(StompSubscription.AckMode.AUTO).destination("/user/queue/party.join").build());
stompConnectedEvent.getStompInterface().subscribe(StompSubscription.builder()
.stompMessageHandler(this).ackMode(StompSubscription.AckMode.AUTO).destination("/user/queue/party.askedtojoin.resp").build());
}
private String lastToken;
public void joinWithToken(String secret) {
lastToken = secret;
if (partyContext != null && getPartyContext().isPartyExistHypixel())
ChatProcessor.INSTANCE.addToChatQueue("/p leave", () -> {}, true);
DungeonsGuide.getDungeonsGuide().getStompConnection().send(new StompPayload().method(StompHeader.SEND)
.header("destination", "/app/party.askedtojoin")
.payload(new JSONObject().put("token", secret).toString()));
}
private void potentialInvitenessChange() {
if (askToJoinSecret != null && !canInvite()) askToJoinSecret = null;
}
}
|