2014-01-23 17:28:12 +01:00
|
|
|
package appeng.client.gui.implementations;
|
|
|
|
|
2014-08-03 06:53:34 +02:00
|
|
|
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;
|
2014-08-03 06:53:34 +02:00
|
|
|
import appeng.client.gui.widgets.GuiToggleButton;
|
2014-01-23 17:28:12 +01:00
|
|
|
import appeng.container.implementations.ContainerNetworkTool;
|
2014-08-03 06:53:34 +02:00
|
|
|
import appeng.core.AELog;
|
2014-01-23 17:28:12 +01:00
|
|
|
import appeng.core.localization.GuiText;
|
2014-08-03 06:53:34 +02:00
|
|
|
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
|
|
|
|
{
|
|
|
|
|
2014-08-03 06:53:34 +02:00
|
|
|
GuiToggleButton tFacades;
|
|
|
|
|
2014-01-23 17:28:12 +01:00
|
|
|
public GuiNetworkTool(InventoryPlayer inventoryPlayer, INetworkTool te) {
|
|
|
|
super( new ContainerNetworkTool( inventoryPlayer, te ) );
|
|
|
|
this.ySize = 166;
|
|
|
|
}
|
|
|
|
|
2014-08-03 06:53:34 +02:00
|
|
|
@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)
|
|
|
|
{
|
2014-08-03 06:53:34 +02:00
|
|
|
if ( tFacades != null )
|
|
|
|
tFacades.setState( ((ContainerNetworkTool) inventorySlots).facadeMode );
|
|
|
|
|
2014-03-15 07:58:21 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
}
|