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

105 lines
3.3 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-02-18 06:51:31 +01:00
package appeng.client.gui.implementations;
import org.lwjgl.input.Mouse;
2014-02-18 06:51:31 +01:00
import net.minecraft.client.gui.GuiButton;
import net.minecraft.entity.player.InventoryPlayer;
2014-12-29 21:59:05 +01:00
2014-02-18 06:51:31 +01:00
import appeng.api.config.FuzzyMode;
import appeng.api.config.Settings;
import appeng.api.config.YesNo;
2014-02-18 06:51:31 +01:00
import appeng.client.gui.widgets.GuiImgButton;
import appeng.client.gui.widgets.GuiTabButton;
import appeng.container.implementations.ContainerFormationPlane;
import appeng.core.localization.GuiText;
import appeng.core.sync.GuiBridge;
import appeng.core.sync.network.NetworkHandler;
import appeng.core.sync.packets.PacketConfigButton;
2014-02-18 06:51:31 +01:00
import appeng.core.sync.packets.PacketSwitchGuis;
import appeng.parts.automation.PartFormationPlane;
2014-02-18 06:51:31 +01:00
public class GuiFormationPlane extends GuiUpgradeable
{
private GuiTabButton priority;
private GuiImgButton placeMode;
2014-02-18 06:51:31 +01:00
public GuiFormationPlane( final InventoryPlayer inventoryPlayer, final PartFormationPlane te )
{
2014-02-18 06:51:31 +01:00
super( new ContainerFormationPlane( inventoryPlayer, te ) );
this.ySize = 251;
}
@Override
protected void addButtons()
{
this.placeMode = new GuiImgButton( this.guiLeft - 18, this.guiTop + 28, Settings.PLACE_BLOCK, YesNo.YES );
this.fuzzyMode = new GuiImgButton( this.guiLeft - 18, this.guiTop + 48, 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.placeMode );
this.buttonList.add( this.fuzzyMode );
}
2014-02-18 06:51:31 +01:00
@Override
public void drawFG( final int offsetX, final int offsetY, final int mouseX, final int mouseY )
2014-02-18 06:51:31 +01:00
{
2014-12-29 15:13:47 +01:00
this.fontRendererObj.drawString( this.getGuiDisplayName( GuiText.FormationPlane.getLocal() ), 8, 6, 4210752 );
this.fontRendererObj.drawString( GuiText.inventory.getLocal(), 8, this.ySize - 96 + 3, 4210752 );
2014-02-18 06:51:31 +01:00
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.placeMode != null )
2015-04-29 02:30:53 +02:00
{
this.placeMode.set( ( (ContainerFormationPlane) this.cvb ).getPlaceMode() );
2015-04-29 02:30:53 +02:00
}
2014-02-18 06:51:31 +01:00
}
@Override
protected String getBackground()
2014-02-18 06:51:31 +01:00
{
return "guis/storagebus.png";
2014-02-18 06:51:31 +01:00
}
@Override
protected void actionPerformed( final GuiButton btn )
2014-02-18 06:51:31 +01:00
{
super.actionPerformed( btn );
final boolean backwards = Mouse.isButtonDown( 1 );
if( btn == this.priority )
2014-02-18 06:51:31 +01:00
{
2014-10-04 08:08:28 +02:00
NetworkHandler.instance.sendToServer( new PacketSwitchGuis( GuiBridge.GUI_PRIORITY ) );
2014-02-18 06:51:31 +01:00
}
else if( btn == this.placeMode )
{
NetworkHandler.instance.sendToServer( new PacketConfigButton( this.placeMode.getSetting(), backwards ) );
}
2014-02-18 06:51:31 +01:00
}
}