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

import akka.event.Logging;
import me.Danker.handlers.TextRenderer;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiLabel;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.client.gui.ScaledResolution;

import javax.xml.soap.Text;
import java.util.ArrayList;
import java.util.List;

public class WarningGui extends GuiScreen {
    private GuiButton close;

    public WarningGui(){

    }

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

        close = new GuiButton(0, width / 2 - 100, (int) (height * 0.6), "Close");

        this.buttonList.add(close);
    }

    @Override
    public void drawScreen(int mouseX, int mouseY, float partialTicks) {
        this.drawDefaultBackground();
        String text0 = "§cWARNING!§0";
        int text0Width = mc.fontRendererObj.getStringWidth(text0);
        new TextRenderer(mc, text0, (int)(width * 0.45) - text0Width / 2, (int) (height * 0.1), 2 );
        String text1 = "You are using SpiderFrog's Old Animations mod.";
        int text1Width = mc.fontRendererObj.getStringWidth(text1);
        new TextRenderer(mc, text1, width / 2 - text1Width / 2, (int) (height * 0.3), 1D );
        String text2 = "This mod breaks Danker's Skyblock Mod.";
        int text2Width = mc.fontRendererObj.getStringWidth(text2);
        new TextRenderer(mc, text2, width / 2 - text2Width / 2, (int) (height * 0.4), 1D);
        super.drawScreen(mouseX, mouseY, partialTicks);
    }

    @Override
    public void actionPerformed(GuiButton button){
        if(button == close) {
            Minecraft.getMinecraft().displayGuiScreen(null);
        }
    }
}