Package mekanism.client.gui

Source Code of mekanism.client.gui.GuiDigitalMiner

package mekanism.client.gui;

import java.util.ArrayList;
import java.util.List;

import mekanism.api.Coord4D;
import mekanism.api.ListUtils;
import mekanism.client.gui.GuiEnergyInfo.IInfoHandler;
import mekanism.client.gui.GuiSlot.SlotOverlay;
import mekanism.client.gui.GuiSlot.SlotType;
import mekanism.client.sound.SoundHandler;
import mekanism.common.Mekanism;
import mekanism.common.inventory.container.ContainerDigitalMiner;
import mekanism.common.miner.ThreadMinerSearch.State;
import mekanism.common.network.PacketDigitalMinerGui.DigitalMinerGuiMessage;
import mekanism.common.network.PacketDigitalMinerGui.MinerGuiPacket;
import mekanism.common.network.PacketTileEntity.TileEntityMessage;
import mekanism.common.tile.TileEntityDigitalMiner;
import mekanism.common.util.MekanismUtils;
import mekanism.common.util.MekanismUtils.ResourceType;

import net.minecraft.block.Block;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

import org.lwjgl.input.Keyboard;
import org.lwjgl.opengl.GL11;

@SideOnly(Side.CLIENT)
public class GuiDigitalMiner extends GuiMekanism
{
  public TileEntityDigitalMiner tileEntity;

  public GuiButton startButton;
  public GuiButton stopButton;
  public GuiButton configButton;

