Package forestry.energy.gui

Source Code of forestry.energy.gui.GuiEngineTin

/*******************************************************************************
* 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.energy.gui;

import net.minecraft.entity.player.InventoryPlayer;

import forestry.core.config.Defaults;
import forestry.core.gui.widgets.SocketWidget;
import forestry.core.utils.EnumTankLevel;
import forestry.core.utils.StringUtil;
import forestry.energy.gadgets.EngineTin;

public class GuiEngineTin extends GuiEngine {

  public GuiEngineTin(InventoryPlayer inventory, EngineTin tile) {
    super(Defaults.TEXTURE_PATH_GUI + "/electricalengine.png", new ContainerEngineTin(inventory, tile), tile);
    widgetManager.add(new SocketWidget(this.widgetManager, 30, 40, tile, 0));
  }

  protected EngineTin getEngine() {
    return (EngineTin)tile;
  }

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

    EngineTin engine = getEngine();
    int storageHeight = engine.getStorageScaled(46);
    int storageMaxHeight = engine.getStorageScaled(100);
    EnumTankLevel rated = engine.rateLevel(storageMaxHeight);

    drawHealthMeter(guiLeft + 74, guiTop + 25, storageHeight, rated);
  }

  private void drawHealthMeter(int x, int y, int height, EnumTankLevel rated) {
    int i = 176;
    int k = 0;
    switch (rated) {
    case EMPTY:
      break;
    case LOW:
      i += 4;
      break;
    case MEDIUM:
      i += 8;
      break;
    case HIGH:
      i += 12;
      break;
    case MAXIMUM:
      i += 16;
      break;
    }

    this.drawTexturedModalRect(x, y + 46 - height, i, k + 46 - height, 4, height);
  }

}
TOP

Related Classes of forestry.energy.gui.GuiEngineTin

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.