76 lines
2.7 KiB
Java
76 lines
2.7 KiB
Java
package mekanism.client.gui;
|
|
|
|
import mekanism.api.gas.GasTank;
|
|
import mekanism.client.gui.GuiFluidGauge.IFluidInfoHandler;
|
|
import mekanism.client.gui.GuiGasGauge.IGasInfoHandler;
|
|
import mekanism.common.inventory.container.ContainerPRC;
|
|
import mekanism.common.tile.TileEntityPRC;
|
|
import mekanism.common.util.MekanismUtils;
|
|
import mekanism.common.util.MekanismUtils.ResourceType;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
import net.minecraftforge.fluids.FluidTank;
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
public class GuiPRC extends GuiMekanism
|
|
{
|
|
public TileEntityPRC tileEntity;
|
|
|
|
public GuiPRC(InventoryPlayer inventory, TileEntityPRC tentity)
|
|
{
|
|
super(tentity, new ContainerPRC(inventory, tentity));
|
|
tileEntity = tentity;
|
|
|
|
guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiPRC.png")));
|
|
guiElements.add(new GuiFluidGauge(new IFluidInfoHandler() {
|
|
@Override
|
|
public FluidTank getTank()
|
|
{
|
|
return tileEntity.inputFluidTank;
|
|
}
|
|
}, GuiGauge.Type.STANDARD, this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiElectrolyticSeparator.png"), 5, 10));
|
|
guiElements.add(new GuiGasGauge(new IGasInfoHandler() {
|
|
@Override
|
|
public GasTank getTank()
|
|
{
|
|
return tileEntity.inputGasTank;
|
|
}
|
|
}, GuiGauge.Type.SMALL, this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiElectrolyticSeparator.png"), 33, 18));
|
|
guiElements.add(new GuiGasGauge(new IGasInfoHandler() {
|
|
@Override
|
|
public GasTank getTank()
|
|
{
|
|
return tileEntity.outputGasTank;
|
|
}
|
|
}, GuiGauge.Type.SMALL, this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiElectrolyticSeparator.png"), 100, 18));
|
|
guiElements.add(new GuiPowerBar(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiPRC.png"), 164, 15));
|
|
}
|
|
|
|
@Override
|
|
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
|
|
{
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
fontRenderer.drawString(tileEntity.getInvName(), 45, 6, 0x404040);
|
|
fontRenderer.drawString(MekanismUtils.localize("container.inventory"), 8, (ySize - 96) + 2, 0x404040);
|
|
|
|
super.drawGuiContainerForegroundLayer(mouseX, mouseY);
|
|
}
|
|
|
|
@Override
|
|
protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY)
|
|
{
|
|
mc.renderEngine.bindTexture(MekanismUtils.getResource(ResourceType.GUI, "GuiPRC.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;
|
|
|
|
super.drawGuiContainerBackgroundLayer(partialTick, mouseX, mouseY);
|
|
}
|
|
|
|
}
|