aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/Danker/features/Alerts.java
blob: aab99b327e8cca0c670fb5f67f716562acd69e2d (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
package me.Danker.features;

import com.google.gson.GsonBuilder;
import me.Danker.commands.ToggleCommand;
import me.Danker.utils.Utils;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.StringUtils;
import net.minecraftforge.client.event.ClientChatReceivedEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

import java.awt.*;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

public class Alerts {

    public static List<Alert> alerts = new ArrayList<>();
    public static String configFile;

    @SubscribeEvent
    public void onChat(ClientChatReceivedEvent event) {
        if (!ToggleCommand.alerts || event.type == 2) return;

        String message = StringUtils.stripControlCodes(event.message.getUnformattedText());

        for (Alert alert : alerts) {
            if (!alert.toggled) continue;

            boolean location;
            switch (alert.location) {
                case "Skyblock":
                    location = Utils.inSkyblock;
                    break;
                case "Dungeons":
                    location = Utils.inDungeons;
                    break;
                default:
                    location = true;
            }
            if (!location) continue;

            boolean trigger;
            switch (alert.mode) {
                case "Starts With":
                    trigger = message.startsWith(alert.message);
                    break;
                case "Contains":
                    trigger = message.contains(alert.message);
                    break;
                case "Ends With":
                    trigger = message.endsWith(alert.message);
                    break;
                default:
                    continue;
            }

            if (trigger) {
                Utils.createTitle(EnumChatFormatting.RED + alert.alert.replace("&", "§"), 2);

                if (alert.desktop) {
                    try {
                        final SystemTray tray = SystemTray.getSystemTray();
                        final Image image = Toolkit.getDefaultToolkit().createImage("icon.png");
                        final TrayIcon trayIcon = new TrayIcon(image, "Alert");
                        trayIcon.setImageAutoSize(true);
                        trayIcon.setToolTip("Alert");
                        tray.add(trayIcon);
                        trayIcon.displayMessage(StringUtils.stripControlCodes(alert.alert), message, TrayIcon.MessageType.INFO);
                        tray.remove(trayIcon);
                    } catch (Exception ex) {
                        ex.printStackTrace();
                    }
                }

                return;
            }
        }
    }

    public static void saveToFile() {
        try (FileWriter writer = new FileWriter(configFile)) {
            new GsonBuilder().create().toJson(alerts, writer);
            writer.flush();
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }

    public static class Alert {

        public String mode;
        public String location;
        public String message;
        public String alert;
        public boolean desktop;
        public boolean toggled;

        public Alert(String mode, String location, String message, String alert, boolean desktop, boolean toggled) {
            this.mode = mode;
            this.location = location;
            this.message = message;
            this.alert = alert;
            this.desktop = desktop;
            this.toggled = toggled;
        }

        public void toggle() {
            toggled = !toggled;
        }

        public void toggleDesktop() {
            desktop = !desktop;
        }

    }

}