2014-01-27 05:00:36 +01:00
|
|
|
package appeng.client.gui.implementations;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
import net.minecraft.client.gui.GuiButton;
|
|
|
|
import net.minecraft.client.gui.GuiTextField;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import appeng.api.AEApi;
|
|
|
|
import appeng.client.gui.AEBaseGui;
|
|
|
|
import appeng.client.gui.widgets.GuiTabButton;
|
|
|
|
import appeng.container.AEBaseContainer;
|
|
|
|
import appeng.container.implementations.ContainerPriority;
|
2014-02-07 21:37:22 +01:00
|
|
|
import appeng.core.AELog;
|
2014-01-27 05:00:36 +01:00
|
|
|
import appeng.core.localization.GuiText;
|
|
|
|
import appeng.core.sync.GuiBridge;
|
2014-02-09 02:34:52 +01:00
|
|
|
import appeng.core.sync.network.NetworkHandler;
|
2014-01-27 05:00:36 +01:00
|
|
|
import appeng.core.sync.packets.PacketSwitchGuis;
|
|
|
|
import appeng.core.sync.packets.PacketValueConfig;
|
|
|
|
import appeng.helpers.IPriorityHost;
|
2014-02-18 18:44:45 +01:00
|
|
|
import appeng.parts.automation.PartFormationPlane;
|
2014-01-27 05:00:36 +01:00
|
|
|
import appeng.parts.misc.PartStorageBus;
|
|
|
|
import appeng.tile.storage.TileChest;
|
|
|
|
import appeng.tile.storage.TileDrive;
|
|
|
|
|
|
|
|
public class GuiPriority extends AEBaseGui
|
|
|
|
{
|
|
|
|
|
|
|
|
GuiTextField priority;
|
|
|
|
GuiTabButton originalGuiBtn;
|
|
|
|
|
|
|
|
GuiButton plus1, plus10, plus100, plus1000;
|
|
|
|
GuiButton minus1, minus10, minus100, minus1000;
|
|
|
|
|
|
|
|
GuiBridge OriginalGui;
|
|
|
|
|
|
|
|
public GuiPriority(InventoryPlayer inventoryPlayer, IPriorityHost te) {
|
|
|
|
super( new ContainerPriority( inventoryPlayer, te ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void initGui()
|
|
|
|
{
|
|
|
|
super.initGui();
|
|
|
|
|
|
|
|
buttonList.add( plus1 = new GuiButton( 0, this.guiLeft + 20, this.guiTop + 32, 22, 20, "+1" ) );
|
|
|
|
buttonList.add( plus10 = new GuiButton( 0, this.guiLeft + 48, this.guiTop + 32, 28, 20, "+10" ) );
|
|
|
|
buttonList.add( plus100 = new GuiButton( 0, this.guiLeft + 82, this.guiTop + 32, 32, 20, "+100" ) );
|
|
|
|
buttonList.add( plus1000 = new GuiButton( 0, this.guiLeft + 120, this.guiTop + 32, 38, 20, "+1000" ) );
|
|
|
|
|
|
|
|
buttonList.add( minus1 = new GuiButton( 0, this.guiLeft + 20, this.guiTop + 69, 22, 20, "-1" ) );
|
|
|
|
buttonList.add( minus10 = new GuiButton( 0, this.guiLeft + 48, this.guiTop + 69, 28, 20, "-10" ) );
|
|
|
|
buttonList.add( minus100 = new GuiButton( 0, this.guiLeft + 82, this.guiTop + 69, 32, 20, "-100" ) );
|
|
|
|
buttonList.add( minus1000 = new GuiButton( 0, this.guiLeft + 120, this.guiTop + 69, 38, 20, "-1000" ) );
|
|
|
|
|
|
|
|
ItemStack myIcon = null;
|
|
|
|
Object target = ((AEBaseContainer) inventorySlots).getTarget();
|
|
|
|
|
|
|
|
if ( target instanceof PartStorageBus )
|
|
|
|
{
|
|
|
|
myIcon = AEApi.instance().parts().partStorageBus.stack( 1 );
|
|
|
|
OriginalGui = GuiBridge.GUI_STORAGEBUS;
|
|
|
|
}
|
|
|
|
|
2014-02-18 18:44:45 +01:00
|
|
|
if ( target instanceof PartFormationPlane )
|
|
|
|
{
|
|
|
|
myIcon = AEApi.instance().parts().partFormationPlane.stack( 1 );
|
|
|
|
OriginalGui = GuiBridge.GUI_FPLANE;
|
|
|
|
}
|
|
|
|
|
2014-01-27 05:00:36 +01:00
|
|
|
if ( target instanceof TileDrive )
|
|
|
|
{
|
|
|
|
myIcon = AEApi.instance().blocks().blockDrive.stack( 1 );
|
|
|
|
OriginalGui = GuiBridge.GUI_DRIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( target instanceof TileChest )
|
|
|
|
{
|
|
|
|
myIcon = AEApi.instance().blocks().blockChest.stack( 1 );
|
|
|
|
OriginalGui = GuiBridge.GUI_CHEST;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( OriginalGui != null )
|
2014-02-09 02:34:52 +01:00
|
|
|
buttonList.add( originalGuiBtn = new GuiTabButton( this.guiLeft + 154, this.guiTop, myIcon, myIcon.getDisplayName(), itemRender ) );
|
2014-01-27 05:00:36 +01:00
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
priority = new GuiTextField( fontRendererObj, this.guiLeft + 62, this.guiTop + 57, 59, fontRendererObj.FONT_HEIGHT );
|
2014-01-27 05:00:36 +01:00
|
|
|
priority.setEnableBackgroundDrawing( false );
|
|
|
|
priority.setMaxStringLength( 16 );
|
|
|
|
priority.setTextColor( 0xFFFFFF );
|
|
|
|
priority.setVisible( true );
|
|
|
|
priority.setFocused( true );
|
|
|
|
((ContainerPriority) inventorySlots).setTextField( priority );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void actionPerformed(GuiButton btn)
|
|
|
|
{
|
|
|
|
super.actionPerformed( btn );
|
|
|
|
|
|
|
|
if ( btn == originalGuiBtn )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
NetworkHandler.instance.sendToServer( new PacketSwitchGuis( OriginalGui ) );
|
2014-01-27 05:00:36 +01:00
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
2014-02-07 21:37:22 +01:00
|
|
|
AELog.error( e );
|
2014-01-27 05:00:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( btn == plus1 )
|
|
|
|
addQty( 1 );
|
|
|
|
if ( btn == plus10 )
|
|
|
|
addQty( 10 );
|
|
|
|
if ( btn == plus100 )
|
|
|
|
addQty( 100 );
|
|
|
|
if ( btn == plus1000 )
|
|
|
|
addQty( 1000 );
|
|
|
|
if ( btn == minus1 )
|
|
|
|
addQty( -1 );
|
|
|
|
if ( btn == minus10 )
|
|
|
|
addQty( -10 );
|
|
|
|
if ( btn == minus100 )
|
|
|
|
addQty( -100 );
|
|
|
|
if ( btn == minus1000 )
|
|
|
|
addQty( -1000 );
|
|
|
|
}
|
|
|
|
|
|
|
|
private void addQty(int i)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
String Out = priority.getText();
|
|
|
|
|
|
|
|
boolean Fixed = false;
|
|
|
|
while (Out.startsWith( "0" ) && Out.length() > 1)
|
|
|
|
{
|
|
|
|
Out = Out.substring( 1 );
|
|
|
|
Fixed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( Fixed )
|
|
|
|
priority.setText( Out );
|
|
|
|
|
|
|
|
if ( Out.length() == 0 )
|
|
|
|
Out = "0";
|
|
|
|
|
|
|
|
long result = Long.parseLong( Out );
|
|
|
|
result += i;
|
|
|
|
|
|
|
|
priority.setText( Out = Long.toString( result ) );
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
NetworkHandler.instance.sendToServer( new PacketValueConfig( "PriorityHost.Priority", Out ) );
|
2014-01-27 05:00:36 +01:00
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
2014-02-07 21:37:22 +01:00
|
|
|
AELog.error( e );
|
2014-01-27 05:00:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void keyTyped(char character, int key)
|
|
|
|
{
|
|
|
|
if ( !this.checkHotbarKeys( key ) )
|
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
if ( (key == 211 || key == 205 || key == 203 || key == 14 || character == '-' || Character.isDigit( character ))
|
|
|
|
&& priority.textboxKeyTyped( character, key ) )
|
2014-01-27 05:00:36 +01:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
String Out = priority.getText();
|
|
|
|
|
|
|
|
boolean Fixed = false;
|
|
|
|
while (Out.startsWith( "0" ) && Out.length() > 1)
|
|
|
|
{
|
|
|
|
Out = Out.substring( 1 );
|
|
|
|
Fixed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( Fixed )
|
|
|
|
priority.setText( Out );
|
|
|
|
|
|
|
|
if ( Out.length() == 0 )
|
|
|
|
Out = "0";
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
NetworkHandler.instance.sendToServer( new PacketValueConfig( "PriorityHost.Priority", Out ) );
|
2014-01-27 05:00:36 +01:00
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
2014-02-07 21:37:22 +01:00
|
|
|
AELog.error( e );
|
2014-01-27 05:00:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
super.keyTyped( character, key );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void drawBG(int offsetX, int offsetY, int mouseX, int mouseY)
|
|
|
|
{
|
|
|
|
bindTexture( "guis/priority.png" );
|
|
|
|
this.drawTexturedModalRect( offsetX, offsetY, 0, 0, xSize, ySize );
|
|
|
|
|
|
|
|
priority.drawTextBox();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected String getBackground()
|
|
|
|
{
|
|
|
|
return "guis/priority.png";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void drawFG(int offsetX, int offsetY, int mouseX, int mouseY)
|
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
fontRendererObj.drawString( GuiText.Priority.getLocal(), 8, 6, 4210752 );
|
2014-01-27 05:00:36 +01:00
|
|
|
}
|
|
|
|
}
|