d4ff8e731d
Added Charged Quartz Spawn Chance. All GUI's Parts/Tiles support Custom Localization. ( Fixes #0190 ) Added Crafting Recipe for copying Press Plates. Fixed Bug: #0189 - Particles don't turn off when set to minimal Fixed Bug: #0176 - Weird Colorization While Mining Parts. Fixed Bug: #0152 - TPane drops parts as items and does not insert into system. Fixed Bug: #0140 - Spatial pylon facade renders oddly (Clear)
90 lines
2.4 KiB
Java
90 lines
2.4 KiB
Java
package appeng.client.gui.implementations;
|
|
|
|
import java.io.IOException;
|
|
|
|
import net.minecraft.client.gui.GuiButton;
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import org.lwjgl.input.Mouse;
|
|
|
|
import appeng.api.config.Settings;
|
|
import appeng.client.gui.AEBaseGui;
|
|
import appeng.client.gui.widgets.GuiImgButton;
|
|
import appeng.client.gui.widgets.GuiProgressBar;
|
|
import appeng.client.gui.widgets.GuiProgressBar.Direction;
|
|
import appeng.container.implementations.ContainerCondenser;
|
|
import appeng.core.AELog;
|
|
import appeng.core.localization.GuiText;
|
|
import appeng.core.sync.network.NetworkHandler;
|
|
import appeng.core.sync.packets.PacketConfigButton;
|
|
import appeng.tile.misc.TileCondenser;
|
|
|
|
public class GuiCondenser extends AEBaseGui
|
|
{
|
|
|
|
ContainerCondenser cvc;
|
|
GuiProgressBar pb;
|
|
GuiImgButton mode;
|
|
|
|
public GuiCondenser(InventoryPlayer inventoryPlayer, TileCondenser te) {
|
|
super( new ContainerCondenser( inventoryPlayer, te ) );
|
|
cvc = (ContainerCondenser) inventorySlots;
|
|
this.ySize = 197;
|
|
}
|
|
|
|
@Override
|
|
protected void actionPerformed(GuiButton btn)
|
|
{
|
|
super.actionPerformed( btn );
|
|
|
|
boolean backwards = Mouse.isButtonDown( 1 );
|
|
|
|
if ( mode == btn )
|
|
{
|
|
try
|
|
{
|
|
NetworkHandler.instance.sendToServer( new PacketConfigButton( Settings.CONDENSER_OUTPUT, backwards ) );
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
AELog.error( e );
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void initGui()
|
|
{
|
|
super.initGui();
|
|
|
|
pb = new GuiProgressBar( "guis/condenser.png", 120 + guiLeft, 25 + guiTop, 178, 25, 6, 18, Direction.VERTICAL );
|
|
pb.TitleName = GuiText.StoredEnergy.getLocal();
|
|
|
|
mode = new GuiImgButton( 128 + guiLeft, 52 + guiTop, Settings.CONDENSER_OUTPUT, cvc.output );
|
|
|
|
this.buttonList.add( pb );
|
|
this.buttonList.add( mode );
|
|
}
|
|
|
|
@Override
|
|
public void drawBG(int offsetX, int offsetY, int mouseX, int mouseY)
|
|
{
|
|
bindTexture( "guis/condenser.png" );
|
|
|
|
this.drawTexturedModalRect( offsetX, offsetY, 0, 0, xSize, ySize );
|
|
}
|
|
|
|
@Override
|
|
public void drawFG(int offsetX, int offsetY, int mouseX, int mouseY)
|
|
{
|
|
fontRendererObj.drawString( getGuiDisplayName( GuiText.Condenser.getLocal() ), 8, 6, 4210752 );
|
|
fontRendererObj.drawString( GuiText.inventory.getLocal(), 8, ySize - 96 + 3, 4210752 );
|
|
|
|
mode.set( cvc.output );
|
|
mode.FillVar = "" + cvc.output.requiredPower;
|
|
|
|
pb.max = cvc.requiredEnergy;
|
|
pb.current = cvc.storedPower;
|
|
}
|
|
|
|
}
|