Package forestry.factory.gui

Source Code of forestry.factory.gui.GuiFabricator

/*******************************************************************************
* Copyright (c) 2011-2014 SirSengir.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v3
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl-3.0.txt
*
* Various Contributors including, but not limited to:
* SirSengir (original work), CovertJaguar, Player, Binnie, MysteriousAges
******************************************************************************/
package forestry.factory.gui;

import net.minecraft.entity.player.InventoryPlayer;

import forestry.core.config.Defaults;
import forestry.core.gui.GuiForestryTitled;
import forestry.core.gui.widgets.ReservoirWidget;
import forestry.factory.gadgets.MachineFabricator;

public class GuiFabricator extends GuiForestryTitled<MachineFabricator> {

  public GuiFabricator(InventoryPlayer player, MachineFabricator tile) {
    super(Defaults.TEXTURE_PATH_GUI + "/fabricator.png", new ContainerFabricator(player, tile), tile);
    this.ySize = 211;
    widgetManager.add(new ReservoirWidget(this.widgetManager, 26, 48, 0));
  }

  @Override
  protected void drawGuiContainerBackgroundLayer(float var1, int mouseX, int mouseY) {
    super.drawGuiContainerBackgroundLayer(var1, mouseX, mouseY);

    MachineFabricator fabricator = tile;
    int heatScaled = fabricator.getHeatScaled(52);
    if (heatScaled > 0)
      drawTexturedModalRect(guiLeft + 55, guiTop + 17 + 52 - heatScaled, 192, 0 + 52 - heatScaled, 4, heatScaled);

    int meltingPointScaled = fabricator.getMeltingPointScaled(52);
    if (meltingPointScaled > 0)
      drawTexturedModalRect(guiLeft + 52, guiTop + 15 + 52 - meltingPointScaled, 196, 0, 10, 5);
  }

}
TOP

Related Classes of forestry.factory.gui.GuiFabricator

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.