Applied-Energistics-2-tiler.../src/main/java/appeng/client/gui/implementations/GuiStorageBus.java

138 lines
4.5 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
2014-09-24 02:26:27 +02:00
package appeng.client.gui.implementations;
import appeng.api.config.*;
2014-09-24 02:26:27 +02:00
import appeng.client.gui.widgets.GuiImgButton;
import appeng.client.gui.widgets.GuiTabButton;
import appeng.container.implementations.ContainerStorageBus;
import appeng.core.AELog;
import appeng.core.localization.GuiText;
import appeng.core.sync.GuiBridge;
import appeng.core.sync.network.NetworkHandler;
import appeng.core.sync.packets.PacketConfigButton;
import appeng.core.sync.packets.PacketSwitchGuis;
import appeng.core.sync.packets.PacketValueConfig;
import appeng.parts.misc.PartStorageBus;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.entity.player.InventoryPlayer;
import org.lwjgl.input.Mouse;
import java.io.IOException;
2014-09-24 02:26:27 +02:00
2014-09-24 02:26:27 +02:00
public class GuiStorageBus extends GuiUpgradeable
{
private GuiImgButton rwMode;
private GuiImgButton storageFilter;
private GuiTabButton priority;
private GuiImgButton partition;
private GuiImgButton clear;
2014-09-24 02:26:27 +02:00
public GuiStorageBus( final InventoryPlayer inventoryPlayer, final PartStorageBus te )
{
2014-09-24 02:26:27 +02:00
super( new ContainerStorageBus( inventoryPlayer, te ) );
this.ySize = 251;
}
@Override
protected void addButtons()
{
2014-12-29 15:13:47 +01:00
this.clear = new GuiImgButton( this.guiLeft - 18, this.guiTop + 8, Settings.ACTIONS, ActionItems.CLOSE );
this.partition = new GuiImgButton( this.guiLeft - 18, this.guiTop + 28, Settings.ACTIONS, ActionItems.WRENCH );
this.rwMode = new GuiImgButton( this.guiLeft - 18, this.guiTop + 48, Settings.ACCESS, AccessRestriction.READ_WRITE );
this.storageFilter = new GuiImgButton( this.guiLeft - 18, this.guiTop + 68, Settings.STORAGE_FILTER, StorageFilter.EXTRACTABLE_ONLY );
this.fuzzyMode = new GuiImgButton( this.guiLeft - 18, this.guiTop + 88, Settings.FUZZY_MODE, FuzzyMode.IGNORE_ALL );
this.buttonList.add( this.priority = new GuiTabButton( this.guiLeft + 154, this.guiTop, 2 + 4 * 16, GuiText.Priority.getLocal(), itemRender ) );
this.buttonList.add( this.storageFilter );
this.buttonList.add( this.fuzzyMode );
this.buttonList.add( this.rwMode );
this.buttonList.add( this.partition );
this.buttonList.add( this.clear );
2014-09-24 02:26:27 +02:00
}
@Override
public void drawFG( final int offsetX, final int offsetY, final int mouseX, final int mouseY )
{
this.fontRendererObj.drawString( this.getGuiDisplayName( GuiText.StorageBus.getLocal() ), 8, 6, 4210752 );
this.fontRendererObj.drawString( GuiText.inventory.getLocal(), 8, this.ySize - 96 + 3, 4210752 );
if( this.fuzzyMode != null )
2015-04-29 02:30:53 +02:00
{
this.fuzzyMode.set( this.cvb.getFuzzyMode() );
2015-04-29 02:30:53 +02:00
}
if( this.storageFilter != null )
2015-04-29 02:30:53 +02:00
{
this.storageFilter.set( ( (ContainerStorageBus) this.cvb ).getStorageFilter() );
2015-04-29 02:30:53 +02:00
}
if( this.rwMode != null )
2015-04-29 02:30:53 +02:00
{
this.rwMode.set( ( (ContainerStorageBus) this.cvb ).getReadWriteMode() );
2015-04-29 02:30:53 +02:00
}
}
@Override
protected String getBackground()
{
return "guis/storagebus.png";
}
@Override
protected void actionPerformed( final GuiButton btn )
2014-09-24 02:26:27 +02:00
{
super.actionPerformed( btn );
final boolean backwards = Mouse.isButtonDown( 1 );
2014-09-24 02:26:27 +02:00
try
{
if( btn == this.partition )
2015-04-29 02:30:53 +02:00
{
2014-09-24 02:26:27 +02:00
NetworkHandler.instance.sendToServer( new PacketValueConfig( "StorageBus.Action", "Partition" ) );
2015-04-29 02:30:53 +02:00
}
else if( btn == this.clear )
2015-04-29 02:30:53 +02:00
{
2014-09-24 02:26:27 +02:00
NetworkHandler.instance.sendToServer( new PacketValueConfig( "StorageBus.Action", "Clear" ) );
2015-04-29 02:30:53 +02:00
}
else if( btn == this.priority )
2015-04-29 02:30:53 +02:00
{
2014-09-24 02:26:27 +02:00
NetworkHandler.instance.sendToServer( new PacketSwitchGuis( GuiBridge.GUI_PRIORITY ) );
2015-04-29 02:30:53 +02:00
}
else if( btn == this.rwMode )
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
NetworkHandler.instance.sendToServer( new PacketConfigButton( this.rwMode.getSetting(), backwards ) );
2015-04-29 02:30:53 +02:00
}
else if( btn == this.storageFilter )
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
NetworkHandler.instance.sendToServer( new PacketConfigButton( this.storageFilter.getSetting(), backwards ) );
2015-04-29 02:30:53 +02:00
}
2014-09-24 02:26:27 +02:00
}
catch( final IOException e )
2014-09-24 02:26:27 +02:00
{
AELog.debug( e );
2014-09-24 02:26:27 +02:00
}
}
}