Package mekanism.client.gui

Source Code of mekanism.client.gui.GuiBucketIO

package mekanism.client.gui;

import mekanism.common.util.MekanismUtils;
import mekanism.common.util.MekanismUtils.ResourceType;

import net.minecraft.util.ResourceLocation;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

import codechicken.lib.vec.Rectangle4i;

@SideOnly(Side.CLIENT)
public class GuiBucketIO extends GuiElement
{
  public GuiBucketIO(IGuiWrapper gui, ResourceLocation def)
  {
    super(MekanismUtils.getResource(ResourceType.GUI_ELEMENT, "GuiBucket.png"), gui, def);
  }
 
  @Override
  public Rectangle4i getBounds(int guiWidth, int guiHeight)
  {
    return new Rectangle4i(guiWidth + 176, guiHeight + 66, 26, 57);
  }

  @Override
  public void renderBackground(int xAxis, int yAxis, int guiWidth, int guiHeight)
  {
    mc.renderEngine.bindTexture(RESOURCE);

    guiObj.drawTexturedRect(guiWidth + 176, guiHeight + 66, 0, 0, 26, 57);

    mc.renderEngine.bindTexture(defaultLocation);
  }

  @Override
  public void renderForeground(int xAxis, int yAxis)
  {
    mc.renderEngine.bindTexture(RESOURCE);

    mc.renderEngine.bindTexture(defaultLocation);
  }

  @Override
  public void preMouseClicked(int xAxis, int yAxis, int button)
  {
    if((xAxis >= 180 && xAxis <= 196 && yAxis >= 71 && yAxis <= 87) || (xAxis >= 180 && xAxis <= 196 && yAxis >= 102 && yAxis <= 118))
    {
      offsetX(26);
    }
  }

  @Override
  public void mouseClicked(int xAxis, int yAxis, int button)
  {
    if((xAxis >= 180 && xAxis <= 196 && yAxis >= 71 && yAxis <= 87) || (xAxis >= 180 && xAxis <= 196 && yAxis >= 102 && yAxis <= 118))
    {
      offsetX(-26);
    }
  }
}
TOP

Related Classes of mekanism.client.gui.GuiBucketIO

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.