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
|
package me.Danker.gui.alerts;
import me.Danker.features.Alerts;
import me.Danker.utils.RenderUtils;
import me.Danker.utils.Utils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.client.gui.ScaledResolution;
import net.minecraft.util.EnumChatFormatting;
public class AlertActionGui extends GuiScreen {
private final int id;
private GuiButton goBack;
private GuiButton toggle;
private GuiButton toggleDesktop;
private GuiButton edit;
private GuiButton delete;
public AlertActionGui(int id) {
this.id = id;
}
@Override
public boolean doesGuiPauseGame() {
return false;
}
@Override
public void initGui() {
super.initGui();
ScaledResolution sr = new ScaledResolution(Minecraft.getMinecraft());
int height = sr.getScaledHeight();
int width = sr.getScaledWidth();
Alerts.Alert alert = Alerts.alerts.get(id);
goBack = new GuiButton(0, 2, height - 30, 100, 20, "Go Back");
toggle = new GuiButton(0, width / 2 - 100, (int) (height * 0.1), "Enabled: " + Utils.getColouredBoolean(alert.toggled));
toggleDesktop = new GuiButton(0, width / 2 - 100, (int) (height * 0.2), "Desktop Notification: " + Utils.getColouredBoolean(alert.desktop));
edit = new GuiButton(0, width / 2 - 100, (int) (height * 0.3), "Edit >");
delete = new GuiButton(0, width / 2 - 100, (int) (height * 0.8), EnumChatFormatting.RED + "Delete Alert");
this.buttonList.add(toggle);
this.buttonList.add(toggleDesktop);
this.buttonList.add(edit);
this.buttonList.add(delete);
this.buttonList.add(goBack);
}
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
this.drawDefaultBackground();
super.drawScreen(mouseX, mouseY, partialTicks);
Alerts.Alert alert = Alerts.alerts.get(id);
RenderUtils.drawCenteredText(alert.alert, width, 10, 1D);
}
@Override
public void actionPerformed(GuiButton button) {
Alerts.Alert alert = Alerts.alerts.get(id);
if (button == goBack) {
mc.displayGuiScreen(new AlertsGui(1));
} else if (button == toggle) {
alert.toggle();
toggle.displayString = "Enabled: " + Utils.getColouredBoolean(alert.toggled);
} else if (button == toggleDesktop) {
alert.toggleDesktop();
toggleDesktop.displayString = "Desktop Notification: " + Utils.getColouredBoolean(alert.desktop);
} else if (button == edit) {
mc.displayGuiScreen(new AlertAddGui(alert, id));
} else if (button == delete) {
Alerts.alerts.remove(id);
Alerts.save();
mc.displayGuiScreen(new AlertsGui(1));
return;
}
Alerts.alerts.set(id, alert);
Alerts.save();
}
}
|