Package powercrystals.minefactoryreloaded.gui.client

Source Code of powercrystals.minefactoryreloaded.gui.client.GuiChronotyper

package powercrystals.minefactoryreloaded.gui.client;

import net.minecraft.client.gui.GuiButton;
import powercrystals.core.net.PacketWrapper;
import powercrystals.minefactoryreloaded.MineFactoryReloadedCore;
import powercrystals.minefactoryreloaded.gui.container.ContainerFactoryPowered;
import powercrystals.minefactoryreloaded.net.Packets;
import powercrystals.minefactoryreloaded.tile.machine.TileEntityChronotyper;
import cpw.mods.fml.common.network.PacketDispatcher;

public class GuiChronotyper extends GuiFactoryPowered
{
  private GuiButton _ageToggle;
  private TileEntityChronotyper _chronotyper;
 
  public GuiChronotyper(ContainerFactoryPowered container, TileEntityChronotyper te)
  {
    super(container, te);
    _chronotyper = te;
  }
 
  @SuppressWarnings("unchecked")
  @Override
  public void initGui()
  {
    super.initGui();
   
    int xOffset = (this.width - this.xSize) / 2;
    int yOffset = (this.height - this.ySize) / 2;
   
    _ageToggle = new GuiButton(1, xOffset + 7, yOffset + 14, 110, 20, "Moving: ");
   
    buttonList.add(_ageToggle);
  }
 
  @Override
  public void updateScreen()
  {
    super.updateScreen();
    _ageToggle.displayString = "Moving: " + (_chronotyper.getMoveOld() ? "Adults" : "Babies");
  }
 
  @Override
  protected void actionPerformed(GuiButton button)
  {
    if(button.id == 1)
    {
      PacketDispatcher.sendPacketToServer(PacketWrapper.createPacket(MineFactoryReloadedCore.modNetworkChannel, Packets.ChronotyperButton,
          new Object[] { _chronotyper.xCoord, _chronotyper.yCoord, _chronotyper.zCoord }));
    }
  }
}
TOP

Related Classes of powercrystals.minefactoryreloaded.gui.client.GuiChronotyper

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.