aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/Danker/gui/OnlySlayerGui.java
blob: c637ff9829090366e893cbc48c1ce268c9e831f5 (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
package me.Danker.gui;

import me.Danker.features.BlockWrongSlayer;
import me.Danker.handlers.ConfigHandler;
import me.Danker.utils.RenderUtils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.client.gui.ScaledResolution;

public class OnlySlayerGui extends GuiScreen {

    private int onlyNumberInt = 4;
    private String onlyName = "Revenant Horror";

    private GuiButton goBack;
    private GuiButton off;
    private GuiButton zombie;
    private GuiButton spider;
    private GuiButton wolf;
    private GuiButton enderman;
    private GuiButton blaze;
    private GuiButton one;
    private GuiButton two;
    private GuiButton three;
    private GuiButton four;
    private GuiButton five;

    @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();

        onlyName = BlockWrongSlayer.onlySlayerName;
        switch (BlockWrongSlayer.onlySlayerNumber) {
            case "I":
                onlyNumberInt = 1;
                break;
            case "II":
                onlyNumberInt = 2;
                break;
            case "III":
                onlyNumberInt = 3;
                break;
            case "IV":
            default:
                onlyNumberInt = 4;
                break;
            case "V":
                onlyNumberInt = 5;
                break;
        }

        goBack = new GuiButton(0, 2, height - 30, 100, 20, "Go Back");
        off = new GuiButton(0, width / 2 - 100, (int) (height * 0.3), "Off");
        zombie = new GuiButton(0, width / 2 - 270, (int) (height * 0.4), 100, 20, "Zombie");
        spider = new GuiButton(0, width / 2 - 160, (int) (height * 0.4), 100, 20, "Spider");
        wolf = new GuiButton(0, width / 2 - 50, (int) (height * 0.4), 100, 20, "Wolf");
        enderman = new GuiButton(0, width / 2 + 60, (int) (height * 0.4), 100, 20, "Enderman");
        blaze = new GuiButton(0, width / 2 + 170, (int) (height * 0.4), 100, 20, "Blaze");
        one = new GuiButton(0, width / 2 - 190, (int) (height * 0.6), 60, 20, "I");
        two = new GuiButton(0, width / 2 - 110, (int) (height * 0.6), 60, 20, "II");
        three = new GuiButton(0, width / 2 - 30, (int) (height * 0.6), 60, 20, "III");
        four = new GuiButton(0, width / 2 + 50, (int) (height * 0.6), 60, 20, "IV");
        five = new GuiButton(0, width / 2 + 130, (int) (height * 0.6), 60, 20, "V");

        this.buttonList.add(off);
        this.buttonList.add(zombie);
        this.buttonList.add(spider);
        this.buttonList.add(wolf);
        this.buttonList.add(enderman);
        this.buttonList.add(blaze);
        this.buttonList.add(one);
        this.buttonList.add(two);
        this.buttonList.add(three);
        this.buttonList.add(four);
        this.buttonList.add(five);
        this.buttonList.add(goBack);
    }

    @Override
    public void drawScreen(int mouseX, int mouseY, float partialTicks) {
        this.drawDefaultBackground();

        String displayText;
        if (BlockWrongSlayer.onlySlayerName.equals("")) {
            displayText = "Only Allow Slayer: Off";
        } else {
            displayText = "Only Allow Slayer: " + BlockWrongSlayer.onlySlayerName + " " + BlockWrongSlayer.onlySlayerNumber;
        }
        RenderUtils.drawCenteredText(displayText, width, 10, 1D);

        super.drawScreen(mouseX, mouseY, partialTicks);
    }

    @Override
    public void actionPerformed(GuiButton button) {
        if (button == goBack) {
            mc.displayGuiScreen(new DankerGui(1, ""));
            return;
        } else if (button == off) {
            BlockWrongSlayer.onlySlayerName = "";
            BlockWrongSlayer.onlySlayerNumber = "";
            ConfigHandler.writeStringConfig("toggles", "BlockSlayer", "");
            return;
        } else if (button == zombie) {
            onlyName = "Revenant Horror";
        } else if (button == spider) {
            onlyName = "Tarantula Broodfather";
        } else if (button == wolf) {
            onlyName = "Sven Packmaster";
        } else if (button == enderman) {
            onlyName = "Voidgloom Seraph";
        } else if (button == blaze) {
            onlyName = "Inferno Demonlord";
        } else if (button == one) {
            onlyNumberInt = 1;
        } else if (button == two) {
            onlyNumberInt = 2;
        } else if (button == three) {
            onlyNumberInt = 3;
        } else if (button == four) {
            onlyNumberInt = 4;
        } else if (button == five) {
            onlyNumberInt = 5;
        }

        String onlyNumber;
        switch (onlyNumberInt) {
            case 1:
                onlyNumber = "I";
                break;
            case 2:
                onlyNumber = "II";
                break;
            case 3:
                onlyNumber = "III";
                break;
            case 4:
                onlyNumber = "IV";
                break;
            case 5:
                onlyNumber = "V";
                break;
            default:
                onlyNumber = "IV";
        }

        BlockWrongSlayer.onlySlayerName = onlyName;
        BlockWrongSlayer.onlySlayerNumber = onlyNumber;
        ConfigHandler.writeStringConfig("toggles", "BlockSlayer", BlockWrongSlayer.onlySlayerName + " " + BlockWrongSlayer.onlySlayerNumber);
    }

}