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

180 lines
5.8 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-04-08 02:43:57 +02:00
package appeng.client.gui.implementations;
2014-04-10 06:51:08 +02:00
import java.io.IOException;
2014-04-08 02:43:57 +02:00
import net.minecraft.client.gui.GuiButton;
import net.minecraft.entity.player.InventoryPlayer;
2014-04-10 06:51:08 +02:00
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemStack;
2014-04-08 02:43:57 +02:00
import appeng.api.config.ActionItems;
import appeng.api.config.ItemSubstitution;
2014-04-08 02:43:57 +02:00
import appeng.api.config.Settings;
import appeng.api.storage.ITerminalHost;
import appeng.client.gui.widgets.GuiImgButton;
2014-04-10 06:51:08 +02:00
import appeng.client.gui.widgets.GuiTabButton;
2014-04-08 02:43:57 +02:00
import appeng.container.implementations.ContainerPatternTerm;
2014-07-02 03:43:08 +02:00
import appeng.container.slot.AppEngSlot;
2014-04-08 02:43:57 +02:00
import appeng.core.localization.GuiText;
2014-04-10 06:51:08 +02:00
import appeng.core.sync.network.NetworkHandler;
import appeng.core.sync.packets.PacketValueConfig;
2014-04-08 02:43:57 +02:00
2014-04-08 02:43:57 +02:00
public class GuiPatternTerm extends GuiMEMonitorable
{
private static final String SUBSITUTION_DISABLE = "0";
private static final String SUBSITUTION_ENABLE = "1";
2014-04-10 06:51:08 +02:00
private static final String CRAFTMODE_CRFTING = "1";
private static final String CRAFTMODE_PROCESSING = "0";
private final ContainerPatternTerm container;
private GuiTabButton tabCraftButton;
private GuiTabButton tabProcessButton;
private GuiImgButton substitutionsEnabledBtn;
private GuiImgButton substitutionsDisabledBtn;
private GuiImgButton encodeBtn;
private GuiImgButton clearBtn;
2014-04-08 02:43:57 +02:00
2015-09-30 14:24:40 +02:00
public GuiPatternTerm( final InventoryPlayer inventoryPlayer, final ITerminalHost te )
2014-04-08 02:43:57 +02:00
{
super( inventoryPlayer, te, new ContainerPatternTerm( inventoryPlayer, te ) );
this.container = (ContainerPatternTerm) this.inventorySlots;
this.reservedSpace = 81;
2014-04-08 02:43:57 +02:00
}
@Override
2015-09-30 14:24:40 +02:00
protected void actionPerformed( final GuiButton btn )
2014-04-08 02:43:57 +02:00
{
super.actionPerformed( btn );
2014-04-10 06:51:08 +02:00
try
2014-04-08 02:43:57 +02:00
{
if( this.tabCraftButton == btn || this.tabProcessButton == btn )
2014-04-10 06:51:08 +02:00
{
NetworkHandler.instance.sendToServer( new PacketValueConfig( "PatternTerminal.CraftMode", this.tabProcessButton == btn ? CRAFTMODE_CRFTING : CRAFTMODE_PROCESSING ) );
2014-04-10 06:51:08 +02:00
}
2014-04-08 02:43:57 +02:00
if( this.encodeBtn == btn )
2014-04-10 06:51:08 +02:00
{
NetworkHandler.instance.sendToServer( new PacketValueConfig( "PatternTerminal.Encode", "1" ) );
}
if( this.clearBtn == btn )
{
NetworkHandler.instance.sendToServer( new PacketValueConfig( "PatternTerminal.Clear", "1" ) );
}
if( this.substitutionsEnabledBtn == btn || this.substitutionsDisabledBtn == btn )
{
NetworkHandler.instance.sendToServer( new PacketValueConfig( "PatternTerminal.Substitute", this.substitutionsEnabledBtn == btn ? SUBSITUTION_DISABLE : SUBSITUTION_ENABLE ) );
}
2014-04-10 06:51:08 +02:00
}
2015-09-30 14:24:40 +02:00
catch( final IOException e )
2014-04-10 06:51:08 +02:00
{
// TODO Auto-generated catch block
e.printStackTrace();
2014-04-08 02:43:57 +02:00
}
}
@Override
public void initGui()
2014-07-02 03:43:08 +02:00
{
super.initGui();
2014-07-02 03:43:08 +02:00
this.tabCraftButton = new GuiTabButton( this.guiLeft + 173, this.guiTop + this.ySize - 177, new ItemStack( Blocks.crafting_table ), GuiText.CraftingPattern.getLocal(), this.itemRender );
this.buttonList.add( this.tabCraftButton );
this.tabProcessButton = new GuiTabButton( this.guiLeft + 173, this.guiTop + this.ySize - 177, new ItemStack( Blocks.furnace ), GuiText.ProcessingPattern.getLocal(), this.itemRender );
this.buttonList.add( this.tabProcessButton );
2014-04-08 02:43:57 +02:00
this.substitutionsEnabledBtn = new GuiImgButton( this.guiLeft + 84, this.guiTop + this.ySize - 163, Settings.ACTIONS, ItemSubstitution.ENABLED );
this.substitutionsEnabledBtn.halfSize = true;
this.buttonList.add( this.substitutionsEnabledBtn );
this.substitutionsDisabledBtn = new GuiImgButton( this.guiLeft + 84, this.guiTop + this.ySize - 163, Settings.ACTIONS, ItemSubstitution.DISABLED );
this.substitutionsDisabledBtn.halfSize = true;
this.buttonList.add( this.substitutionsDisabledBtn );
this.clearBtn = new GuiImgButton( this.guiLeft + 74, this.guiTop + this.ySize - 163, Settings.ACTIONS, ActionItems.CLOSE );
this.clearBtn.halfSize = true;
this.buttonList.add( this.clearBtn );
this.encodeBtn = new GuiImgButton( this.guiLeft + 147, this.guiTop + this.ySize - 142, Settings.ACTIONS, ActionItems.ENCODE );
this.buttonList.add( this.encodeBtn );
2014-04-08 02:43:57 +02:00
}
@Override
2015-09-30 14:24:40 +02:00
public void drawFG( final int offsetX, final int offsetY, final int mouseX, final int mouseY )
2014-04-08 02:43:57 +02:00
{
if( !this.container.craftingMode )
2014-04-10 06:51:08 +02:00
{
2014-12-29 15:13:47 +01:00
this.tabCraftButton.visible = false;
this.tabProcessButton.visible = true;
2014-04-10 06:51:08 +02:00
}
else
{
2014-12-29 15:13:47 +01:00
this.tabCraftButton.visible = true;
this.tabProcessButton.visible = false;
2014-04-10 06:51:08 +02:00
}
if( this.container.substitute )
{
this.substitutionsEnabledBtn.visible = true;
this.substitutionsDisabledBtn.visible = false;
}
else
{
this.substitutionsEnabledBtn.visible = false;
this.substitutionsDisabledBtn.visible = true;
}
2014-04-08 02:43:57 +02:00
super.drawFG( offsetX, offsetY, mouseX, mouseY );
2014-12-29 15:13:47 +01:00
this.fontRendererObj.drawString( GuiText.PatternTerminal.getLocal(), 8, this.ySize - 96 + 2 - this.reservedSpace, 4210752 );
2014-04-08 02:43:57 +02:00
}
@Override
protected String getBackground()
{
if( this.container.craftingMode )
2015-04-29 02:30:53 +02:00
{
return "guis/pattern.png";
2015-04-29 02:30:53 +02:00
}
return "guis/pattern2.png";
}
@Override
2015-09-30 14:24:40 +02:00
protected void repositionSlot( final AppEngSlot s )
{
if( s.isPlayerSide() )
2015-04-29 02:30:53 +02:00
{
s.yDisplayPosition = s.defY + this.ySize - 78 - 5;
2015-04-29 02:30:53 +02:00
}
else
2015-04-29 02:30:53 +02:00
{
s.yDisplayPosition = s.defY + this.ySize - 78 - 3;
2015-04-29 02:30:53 +02:00
}
}
2014-04-08 02:43:57 +02:00
}