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;
|
|
|
|
|
2014-11-28 04:36:46 +01:00
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
import java.util.List;
|
|
|
|
|
2014-11-28 04:36:46 +01:00
|
|
|
import org.lwjgl.input.Mouse;
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
import net.minecraft.client.gui.GuiButton;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import net.minecraft.inventory.Slot;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
import appeng.api.config.Settings;
|
|
|
|
import appeng.api.config.SortDir;
|
|
|
|
import appeng.api.config.SortOrder;
|
|
|
|
import appeng.api.config.ViewItems;
|
|
|
|
import appeng.api.implementations.guiobjects.INetworkTool;
|
|
|
|
import appeng.api.storage.data.IAEItemStack;
|
|
|
|
import appeng.client.gui.AEBaseGui;
|
|
|
|
import appeng.client.gui.widgets.GuiImgButton;
|
|
|
|
import appeng.client.gui.widgets.GuiScrollbar;
|
|
|
|
import appeng.client.gui.widgets.ISortSource;
|
|
|
|
import appeng.client.me.ItemRepo;
|
|
|
|
import appeng.client.me.SlotME;
|
|
|
|
import appeng.container.implementations.ContainerNetworkStatus;
|
|
|
|
import appeng.core.AEConfig;
|
|
|
|
import appeng.core.localization.GuiText;
|
|
|
|
import appeng.util.Platform;
|
|
|
|
|
|
|
|
public class GuiNetworkStatus extends AEBaseGui implements ISortSource
|
|
|
|
{
|
|
|
|
|
2014-09-29 09:54:34 +02:00
|
|
|
final ItemRepo repo;
|
2014-09-24 02:26:27 +02:00
|
|
|
GuiImgButton units;
|
|
|
|
|
2014-09-29 09:54:34 +02:00
|
|
|
final int rows = 4;
|
2014-09-24 02:26:27 +02:00
|
|
|
|
|
|
|
public GuiNetworkStatus(InventoryPlayer inventoryPlayer, INetworkTool te) {
|
|
|
|
super( new ContainerNetworkStatus( inventoryPlayer, te ) );
|
|
|
|
this.ySize = 153;
|
|
|
|
this.xSize = 195;
|
|
|
|
myScrollBar = new GuiScrollbar();
|
|
|
|
repo = new ItemRepo( myScrollBar, this );
|
|
|
|
repo.rowSize = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void actionPerformed(GuiButton btn)
|
|
|
|
{
|
|
|
|
super.actionPerformed( btn );
|
|
|
|
|
|
|
|
boolean backwards = Mouse.isButtonDown( 1 );
|
|
|
|
|
|
|
|
if ( btn == units )
|
|
|
|
{
|
|
|
|
AEConfig.instance.nextPowerUnit( backwards );
|
|
|
|
units.set( AEConfig.instance.selectedPowerUnit() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void initGui()
|
|
|
|
{
|
|
|
|
super.initGui();
|
|
|
|
|
|
|
|
units = new GuiImgButton( this.guiLeft - 18, guiTop + 8, Settings.POWER_UNITS, AEConfig.instance.selectedPowerUnit() );
|
|
|
|
buttonList.add( units );
|
|
|
|
}
|
|
|
|
|
|
|
|
public void postUpdate(List<IAEItemStack> list)
|
|
|
|
{
|
|
|
|
repo.clear();
|
|
|
|
|
|
|
|
for (IAEItemStack is : list)
|
|
|
|
repo.postUpdate( is );
|
|
|
|
|
|
|
|
repo.updateView();
|
|
|
|
setScrollBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setScrollBar()
|
|
|
|
{
|
|
|
|
int size = repo.size();
|
|
|
|
myScrollBar.setTop( 39 ).setLeft( 175 ).setHeight( 78 );
|
|
|
|
myScrollBar.setRange( 0, (size + 4) / 5 - rows, 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void drawBG(int offsetX, int offsetY, int mouseX, int mouseY)
|
|
|
|
{
|
|
|
|
bindTexture( "guis/networkstatus.png" );
|
|
|
|
this.drawTexturedModalRect( offsetX, offsetY, 0, 0, xSize, ySize );
|
|
|
|
}
|
|
|
|
|
|
|
|
int tooltip = -1;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void drawScreen(int mouse_x, int mouse_y, float btn)
|
|
|
|
{
|
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
|
|
|
|
|
|
|
int gx = (width - xSize) / 2;
|
|
|
|
int gy = (height - ySize) / 2;
|
|
|
|
|
|
|
|
tooltip = -1;
|
|
|
|
|
|
|
|
for (int z = 0; z <= 4 * 5; z++)
|
|
|
|
{
|
|
|
|
int minX = gx + 14 + x * 31;
|
|
|
|
int minY = gy + 41 + y * 18;
|
|
|
|
|
|
|
|
if ( minX < mouse_x && minX + 28 > mouse_x )
|
|
|
|
{
|
|
|
|
if ( minY < mouse_y && minY + 20 > mouse_y )
|
|
|
|
{
|
|
|
|
tooltip = z;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
x++;
|
|
|
|
|
|
|
|
if ( x > 4 )
|
|
|
|
{
|
|
|
|
y++;
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
super.drawScreen( mouse_x, mouse_y, btn );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void drawFG(int offsetX, int offsetY, int mouseX, int mouseY)
|
|
|
|
{
|
|
|
|
ContainerNetworkStatus ns = (ContainerNetworkStatus) inventorySlots;
|
|
|
|
|
|
|
|
fontRendererObj.drawString( GuiText.NetworkDetails.getLocal(), 8, 6, 4210752 );
|
|
|
|
|
|
|
|
fontRendererObj.drawString( GuiText.StoredPower.getLocal() + ": " + Platform.formatPowerLong( ns.currentPower, false ), 13, 16, 4210752 );
|
|
|
|
fontRendererObj.drawString( GuiText.MaxPower.getLocal() + ": " + Platform.formatPowerLong( ns.maxPower, false ), 13, 26, 4210752 );
|
|
|
|
|
|
|
|
fontRendererObj.drawString( GuiText.PowerInputRate.getLocal() + ": " + Platform.formatPowerLong( ns.avgAddition, true ), 13, 143 - 10, 4210752 );
|
|
|
|
fontRendererObj.drawString( GuiText.PowerUsageRate.getLocal() + ": " + Platform.formatPowerLong( ns.powerUsage, true ), 13, 143 - 20, 4210752 );
|
|
|
|
|
|
|
|
int sectionLength = 30;
|
|
|
|
|
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
2014-10-09 21:12:43 +02:00
|
|
|
int xo = 12;
|
|
|
|
int yo = 42;
|
2014-09-24 02:26:27 +02:00
|
|
|
int viewStart = 0;// myScrollBar.getCurrentScroll() * 5;
|
|
|
|
int viewEnd = viewStart + 5 * 4;
|
|
|
|
|
|
|
|
String ToolTip = "";
|
|
|
|
int toolPosX = 0;
|
|
|
|
int toolPosY = 0;
|
|
|
|
|
|
|
|
for (int z = viewStart; z < Math.min( viewEnd, repo.size() ); z++)
|
|
|
|
{
|
|
|
|
IAEItemStack refStack = repo.getReferenceItem( z );
|
|
|
|
if ( refStack != null )
|
|
|
|
{
|
|
|
|
GL11.glPushMatrix();
|
|
|
|
GL11.glScaled( 0.5, 0.5, 0.5 );
|
|
|
|
|
|
|
|
String str = Long.toString( refStack.getStackSize() );
|
|
|
|
if ( refStack.getStackSize() >= 10000 )
|
2014-11-28 04:36:46 +01:00
|
|
|
str = Long.toString( refStack.getStackSize() / 1000 ) + 'k';
|
2014-09-24 02:26:27 +02:00
|
|
|
|
|
|
|
int w = fontRendererObj.getStringWidth( str );
|
2014-09-28 20:56:16 +02:00
|
|
|
fontRendererObj.drawString( str, (int) ((x * sectionLength + xo + sectionLength - 19 - (w * 0.5)) * 2), (y * 18 + yo + 6) * 2,
|
2014-09-24 02:26:27 +02:00
|
|
|
4210752 );
|
|
|
|
|
|
|
|
GL11.glPopMatrix();
|
|
|
|
int posX = x * sectionLength + xo + sectionLength - 18;
|
|
|
|
int posY = y * 18 + yo;
|
|
|
|
|
|
|
|
if ( tooltip == z - viewStart )
|
|
|
|
{
|
|
|
|
ToolTip = Platform.getItemDisplayName( repo.getItem( z ) );
|
|
|
|
|
2014-11-28 04:36:46 +01:00
|
|
|
ToolTip = ToolTip + ( '\n' + GuiText.Installed.getLocal() + ": " + (refStack.getStackSize()));
|
2014-09-24 02:26:27 +02:00
|
|
|
if ( refStack.getCountRequestable() > 0 )
|
2014-11-28 04:36:46 +01:00
|
|
|
ToolTip = ToolTip + ( '\n' + GuiText.EnergyDrain.getLocal() + ": " + Platform.formatPowerLong( refStack.getCountRequestable(), true ));
|
2014-09-24 02:26:27 +02:00
|
|
|
|
|
|
|
toolPosX = x * sectionLength + xo + sectionLength - 8;
|
|
|
|
toolPosY = y * 18 + yo;
|
|
|
|
}
|
|
|
|
|
|
|
|
drawItem( posX, posY, repo.getItem( z ) );
|
|
|
|
|
|
|
|
x++;
|
|
|
|
|
|
|
|
if ( x > 4 )
|
|
|
|
{
|
|
|
|
y++;
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( tooltip >= 0 && ToolTip.length() > 0 )
|
|
|
|
{
|
|
|
|
GL11.glPushAttrib( GL11.GL_ALL_ATTRIB_BITS );
|
|
|
|
drawTooltip( toolPosX, toolPosY + 10, 0, ToolTip );
|
|
|
|
GL11.glPopAttrib();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// @Override - NEI
|
2014-09-28 11:47:17 +02:00
|
|
|
public List<String> handleItemTooltip(ItemStack stack, int mouseX, int mouseY, List<String> currentToolTip)
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
if ( stack != null )
|
|
|
|
{
|
2014-09-28 11:47:17 +02:00
|
|
|
Slot s = getSlot( mouseX, mouseY );
|
2014-09-24 02:26:27 +02:00
|
|
|
if ( s instanceof SlotME )
|
|
|
|
{
|
|
|
|
IAEItemStack myStack = null;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
SlotME theSlotField = (SlotME) s;
|
|
|
|
myStack = theSlotField.getAEStack();
|
|
|
|
}
|
|
|
|
catch (Throwable ignore)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( myStack != null )
|
|
|
|
{
|
2014-09-28 11:47:17 +02:00
|
|
|
while (currentToolTip.size() > 1)
|
|
|
|
currentToolTip.remove( 1 );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-28 11:47:17 +02:00
|
|
|
return currentToolTip;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Vanilla version...
|
|
|
|
protected void drawItemStackTooltip(ItemStack stack, int x, int y)
|
|
|
|
{
|
|
|
|
Slot s = getSlot( x, y );
|
|
|
|
if ( s instanceof SlotME && stack != null )
|
|
|
|
{
|
|
|
|
IAEItemStack myStack = null;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
SlotME theSlotField = (SlotME) s;
|
|
|
|
myStack = theSlotField.getAEStack();
|
|
|
|
}
|
|
|
|
catch (Throwable ignore)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( myStack != null )
|
|
|
|
{
|
2014-09-28 11:47:17 +02:00
|
|
|
List currentToolTip = stack.getTooltip( this.mc.thePlayer, this.mc.gameSettings.advancedItemTooltips );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-09-28 11:47:17 +02:00
|
|
|
while (currentToolTip.size() > 1)
|
|
|
|
currentToolTip.remove( 1 );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-09-28 11:47:17 +02:00
|
|
|
currentToolTip.add( GuiText.Installed.getLocal() + ": " + (myStack.getStackSize()) );
|
|
|
|
currentToolTip.add( GuiText.EnergyDrain.getLocal() + ": " + Platform.formatPowerLong( myStack.getCountRequestable(), true ) );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-09-28 11:47:17 +02:00
|
|
|
drawTooltip( x, y, 0, join( currentToolTip, "\n" ) );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// super.drawItemStackTooltip( stack, x, y );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Enum getSortBy()
|
|
|
|
{
|
|
|
|
return SortOrder.NAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Enum getSortDir()
|
|
|
|
{
|
|
|
|
return SortDir.ASCENDING;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Enum getSortDisplay()
|
|
|
|
{
|
|
|
|
return ViewItems.ALL;
|
|
|
|
}
|
|
|
|
}
|