Applied-Energistics-2-tiler.../client/gui/implementations/GuiNetworkTool.java

70 lines
1.9 KiB
Java
Raw Normal View History

2014-01-23 17:28:12 +01:00
package appeng.client.gui.implementations;
import java.io.IOException;
import net.minecraft.client.gui.GuiButton;
2014-01-23 17:28:12 +01:00
import net.minecraft.entity.player.InventoryPlayer;
2014-01-23 20:02:48 +01:00
import appeng.api.implementations.guiobjects.INetworkTool;
2014-01-23 17:28:12 +01:00
import appeng.client.gui.AEBaseGui;
import appeng.client.gui.widgets.GuiToggleButton;
2014-01-23 17:28:12 +01:00
import appeng.container.implementations.ContainerNetworkTool;
import appeng.core.AELog;
2014-01-23 17:28:12 +01:00
import appeng.core.localization.GuiText;
import appeng.core.sync.network.NetworkHandler;
import appeng.core.sync.packets.PacketValueConfig;
2014-01-23 17:28:12 +01:00
public class GuiNetworkTool extends AEBaseGui
{
GuiToggleButton tFacades;
2014-01-23 17:28:12 +01:00
public GuiNetworkTool(InventoryPlayer inventoryPlayer, INetworkTool te) {
super( new ContainerNetworkTool( inventoryPlayer, te ) );
this.ySize = 166;
}
@Override
protected void actionPerformed(GuiButton btn)
{
super.actionPerformed( btn );
try
{
if ( btn == tFacades )
NetworkHandler.instance.sendToServer( new PacketValueConfig( "NetworkTool", "Toggle" ) );
}
catch (IOException e)
{
AELog.error( e );
}
}
@Override
public void initGui()
{
super.initGui();
tFacades = new GuiToggleButton( this.guiLeft - 18, guiTop + 8, 23, 22, GuiText.TransparentFacades.getLocal(), GuiText.TransparentFacadesHint.getLocal() );
buttonList.add( tFacades );
}
2014-01-23 17:28:12 +01:00
@Override
public void drawBG(int offsetX, int offsetY, int mouseX, int mouseY)
{
bindTexture( "guis/toolbox.png" );
this.drawTexturedModalRect( offsetX, offsetY, 0, 0, xSize, ySize );
}
@Override
public void drawFG(int offsetX, int offsetY, int mouseX, int mouseY)
{
if ( tFacades != null )
tFacades.setState( ((ContainerNetworkTool) inventorySlots).facadeMode );
fontRendererObj.drawString( getGuiDisplayName( GuiText.NetworkTool.getLocal() ), 8, 6, 4210752 );
2014-02-09 02:34:52 +01:00
fontRendererObj.drawString( GuiText.inventory.getLocal(), 8, ySize - 96 + 3, 4210752 );
2014-01-23 17:28:12 +01:00
}
}