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

448 lines
11 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-06-26 03:49:37 +02:00
package appeng.client.gui.implementations;
2014-06-28 07:20:12 +02:00
import java.io.IOException;
2014-06-27 04:47:26 +02:00
import java.util.ArrayList;
import java.util.Iterator;
2014-06-28 07:20:12 +02:00
import java.util.LinkedList;
2014-06-26 03:49:37 +02:00
import java.util.List;
import org.lwjgl.opengl.GL11;
2014-06-26 03:49:37 +02:00
import net.minecraft.client.gui.GuiButton;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.item.ItemStack;
2015-03-26 11:20:31 +01:00
import com.google.common.base.Joiner;
2014-06-27 04:47:26 +02:00
import appeng.api.AEApi;
2014-06-26 03:49:37 +02:00
import appeng.api.config.SortDir;
import appeng.api.config.SortOrder;
import appeng.api.config.ViewItems;
import appeng.api.storage.data.IAEItemStack;
2014-06-27 04:47:26 +02:00
import appeng.api.storage.data.IItemList;
import appeng.api.util.AEColor;
2014-06-26 03:49:37 +02:00
import appeng.client.gui.AEBaseGui;
import appeng.client.gui.widgets.GuiScrollbar;
import appeng.client.gui.widgets.ISortSource;
import appeng.container.implementations.ContainerCraftingCPU;
import appeng.core.AEConfig;
2014-06-28 07:20:12 +02:00
import appeng.core.AELog;
2014-06-26 03:49:37 +02:00
import appeng.core.localization.GuiText;
2014-06-28 07:20:12 +02:00
import appeng.core.sync.network.NetworkHandler;
import appeng.core.sync.packets.PacketValueConfig;
2014-06-26 03:49:37 +02:00
import appeng.util.Platform;
2014-06-26 03:49:37 +02:00
public class GuiCraftingCPU extends AEBaseGui implements ISortSource
{
final int rows = 6;
2014-06-26 03:49:37 +02:00
2014-06-27 04:47:26 +02:00
IItemList<IAEItemStack> storage = AEApi.instance().storage().createItemList();
IItemList<IAEItemStack> active = AEApi.instance().storage().createItemList();
IItemList<IAEItemStack> pending = AEApi.instance().storage().createItemList();
2014-09-28 22:20:14 +02:00
List<IAEItemStack> visual = new ArrayList<IAEItemStack>();
GuiButton cancel;
int tooltip = -1;
2014-06-26 03:49:37 +02:00
public GuiCraftingCPU( InventoryPlayer inventoryPlayer, Object te )
{
this( new ContainerCraftingCPU( inventoryPlayer, te ) );
}
protected GuiCraftingCPU( ContainerCraftingCPU container )
{
super( container );
2014-06-28 07:20:12 +02:00
this.ySize = 184;
this.xSize = 238;
2014-12-29 15:13:47 +01:00
this.myScrollBar = new GuiScrollbar();
2014-06-26 03:49:37 +02:00
}
public void clearItems()
{
this.storage = AEApi.instance().storage().createItemList();
this.active = AEApi.instance().storage().createItemList();
this.pending = AEApi.instance().storage().createItemList();
this.visual = new ArrayList<IAEItemStack>();
}
2014-06-26 03:49:37 +02:00
@Override
protected void actionPerformed( GuiButton btn )
2014-06-26 03:49:37 +02:00
{
super.actionPerformed( btn );
2014-06-28 07:20:12 +02:00
if( this.cancel == btn )
2014-06-28 07:20:12 +02:00
{
try
{
NetworkHandler.instance.sendToServer( new PacketValueConfig( "TileCrafting.Cancel", "Cancel" ) );
}
catch( IOException e )
2014-06-28 07:20:12 +02:00
{
AELog.error( e );
}
}
2014-06-26 03:49:37 +02:00
}
@Override
public void initGui()
{
super.initGui();
2014-12-29 15:13:47 +01:00
this.setScrollBar();
this.cancel = new GuiButton( 0, this.guiLeft + 163, this.guiTop + this.ySize - 25, 50, 20, GuiText.Cancel.getLocal() );
this.buttonList.add( this.cancel );
2014-06-26 03:49:37 +02:00
}
private void setScrollBar()
{
2014-12-29 15:13:47 +01:00
int size = this.visual.size();
2014-06-27 04:47:26 +02:00
2014-12-29 15:13:47 +01:00
this.myScrollBar.setTop( 19 ).setLeft( 218 ).setHeight( 137 );
this.myScrollBar.setRange( 0, ( size + 2 ) / 3 - this.rows, 1 );
2014-06-26 03:49:37 +02:00
}
@Override
public void drawScreen( int mouse_x, int mouse_y, float btn )
2014-06-26 03:49:37 +02:00
{
2014-12-29 15:13:47 +01:00
this.cancel.enabled = !this.visual.isEmpty();
2014-06-26 03:49:37 +02:00
int x = 0;
int y = 0;
int gx = ( this.width - this.xSize ) / 2;
int gy = ( this.height - this.ySize ) / 2;
int offY = 23;
2014-06-26 03:49:37 +02:00
2014-12-29 15:13:47 +01:00
this.tooltip = -1;
2014-06-26 03:49:37 +02:00
for( int z = 0; z <= 4 * 5; z++ )
2014-06-26 03:49:37 +02:00
{
2014-06-28 07:20:12 +02:00
int minX = gx + 9 + x * 67;
int minY = gy + 22 + y * offY;
2014-06-26 03:49:37 +02:00
if( minX < mouse_x && minX + 67 > mouse_x )
2014-06-26 03:49:37 +02:00
{
if( minY < mouse_y && minY + offY - 2 > mouse_y )
2014-06-26 03:49:37 +02:00
{
2014-12-29 15:13:47 +01:00
this.tooltip = z;
2014-06-26 03:49:37 +02:00
break;
}
}
x++;
if( x > 2 )
2014-06-26 03:49:37 +02:00
{
y++;
x = 0;
}
}
super.drawScreen( mouse_x, mouse_y, btn );
}
@Override
public void drawFG( int offsetX, int offsetY, int mouseX, int mouseY )
2014-06-26 03:49:37 +02:00
{
2014-12-29 15:13:47 +01:00
this.fontRendererObj.drawString( this.getGuiDisplayName( GuiText.CraftingStatus.getLocal() ), 8, 7, 4210752 );
2014-06-26 03:49:37 +02:00
2014-06-28 07:20:12 +02:00
int sectionLength = 67;
2014-06-26 03:49:37 +02:00
int x = 0;
int y = 0;
int xo = 9;
int yo = 22;
2014-12-29 15:13:47 +01:00
int viewStart = this.myScrollBar.getCurrentScroll() * 3;
2014-06-28 07:20:12 +02:00
int viewEnd = viewStart + 3 * 6;
2014-06-26 03:49:37 +02:00
2014-06-28 07:20:12 +02:00
String dspToolTip = "";
2014-09-28 22:20:14 +02:00
List<String> lineList = new LinkedList<String>();
2014-06-26 03:49:37 +02:00
int toolPosX = 0;
int toolPosY = 0;
2014-06-28 07:20:12 +02:00
int offY = 23;
for( int z = viewStart; z < Math.min( viewEnd, this.visual.size() ); z++ )
2014-06-26 03:49:37 +02:00
{
2014-12-29 15:13:47 +01:00
IAEItemStack refStack = this.visual.get( z );// repo.getReferenceItem( z );
if( refStack != null )
2014-06-26 03:49:37 +02:00
{
GL11.glPushMatrix();
GL11.glScaled( 0.5, 0.5, 0.5 );
2014-12-29 15:13:47 +01:00
IAEItemStack stored = this.storage.findPrecise( refStack );
IAEItemStack activeStack = this.active.findPrecise( refStack );
IAEItemStack pendingStack = this.pending.findPrecise( refStack );
2014-06-28 07:20:12 +02:00
int lines = 0;
2015-03-26 12:13:34 +01:00
boolean active = false;
boolean scheduled = false;
2014-06-28 07:20:12 +02:00
if( stored != null && stored.getStackSize() > 0 )
{
2014-06-28 07:20:12 +02:00
lines++;
}
if( activeStack != null && activeStack.getStackSize() > 0 )
{
2014-06-28 07:20:12 +02:00
lines++;
active = true;
}
if( pendingStack != null && pendingStack.getStackSize() > 0 )
{
2014-06-28 07:20:12 +02:00
lines++;
scheduled = true;
}
if( AEConfig.instance.useColoredCraftingStatus && ( active || scheduled ) )
{
2015-03-26 11:20:31 +01:00
int bgColor = ( active ? AEColor.Green.blackVariant : AEColor.Yellow.blackVariant ) | 0x5A000000;
int startX = ( x * ( 1 + sectionLength ) + xo ) * 2;
int startY = ( ( y * offY + yo ) - 3 ) * 2;
drawRect( startX, startY, startX + ( sectionLength * 2 ), startY + ( offY * 2 ) - 2, bgColor );
}
int negY = ( ( lines - 1 ) * 5 ) / 2;
2014-06-28 07:20:12 +02:00
int downY = 0;
if( stored != null && stored.getStackSize() > 0 )
2014-06-28 07:20:12 +02:00
{
String str = Long.toString( stored.getStackSize() );
if( stored.getStackSize() >= 10000 )
str = Long.toString( stored.getStackSize() / 1000 ) + 'k';
if( stored.getStackSize() >= 10000000 )
str = Long.toString( stored.getStackSize() / 1000000 ) + 'm';
2014-06-28 07:20:12 +02:00
str = GuiText.Stored.getLocal() + ": " + str;
2014-12-29 15:13:47 +01:00
int w = 4 + this.fontRendererObj.getStringWidth( str );
this.fontRendererObj.drawString( str, (int) ( ( x * ( 1 + sectionLength ) + xo + sectionLength - 19 - ( w * 0.5 ) ) * 2 ), ( y * offY + yo + 6 - negY + downY ) * 2, 4210752 );
2014-06-28 07:20:12 +02:00
if( this.tooltip == z - viewStart )
2014-06-28 07:20:12 +02:00
lineList.add( GuiText.Stored.getLocal() + ": " + Long.toString( stored.getStackSize() ) );
downY += 5;
}
if( activeStack != null && activeStack.getStackSize() > 0 )
2014-06-28 07:20:12 +02:00
{
String str = Long.toString( activeStack.getStackSize() );
if( activeStack.getStackSize() >= 10000 )
str = Long.toString( activeStack.getStackSize() / 1000 ) + 'k';
if( activeStack.getStackSize() >= 10000000 )
str = Long.toString( activeStack.getStackSize() / 1000000 ) + 'm';
2014-06-28 07:20:12 +02:00
str = GuiText.Crafting.getLocal() + ": " + str;
2014-12-29 15:13:47 +01:00
int w = 4 + this.fontRendererObj.getStringWidth( str );
this.fontRendererObj.drawString( str, (int) ( ( x * ( 1 + sectionLength ) + xo + sectionLength - 19 - ( w * 0.5 ) ) * 2 ), ( y * offY + yo + 6 - negY + downY ) * 2, 4210752 );
2014-06-26 03:49:37 +02:00
if( this.tooltip == z - viewStart )
2014-06-28 07:20:12 +02:00
lineList.add( GuiText.Crafting.getLocal() + ": " + Long.toString( activeStack.getStackSize() ) );
downY += 5;
}
if( pendingStack != null && pendingStack.getStackSize() > 0 )
2014-06-28 07:20:12 +02:00
{
String str = Long.toString( pendingStack.getStackSize() );
if( pendingStack.getStackSize() >= 10000 )
str = Long.toString( pendingStack.getStackSize() / 1000 ) + 'k';
if( pendingStack.getStackSize() >= 10000000 )
str = Long.toString( pendingStack.getStackSize() / 1000000 ) + 'm';
2014-06-28 07:20:12 +02:00
str = GuiText.Scheduled.getLocal() + ": " + str;
2014-12-29 15:13:47 +01:00
int w = 4 + this.fontRendererObj.getStringWidth( str );
this.fontRendererObj.drawString( str, (int) ( ( x * ( 1 + sectionLength ) + xo + sectionLength - 19 - ( w * 0.5 ) ) * 2 ), ( y * offY + yo + 6 - negY + downY ) * 2, 4210752 );
2014-06-28 07:20:12 +02:00
if( this.tooltip == z - viewStart )
2014-06-28 07:20:12 +02:00
lineList.add( GuiText.Scheduled.getLocal() + ": " + Long.toString( pendingStack.getStackSize() ) );
}
2014-06-26 03:49:37 +02:00
GL11.glPopMatrix();
int posX = x * ( 1 + sectionLength ) + xo + sectionLength - 19;
2014-06-28 07:20:12 +02:00
int posY = y * offY + yo;
2014-06-26 03:49:37 +02:00
2014-06-27 04:47:26 +02:00
ItemStack is = refStack.copy().getItemStack();
if( this.tooltip == z - viewStart )
2014-06-26 03:49:37 +02:00
{
2014-06-28 07:20:12 +02:00
dspToolTip = Platform.getItemDisplayName( is );
2014-06-26 03:49:37 +02:00
if( lineList.size() > 0 )
dspToolTip = dspToolTip + '\n' + Joiner.on( "\n" ).join( lineList );
2014-06-26 03:49:37 +02:00
toolPosX = x * ( 1 + sectionLength ) + xo + sectionLength - 8;
2014-06-28 07:20:12 +02:00
toolPosY = y * offY + yo;
2014-06-26 03:49:37 +02:00
}
2014-12-29 15:13:47 +01:00
this.drawItem( posX, posY, is );
2014-06-26 03:49:37 +02:00
x++;
if( x > 2 )
2014-06-26 03:49:37 +02:00
{
y++;
x = 0;
}
}
}
if( this.tooltip >= 0 && dspToolTip.length() > 0 )
2014-06-26 03:49:37 +02:00
{
GL11.glPushAttrib( GL11.GL_ALL_ATTRIB_BITS );
2014-12-29 15:13:47 +01:00
this.drawTooltip( toolPosX, toolPosY + 10, 0, dspToolTip );
2014-06-26 03:49:37 +02:00
GL11.glPopAttrib();
}
}
@Override
public void drawBG( int offsetX, int offsetY, int mouseX, int mouseY )
{
this.bindTexture( "guis/craftingcpu.png" );
this.drawTexturedModalRect( offsetX, offsetY, 0, 0, this.xSize, this.ySize );
}
public void postUpdate( List<IAEItemStack> list, byte ref )
{
switch( ref )
{
case 0:
for( IAEItemStack l : list )
this.handleInput( this.storage, l );
break;
case 1:
for( IAEItemStack l : list )
this.handleInput( this.active, l );
break;
case 2:
for( IAEItemStack l : list )
this.handleInput( this.pending, l );
break;
}
for( IAEItemStack l : list )
{
long amt = this.getTotal( l );
if( amt <= 0 )
this.deleteVisualStack( l );
else
{
IAEItemStack is = this.findVisualStack( l );
is.setStackSize( amt );
}
}
this.setScrollBar();
}
private void handleInput( IItemList<IAEItemStack> s, IAEItemStack l )
{
IAEItemStack a = s.findPrecise( l );
if( l.getStackSize() <= 0 )
{
if( a != null )
a.reset();
}
else
{
if( a == null )
{
s.add( l.copy() );
a = s.findPrecise( l );
}
if( a != null )
a.setStackSize( l.getStackSize() );
}
}
private long getTotal( IAEItemStack is )
{
IAEItemStack a = this.storage.findPrecise( is );
IAEItemStack b = this.active.findPrecise( is );
IAEItemStack c = this.pending.findPrecise( is );
long total = 0;
if( a != null )
total += a.getStackSize();
if( b != null )
total += b.getStackSize();
if( c != null )
total += c.getStackSize();
return total;
}
private void deleteVisualStack( IAEItemStack l )
{
Iterator<IAEItemStack> i = this.visual.iterator();
while( i.hasNext() )
{
IAEItemStack o = i.next();
if( o.equals( l ) )
{
i.remove();
return;
}
}
}
2014-06-26 03:49:37 +02:00
private IAEItemStack findVisualStack( IAEItemStack l )
{
for( IAEItemStack o : this.visual )
{
if( o.equals( l ) )
{
return o;
}
}
IAEItemStack stack = l.copy();
this.visual.add( stack );
return stack;
2014-06-26 03:49:37 +02:00
}
@Override
public Enum getSortBy()
{
return SortOrder.NAME;
}
@Override
public Enum getSortDir()
{
return SortDir.ASCENDING;
}
@Override
public Enum getSortDisplay()
{
return ViewItems.ALL;
}
}