  public GuiDigitalMiner(InventoryPlayer inventory, TileEntityDigitalMiner tentity)
  {
    super(new ContainerDigitalMiner(inventory, tentity));
    tileEntity = tentity;

    guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiDigitalMiner.png")));
    guiElements.add(new GuiUpgradeManagement(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiDigitalMiner.png")));
    guiElements.add(new GuiPowerBar(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiDigitalMiner.png"), 163, 23));
    guiElements.add(new GuiEnergyInfo(new IInfoHandler() {
      @Override
      public List<String> getInfo()
      {
        String multiplier = MekanismUtils.getEnergyDisplay(tileEntity.getPerTick());
        return ListUtils.asList("Using: " + multiplier + "/t", "Needed: " + MekanismUtils.getEnergyDisplay(tileEntity.getMaxEnergy()-tileEntity.getEnergy()));
      }
    }, this, MekanismUtils.getResource(ResourceType.GUI, "GuiDigitalMiner.png")));

    guiElements.add(new GuiSlot(SlotType.NORMAL, this, MekanismUtils.getResource(ResourceType.GUI, "GuiDigitalMiner.png"), 151, 5).with(SlotOverlay.POWER));
    guiElements.add(new GuiSlot(SlotType.NORMAL, this, MekanismUtils.getResource(ResourceType.GUI, "GuiDigitalMiner.png"), 143, 26));


    ySize+=64;
  }

  @Override
  public void initGui()
  {
    super.initGui();

    int guiWidth = (width - xSize) / 2;
    int guiHeight = (height - ySize) / 2;

    buttonList.clear();
    startButton = new GuiButton(0, guiWidth + 69, guiHeight + 17, 60, 20, MekanismUtils.localize("gui.start"));

    if(tileEntity.searcher.state != State.IDLE && tileEntity.running)
    {
      startButton.enabled = false;
    }

    stopButton = new GuiButton(1, guiWidth + 69, guiHeight + 37, 60, 20, MekanismUtils.localize("gui.stop"));

    if(tileEntity.searcher.state == State.IDLE || !tileEntity.running)
    {
      stopButton.enabled = false;
    }

    configButton = new GuiButton(2, guiWidth + 69, guiHeight + 57, 60, 20, MekanismUtils.localize("gui.config"));

    if(tileEntity.searcher.state != State.IDLE)
    {
      configButton.enabled = false;
    }

    buttonList.add(startButton);
    buttonList.add(stopButton);
    buttonList.add(configButton);
  }

  @Override
  protected void actionPerformed(GuiButton guibutton)
  {
    super.actionPerformed(guibutton);

    if(guibutton.id == 0)
    {
      ArrayList data = new ArrayList();
      data.add(3);

      Mekanism.packetHandler.sendToServer(new TileEntityMessage(Coord4D.get(tileEntity), data));
    }
    else if(guibutton.id == 1)
    {
      ArrayList data = new ArrayList();
      data.add(4);

      Mekanism.packetHandler.sendToServer(new TileEntityMessage(Coord4D.get(tileEntity), data));
    }
    else if(guibutton.id == 2)
    {
      Mekanism.packetHandler.sendToServer(new DigitalMinerGuiMessage(MinerGuiPacket.SERVER, Coord4D.get(tileEntity), 0, 0, 0));
    }
  }

  @Override
  public void updateScreen()
  {
    super.updateScreen();

    if(tileEntity.searcher.state != State.IDLE && tileEntity.running)
    {
      startButton.enabled = false;
    }
    else {
      startButton.enabled = true;
    }

    if(tileEntity.searcher.state == State.IDLE || !tileEntity.running)
    {
      stopButton.enabled = false;
    }
    else {
      stopButton.enabled = true;
    }

    if(tileEntity.searcher.state != State.IDLE)
    {
      configButton.enabled = false;
    }
    else {
      configButton.enabled = true;
    }
  }

  @Override
  protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
  {
    int xAxis = (mouseX - (width - xSize) / 2);
    int yAxis = (mouseY - (height - ySize) / 2);

    fontRendererObj.drawString(tileEntity.getInventoryName(), 69, 6, 0x404040);
    fontRendererObj.drawString(MekanismUtils.localize("container.inventory"), 8, (ySize - 96) + 2, 0x404040);

    fontRendererObj.drawString(tileEntity.running ? MekanismUtils.localize("gui.digitalMiner.running") : MekanismUtils.localize("gui.idle"), 9, 10, 0x00CD00);
    fontRendererObj.drawString(tileEntity.searcher.state.desc, 9, 19, 0x00CD00);

    fontRendererObj.drawString(MekanismUtils.localize("gui.eject") + ": " + MekanismUtils.localize("gui." + (tileEntity.doEject ? "on" : "off")), 9, 30, 0x00CD00);
    fontRendererObj.drawString(MekanismUtils.localize("gui.digitalMiner.pull") + ": " + MekanismUtils.localize("gui." + (tileEntity.doPull ? "on" : "off")), 9, 39, 0x00CD00);
    fontRendererObj.drawString(MekanismUtils.localize("gui.digitalMiner.silk") + ": " + MekanismUtils.localize("gui." + (tileEntity.silkTouch ? "on" : "off")), 9, 48, 0x00CD00);

    fontRendererObj.drawString(MekanismUtils.localize("gui.digitalMiner.toMine") + ":", 9, 59, 0x00CD00);
    fontRendererObj.drawString("" + tileEntity.clientToMine, 9, 68, 0x00CD00);

    if(tileEntity.replaceStack != null)
    {
      GL11.glPushMatrix();
      GL11.glEnable(GL11.GL_LIGHTING);
      itemRender.renderItemAndEffectIntoGUI(fontRendererObj, mc.getTextureManager(), tileEntity.replaceStack, 144, 27);
      GL11.glDisable(GL11.GL_LIGHTING);
      GL11.glPopMatrix();
    }

    if(xAxis >= 164 && xAxis <= 168 && yAxis >= 25 && yAxis <= 77)
    {
      drawCreativeTabHoveringText(MekanismUtils.getEnergyDisplay(tileEntity.getEnergy()), xAxis, yAxis);
    }

    if(xAxis >= 147 && xAxis <= 161 && yAxis >= 47 && yAxis <= 61)
    {
      drawCreativeTabHoveringText(MekanismUtils.localize("gui.autoEject"), xAxis, yAxis);
    }

    if(xAxis >= 147 && xAxis <= 161 && yAxis >= 63 && yAxis <= 77)
    {
      drawCreativeTabHoveringText(MekanismUtils.localize("gui.digitalMiner.autoPull"), xAxis, yAxis);
    }

    if(xAxis >= 144 && xAxis <= 160 && yAxis >= 27 && yAxis <= 43)
    {
      drawCreativeTabHoveringText(MekanismUtils.localize("gui.digitalMiner.replaceBlock"), xAxis, yAxis);
    }

    if(xAxis >= 131 && xAxis <= 145 && yAxis >= 47 && yAxis <= 61)
    {
      drawCreativeTabHoveringText(MekanismUtils.localize("gui.digitalMiner.reset"), xAxis, yAxis);
    }

    if(xAxis >= 131 && xAxis <= 145 && yAxis >= 63 && yAxis <= 77)
    {
      drawCreativeTabHoveringText(MekanismUtils.localize("gui.digitalMiner.silkTouch"), xAxis, yAxis);
    }

    super.drawGuiContainerForegroundLayer(mouseX, mouseY);
  }

  @Override
  protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY)
  {
    mc.renderEngine.bindTexture(MekanismUtils.getResource(ResourceType.GUI, "GuiDigitalMiner.png"));
    GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
    int guiWidth = (width - xSize) / 2;
    int guiHeight = (height - ySize) / 2;
    drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);

    int xAxis = mouseX - guiWidth;
    int yAxis = mouseY - guiHeight;

    int displayInt;

    displayInt = tileEntity.getScaledEnergyLevel(52);
    drawTexturedModalRect(guiWidth + 164, guiHeight + 25 + 52 - displayInt, 176, 52 - displayInt, 4, displayInt);

    if(xAxis >= 147 && xAxis <= 161 && yAxis >= 47 && yAxis <= 61)
    {
      drawTexturedModalRect(guiWidth + 147, guiHeight + 47, 176 + 4, 0, 14, 14);
    }
    else {
      drawTexturedModalRect(guiWidth + 147, guiHeight + 47, 176 + 4, 14, 14, 14);
    }

    if(xAxis >= 147 && xAxis <= 161 && yAxis >= 63 && yAxis <= 77)
    {
      drawTexturedModalRect(guiWidth + 147, guiHeight + 63, 176 + 4 + 14, 0, 14, 14);
    }
    else {
      drawTexturedModalRect(guiWidth + 147, guiHeight + 63, 176 + 4 + 14, 14, 14, 14);
    }

    if(xAxis >= 131 && xAxis <= 145 && yAxis >= 47 && yAxis <= 61)
    {
      drawTexturedModalRect(guiWidth + 131, guiHeight + 47, 176 + 4 + 28, 0, 14, 14);
    }
    else {
      drawTexturedModalRect(guiWidth + 131, guiHeight + 47, 176 + 4 + 28, 14, 14, 14);
    }

    if(xAxis >= 131 && xAxis <= 145 && yAxis >= 63 && yAxis <= 77)
    {
      drawTexturedModalRect(guiWidth + 131, guiHeight + 63, 176 + 4 + 42, 0, 14, 14);
    }
    else {
      drawTexturedModalRect(guiWidth + 131, guiHeight + 63, 176 + 4 + 42, 14, 14, 14);
    }

    super.drawGuiContainerBackgroundLayer(partialTick, mouseX, mouseY);

    if(xAxis >= 144 && xAxis <= 160 && yAxis >= 27 && yAxis <= 43)
    {
      GL11.glPushMatrix();
      GL11.glPushAttrib(GL11.GL_LIGHTING_BIT);
      GL11.glDisable(GL11.GL_LIGHTING);
      GL11.glDisable(GL11.GL_DEPTH_TEST);

      int x = guiWidth + 144;
      int y = guiHeight + 27;
      drawGradientRect(x, y, x + 16, y + 16, -2130706433, -2130706433);

      GL11.glPopAttrib();
      GL11.glPopMatrix();
    }
  }

  @Override
  protected void mouseClicked(int mouseX, int mouseY, int button)
  {
    super.mouseClicked(mouseX, mouseY, button);

    if(button == 0)
    {
      int xAxis = (mouseX - (width - xSize) / 2);
      int yAxis = (mouseY - (height - ySize) / 2);

      if(xAxis >= 147 && xAxis <= 161 && yAxis >= 47 && yAxis <= 61)
      {
                SoundHandler.playSound("gui.button.press");

        ArrayList data = new ArrayList();
        data.add(0);

        Mekanism.packetHandler.sendToServer(new TileEntityMessage(Coord4D.get(tileEntity), data));
      }

      if(xAxis >= 147 && xAxis <= 161 && yAxis >= 63 && yAxis <= 77)
      {
                SoundHandler.playSound("gui.button.press");

        ArrayList data = new ArrayList();
        data.add(1);

        Mekanism.packetHandler.sendToServer(new TileEntityMessage(Coord4D.get(tileEntity), data));
      }

      if(xAxis >= 131 && xAxis <= 145 && yAxis >= 47 && yAxis <= 61)
      {
                SoundHandler.playSound("gui.button.press");

        ArrayList data = new ArrayList();
        data.add(5);

        Mekanism.packetHandler.sendToServer(new TileEntityMessage(Coord4D.get(tileEntity), data));
      }

      if(xAxis >= 131 && xAxis <= 145 && yAxis >= 63 && yAxis <= 77)
      {
                SoundHandler.playSound("gui.button.press");

        ArrayList data = new ArrayList();
        data.add(9);

        Mekanism.packetHandler.sendToServer(new TileEntityMessage(Coord4D.get(tileEntity), data));
      }

      if(xAxis >= 144 && xAxis <= 160 && yAxis >= 27 && yAxis <= 43)
      {
        boolean doNull = false;
        ItemStack stack = mc.thePlayer.inventory.getItemStack();
        ItemStack toUse = null;

        if(stack != null && !Keyboard.isKeyDown(Keyboard.KEY_LSHIFT))
        {
          if(stack.getItem() instanceof ItemBlock)
          {
            if(Block.getBlockFromItem(stack.getItem()) != Blocks.bedrock)
            {
              toUse = stack.copy();
              toUse.stackSize = 1;
            }
          }
        }
        else if(stack == null && Keyboard.isKeyDown(Keyboard.KEY_LSHIFT))
        {
          doNull = true;
        }

        if(toUse != null || doNull)
        {
          ArrayList data = new ArrayList();
          data.add(2);

          if(stack != null)
          {
            data.add(false);
            data.add(MekanismUtils.getID(toUse));
            data.add(toUse.getItemDamage());
          }
          else {
            data.add(true);
          }

          Mekanism.packetHandler.sendToServer(new TileEntityMessage(Coord4D.get(tileEntity), data));
        }

                SoundHandler.playSound("gui.button.press");
      }
    }
  }
}
TOP

Related Classes of mekanism.client.gui.GuiDigitalMiner

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.