a665200c31
Added a singleton getter instead the public field. Reduced all fields to private. Replaced field access with getters. Added setters where necessary (Dimension/Biome Registration) Added config options to disable more features. Splitted Enum name from the config key. Changed FacadeConfig and Networkhandler similar to AEConfig.init().
179 lines
5.0 KiB
Java
179 lines
5.0 KiB
Java
/*
|
|
* 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>.
|
|
*/
|
|
|
|
/**
|
|
*
|
|
*/
|
|
|
|
package appeng.client.gui.implementations;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import org.lwjgl.input.Mouse;
|
|
|
|
import net.minecraft.client.gui.GuiButton;
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import appeng.api.AEApi;
|
|
import appeng.api.definitions.IDefinitions;
|
|
import appeng.api.definitions.IParts;
|
|
import appeng.api.storage.ITerminalHost;
|
|
import appeng.client.gui.widgets.GuiTabButton;
|
|
import appeng.container.implementations.ContainerCraftingStatus;
|
|
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.PacketSwitchGuis;
|
|
import appeng.core.sync.packets.PacketValueConfig;
|
|
import appeng.helpers.WirelessTerminalGuiObject;
|
|
import appeng.parts.reporting.PartCraftingTerminal;
|
|
import appeng.parts.reporting.PartPatternTerminal;
|
|
import appeng.parts.reporting.PartTerminal;
|
|
|
|
|
|
public class GuiCraftingStatus extends GuiCraftingCPU
|
|
{
|
|
|
|
private final ContainerCraftingStatus status;
|
|
private GuiButton selectCPU;
|
|
|
|
private GuiTabButton originalGuiBtn;
|
|
private GuiBridge originalGui;
|
|
private ItemStack myIcon = null;
|
|
|
|
public GuiCraftingStatus( final InventoryPlayer inventoryPlayer, final ITerminalHost te )
|
|
{
|
|
super( new ContainerCraftingStatus( inventoryPlayer, te ) );
|
|
|
|
this.status = (ContainerCraftingStatus) this.inventorySlots;
|
|
final Object target = this.status.getTarget();
|
|
final IDefinitions definitions = AEApi.instance().definitions();
|
|
final IParts parts = definitions.parts();
|
|
|
|
if( target instanceof WirelessTerminalGuiObject )
|
|
{
|
|
myIcon = definitions.items().wirelessTerminal().maybeStack( 1 ).orElse( null );
|
|
|
|
this.originalGui = GuiBridge.GUI_WIRELESS_TERM;
|
|
}
|
|
|
|
if( target instanceof PartTerminal )
|
|
{
|
|
myIcon = parts.terminal().maybeStack( 1 ).orElse( null );
|
|
|
|
this.originalGui = GuiBridge.GUI_ME;
|
|
}
|
|
|
|
if( target instanceof PartCraftingTerminal )
|
|
{
|
|
myIcon = parts.craftingTerminal().maybeStack( 1 ).orElse( null );
|
|
|
|
this.originalGui = GuiBridge.GUI_CRAFTING_TERMINAL;
|
|
}
|
|
|
|
if( target instanceof PartPatternTerminal )
|
|
{
|
|
myIcon = parts.patternTerminal().maybeStack( 1 ).orElse( null );
|
|
|
|
this.originalGui = GuiBridge.GUI_PATTERN_TERMINAL;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void actionPerformed( final GuiButton btn ) throws IOException
|
|
{
|
|
super.actionPerformed( btn );
|
|
|
|
final boolean backwards = Mouse.isButtonDown( 1 );
|
|
|
|
if( btn == this.selectCPU )
|
|
{
|
|
try
|
|
{
|
|
NetworkHandler.instance().sendToServer( new PacketValueConfig( "Terminal.Cpu", backwards ? "Prev" : "Next" ) );
|
|
}
|
|
catch( final IOException e )
|
|
{
|
|
AELog.debug( e );
|
|
}
|
|
}
|
|
|
|
if( btn == this.originalGuiBtn )
|
|
{
|
|
NetworkHandler.instance().sendToServer( new PacketSwitchGuis( this.originalGui ) );
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void initGui()
|
|
{
|
|
super.initGui();
|
|
|
|
this.selectCPU = new GuiButton( 0, this.guiLeft + 8, this.guiTop + this.ySize - 25, 150, 20, GuiText.CraftingCPU.getLocal() + ": " + GuiText.NoCraftingCPUs );
|
|
// selectCPU.enabled = false;
|
|
this.buttonList.add( this.selectCPU );
|
|
|
|
if( this.myIcon != null )
|
|
{
|
|
this.buttonList.add( this.originalGuiBtn = new GuiTabButton( this.guiLeft + 213, this.guiTop - 4, this.myIcon, this.myIcon.getDisplayName(), this.itemRender ) );
|
|
this.originalGuiBtn.setHideEdge( 13 );
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void drawScreen( final int mouseX, final int mouseY, final float btn )
|
|
{
|
|
this.updateCPUButtonText();
|
|
super.drawScreen( mouseX, mouseY, btn );
|
|
}
|
|
|
|
private void updateCPUButtonText()
|
|
{
|
|
String btnTextText = GuiText.NoCraftingJobs.getLocal();
|
|
|
|
if( this.status.selectedCpu >= 0 )// && status.selectedCpu < status.cpus.size() )
|
|
{
|
|
if( this.status.myName.length() > 0 )
|
|
{
|
|
final String name = this.status.myName.substring( 0, Math.min( 20, this.status.myName.length() ) );
|
|
btnTextText = GuiText.CPUs.getLocal() + ": " + name;
|
|
}
|
|
else
|
|
{
|
|
btnTextText = GuiText.CPUs.getLocal() + ": #" + this.status.selectedCpu;
|
|
}
|
|
}
|
|
|
|
if( this.status.noCPU )
|
|
{
|
|
btnTextText = GuiText.NoCraftingJobs.getLocal();
|
|
}
|
|
|
|
this.selectCPU.displayString = btnTextText;
|
|
}
|
|
|
|
@Override
|
|
protected String getGuiDisplayName( final String in )
|
|
{
|
|
return in; // the cup name is on the button
|
|
}
|
|
}
|