2013-12-27 23:59:59 +01:00
|
|
|
package appeng.client.gui.implementations;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import net.minecraft.client.gui.GuiButton;
|
|
|
|
import net.minecraft.client.gui.GuiTextField;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import appeng.api.config.Settings;
|
2014-01-23 20:02:48 +01:00
|
|
|
import appeng.api.implementations.guiobjects.IPortableCell;
|
|
|
|
import appeng.api.implementations.tiles.IMEChest;
|
2014-01-05 09:49:24 +01:00
|
|
|
import appeng.api.storage.IStorageMonitorable;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.api.storage.data.IAEItemStack;
|
|
|
|
import appeng.client.gui.AEBaseMEGui;
|
|
|
|
import appeng.client.gui.widgets.GuiImgButton;
|
|
|
|
import appeng.client.gui.widgets.GuiScrollbar;
|
2014-02-06 06:08:05 +01:00
|
|
|
import appeng.client.gui.widgets.ISortSource;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.client.me.InternalSlotME;
|
|
|
|
import appeng.client.me.ItemRepo;
|
|
|
|
import appeng.container.implementations.ContainerMEMonitorable;
|
|
|
|
import appeng.container.slot.AppEngSlot;
|
2014-02-09 06:08:27 +01:00
|
|
|
import appeng.core.AEConfig;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.core.localization.GuiText;
|
2014-02-03 06:02:54 +01:00
|
|
|
import appeng.helpers.WirelessTerminalGuiObject;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.parts.reporting.PartTerminal;
|
2014-01-31 07:33:31 +01:00
|
|
|
import appeng.tile.misc.TileSecurity;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.util.Platform;
|
|
|
|
|
2014-02-06 06:08:05 +01:00
|
|
|
public class GuiMEMonitorable extends AEBaseMEGui implements ISortSource
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
GuiTextField searchField;
|
|
|
|
ItemRepo repo;
|
|
|
|
|
|
|
|
GuiText myName;
|
2014-01-31 07:33:31 +01:00
|
|
|
|
|
|
|
int xoffset = 9;
|
|
|
|
int perRow = 9;
|
2014-02-01 06:37:27 +01:00
|
|
|
int reservedSpace = 0;
|
2014-02-05 03:44:54 +01:00
|
|
|
int lowerTextureOffset = 0;
|
2014-02-06 06:08:05 +01:00
|
|
|
boolean customSortOrder = true;
|
2014-01-31 07:33:31 +01:00
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
int rows = 0;
|
2014-01-20 17:41:37 +01:00
|
|
|
int maxRows = Integer.MAX_VALUE;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
public GuiMEMonitorable(InventoryPlayer inventoryPlayer, IStorageMonitorable te) {
|
2014-02-01 06:37:27 +01:00
|
|
|
this( inventoryPlayer, te, new ContainerMEMonitorable( inventoryPlayer, null ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
public GuiMEMonitorable(InventoryPlayer inventoryPlayer, IStorageMonitorable te, ContainerMEMonitorable c) {
|
|
|
|
|
|
|
|
super( c );
|
2013-12-27 23:59:59 +01:00
|
|
|
myScrollBar = new GuiScrollbar();
|
2014-02-06 06:08:05 +01:00
|
|
|
repo = new ItemRepo( myScrollBar, this );
|
2013-12-27 23:59:59 +01:00
|
|
|
xSize = 195;
|
|
|
|
ySize = 204;
|
|
|
|
|
2014-01-31 07:33:31 +01:00
|
|
|
if ( te instanceof TileSecurity )
|
|
|
|
myName = GuiText.Security;
|
2014-02-03 06:02:54 +01:00
|
|
|
else if ( te instanceof WirelessTerminalGuiObject )
|
|
|
|
myName = GuiText.WirelessTerminal;
|
2014-01-31 07:33:31 +01:00
|
|
|
else if ( te instanceof IPortableCell )
|
2014-01-20 17:41:37 +01:00
|
|
|
myName = GuiText.PortableCell;
|
2014-01-31 07:33:31 +01:00
|
|
|
else if ( te instanceof IMEChest )
|
2013-12-27 23:59:59 +01:00
|
|
|
myName = GuiText.Chest;
|
|
|
|
else if ( te instanceof PartTerminal )
|
|
|
|
myName = GuiText.Terminal;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void postUpdate(List<IAEItemStack> list)
|
|
|
|
{
|
|
|
|
for (IAEItemStack is : list)
|
|
|
|
repo.postUpdate( is );
|
|
|
|
|
|
|
|
repo.updateView();
|
|
|
|
setScrollBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setScrollBar()
|
|
|
|
{
|
|
|
|
myScrollBar.setTop( 18 ).setLeft( 175 ).setHeight( rows * 18 - 2 );
|
2014-01-31 07:33:31 +01:00
|
|
|
myScrollBar.setRange( 0, (repo.size() + perRow - 1) / perRow - rows, Math.max( 1, rows / 6 ) );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void initGui()
|
|
|
|
{
|
|
|
|
int NEI = 0;
|
|
|
|
int top = 4;
|
2014-02-05 03:44:54 +01:00
|
|
|
int magicNumber = 114 + 1;
|
|
|
|
int extraSpace = height - magicNumber - NEI - top - reservedSpace;
|
2014-01-20 17:41:37 +01:00
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
rows = (int) Math.floor( extraSpace / 18 );
|
2014-01-20 17:41:37 +01:00
|
|
|
if ( rows > maxRows )
|
|
|
|
{
|
|
|
|
top += (rows - maxRows) * 18 / 2;
|
|
|
|
rows = maxRows;
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
meSlots.clear();
|
|
|
|
for (int y = 0; y < rows; y++)
|
|
|
|
{
|
2014-01-31 07:33:31 +01:00
|
|
|
for (int x = 0; x < perRow; x++)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-01-31 07:33:31 +01:00
|
|
|
meSlots.add( new InternalSlotME( repo, x + y * perRow, xoffset + x * 18, 18 + y * 18 ) );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
super.initGui();
|
|
|
|
// full size : 204
|
|
|
|
// extra slots : 72
|
|
|
|
// slot 18
|
|
|
|
|
2014-02-05 03:44:54 +01:00
|
|
|
this.ySize = magicNumber + rows * 18 + reservedSpace;
|
2013-12-27 23:59:59 +01:00
|
|
|
this.guiTop = top;
|
|
|
|
|
2014-02-06 06:08:05 +01:00
|
|
|
int offset = guiTop + 8;
|
|
|
|
|
|
|
|
if ( customSortOrder )
|
|
|
|
{
|
2014-02-09 06:08:27 +01:00
|
|
|
buttonList.add( new GuiImgButton( this.guiLeft - 18, offset, Settings.SORT_BY, AEConfig.instance.settings.getSetting( Settings.SORT_BY ) ) );
|
2014-02-06 06:08:05 +01:00
|
|
|
offset += 20;
|
|
|
|
}
|
|
|
|
|
2014-02-09 06:08:27 +01:00
|
|
|
buttonList.add( new GuiImgButton( this.guiLeft - 18, offset, Settings.SORT_DIRECTION, AEConfig.instance.settings
|
2013-12-27 23:59:59 +01:00
|
|
|
.getSetting( Settings.SORT_DIRECTION ) ) );
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
searchField = new GuiTextField( fontRendererObj, this.guiLeft + Math.max( 82, xoffset ), this.guiTop + 6, 89, fontRendererObj.FONT_HEIGHT );
|
2013-12-27 23:59:59 +01:00
|
|
|
searchField.setEnableBackgroundDrawing( false );
|
|
|
|
searchField.setMaxStringLength( 25 );
|
|
|
|
searchField.setTextColor( 0xFFFFFF );
|
|
|
|
searchField.setVisible( true );
|
|
|
|
searchField.setFocused( true );
|
|
|
|
|
|
|
|
setScrollBar();
|
|
|
|
|
|
|
|
for (Object s : inventorySlots.inventorySlots)
|
|
|
|
{
|
|
|
|
if ( s instanceof AppEngSlot )
|
|
|
|
{
|
2014-02-02 08:32:10 +01:00
|
|
|
if ( ((AppEngSlot) s).xDisplayPosition < 197 )
|
2014-02-05 03:44:54 +01:00
|
|
|
((AppEngSlot) s).yDisplayPosition = ((AppEngSlot) s).defY + ySize - 78 - 5;
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void actionPerformed(GuiButton btn)
|
|
|
|
{
|
|
|
|
if ( btn instanceof GuiImgButton )
|
|
|
|
{
|
|
|
|
GuiImgButton iBtn = (GuiImgButton) btn;
|
|
|
|
Enum cv = iBtn.getCurrentValue();
|
|
|
|
|
|
|
|
Enum next = Platform.nextEnum( cv );
|
2014-02-09 06:08:27 +01:00
|
|
|
AEConfig.instance.settings.putSetting( iBtn.getSetting(), next );
|
2013-12-27 23:59:59 +01:00
|
|
|
iBtn.set( next );
|
|
|
|
repo.updateView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void keyTyped(char character, int key)
|
|
|
|
{
|
|
|
|
if ( !this.checkHotbarKeys( key ) )
|
|
|
|
{
|
|
|
|
if ( searchField.textboxKeyTyped( character, key ) )
|
|
|
|
{
|
|
|
|
repo.searchString = this.searchField.getText();
|
|
|
|
repo.updateView();
|
2014-02-06 17:57:01 +01:00
|
|
|
setScrollBar();
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
super.keyTyped( character, key );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void drawBG(int offsetX, int offsetY, int mouseX, int mouseY)
|
|
|
|
{
|
2014-02-02 08:32:10 +01:00
|
|
|
int x_width = 197;
|
|
|
|
|
2014-01-31 07:33:31 +01:00
|
|
|
bindTexture( getBackground() );
|
2014-02-02 08:32:10 +01:00
|
|
|
this.drawTexturedModalRect( offsetX, offsetY, 0, 0, x_width, 18 );
|
|
|
|
this.drawTexturedModalRect( offsetX + x_width, offsetY, x_width, 0, 46, 128 );
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
for (int x = 0; x < rows; x++)
|
2014-02-02 08:32:10 +01:00
|
|
|
this.drawTexturedModalRect( offsetX, offsetY + 18 + x * 18, 0, 18, x_width, 18 );
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-02-05 03:44:54 +01:00
|
|
|
this.drawTexturedModalRect( offsetX, offsetY + 16 + rows * 18 + lowerTextureOffset, 0, 106 - 18 - 18, x_width, 99 + reservedSpace - lowerTextureOffset );
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
searchField.drawTextBox();
|
|
|
|
}
|
|
|
|
|
2014-01-31 07:33:31 +01:00
|
|
|
protected String getBackground()
|
|
|
|
{
|
|
|
|
return "guis/terminal.png";
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
@Override
|
|
|
|
public void drawFG(int offsetX, int offsetY, int mouseX, int mouseY)
|
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
fontRendererObj.drawString( myName.getLocal(), 8, 6, 4210752 );
|
|
|
|
fontRendererObj.drawString( GuiText.inventory.getLocal(), 8, ySize - 96 + 3, 4210752 );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
2014-02-06 06:08:05 +01:00
|
|
|
@Override
|
|
|
|
public Enum getSortBy()
|
|
|
|
{
|
2014-02-09 06:08:27 +01:00
|
|
|
return AEConfig.instance.settings.getSetting( Settings.SORT_BY );
|
2014-02-06 06:08:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Enum getSortDir()
|
|
|
|
{
|
2014-02-09 06:08:27 +01:00
|
|
|
return AEConfig.instance.settings.getSetting( Settings.SORT_DIRECTION );
|
2014-02-06 06:08:05 +01:00
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|