104 lines
3.1 KiB
Java
104 lines
3.1 KiB
Java
package mekanism.client;
|
|
|
|
import mekanism.common.MekanismUtils;
|
|
import mekanism.common.PacketHandler;
|
|
import mekanism.common.PacketHandler.Transmission;
|
|
import mekanism.common.network.PacketWeather;
|
|
import mekanism.common.network.PacketWeather.WeatherType;
|
|
import net.minecraft.client.gui.GuiButton;
|
|
import net.minecraft.client.gui.GuiScreen;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public class GuiWeatherOrb extends GuiScreen
|
|
{
|
|
private static EntityPlayer player;
|
|
|
|
public GuiWeatherOrb(EntityPlayer entityplayer)
|
|
{
|
|
player = entityplayer;
|
|
}
|
|
|
|
@Override
|
|
public void initGui()
|
|
{
|
|
buttonList.clear();
|
|
buttonList.add(new GuiButton(0, width / 2 - 80, height / 2 - 65, 50, 20, "Clear"));
|
|
buttonList.add(new GuiButton(1, width / 2 - 80, height / 2 - 35, 50, 20, "Storm"));
|
|
buttonList.add(new GuiButton(2, width / 2 + 5, height / 2 - 65, 50, 20, "Haze"));
|
|
buttonList.add(new GuiButton(3, width / 2 + 5, height / 2 - 35, 50, 20, "Rain"));
|
|
buttonList.add(new GuiButton(4, width / 2 - 94, height / 2 + 30, 80, 20, "Credits"));
|
|
buttonList.add(new GuiButton(5, width / 2 - 10, height / 2 + 30, 80, 20, "Close"));
|
|
}
|
|
|
|
@Override
|
|
public void drawScreen(int i, int j, float f)
|
|
{
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
mc.renderEngine.bindTexture("/mods/mekanism/gui/GuiWeatherOrb.png");
|
|
drawTexturedModalRect(width / 2 - 100, height / 2 - 100, 0, 0, 176, 166);
|
|
drawString(fontRenderer, "Weather Orb", width / 2 - 45, height / 2 - 95, 0xffffff);
|
|
super.drawScreen(i, j, f);
|
|
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
|
GL11.glEnable(GL11.GL_CULL_FACE);
|
|
GL11.glEnable(GL11.GL_ALPHA_TEST);
|
|
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
|
}
|
|
|
|
@Override
|
|
public void keyTyped(char c, int i)
|
|
{
|
|
if (i == 1)
|
|
{
|
|
mc.displayGuiScreen(null);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean doesGuiPauseGame()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void actionPerformed(GuiButton guibutton)
|
|
{
|
|
if(guibutton.id == 0)
|
|
{
|
|
MekanismUtils.doFakeEntityExplosion(player);
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketWeather().setParams(WeatherType.CLEAR));
|
|
mc.displayGuiScreen(null);
|
|
}
|
|
if(guibutton.id == 1)
|
|
{
|
|
MekanismUtils.doFakeEntityExplosion(player);
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketWeather().setParams(WeatherType.STORM));
|
|
mc.displayGuiScreen(null);
|
|
}
|
|
if(guibutton.id == 2)
|
|
{
|
|
MekanismUtils.doFakeEntityExplosion(player);
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketWeather().setParams(WeatherType.HAZE));
|
|
mc.displayGuiScreen(null);
|
|
}
|
|
if(guibutton.id == 3)
|
|
{
|
|
MekanismUtils.doFakeEntityExplosion(player);
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketWeather().setParams(WeatherType.RAIN));
|
|
mc.displayGuiScreen(null);
|
|
}
|
|
if(guibutton.id == 4)
|
|
{
|
|
mc.displayGuiScreen(new GuiCredits());
|
|
}
|
|
if(guibutton.id == 5)
|
|
{
|
|
mc.displayGuiScreen(null);
|
|
}
|
|
}
|
|
}
|