MAC Gui upgrade slots and network tool fixes.

This commit is contained in:
AlgorithmX2 2014-05-06 21:21:12 -05:00
parent 3351af3d4e
commit 24d497e583
2 changed files with 23 additions and 14 deletions

View file

@ -1,32 +1,36 @@
package appeng.client.gui.implementations;
import net.minecraft.entity.player.InventoryPlayer;
import appeng.client.gui.AEBaseGui;
import appeng.api.config.RedstoneMode;
import appeng.api.config.Settings;
import appeng.client.gui.widgets.GuiImgButton;
import appeng.container.implementations.ContainerMAC;
import appeng.core.localization.GuiText;
import appeng.tile.crafting.TileMolecularAssembler;
public class GuiMAC extends AEBaseGui
public class GuiMAC extends GuiUpgradeable
{
@Override
protected void addButtons()
{
redstoneMode = new GuiImgButton( this.guiLeft - 18, guiTop + 8, Settings.REDSTONE_CONTROLLED, RedstoneMode.IGNORE );
buttonList.add( redstoneMode );
}
protected String getBackground()
{
return "guis/mac.png";
}
public GuiMAC(InventoryPlayer inventoryPlayer, TileMolecularAssembler te) {
super( new ContainerMAC( inventoryPlayer, te ) );
this.ySize = 197;
this.xSize = 211;
}
@Override
public void drawBG(int offsetX, int offsetY, int mouseX, int mouseY)
protected GuiText getName()
{
bindTexture( "guis/mac.png" );
this.drawTexturedModalRect( offsetX, offsetY, 0, 0, xSize, ySize );
return GuiText.MolecularAssembler;
}
@Override
public void drawFG(int offsetX, int offsetY, int mouseX, int mouseY)
{
fontRendererObj.drawString( getGuiDisplayName( GuiText.MolecularAssembler.getLocal() ), 8, 6, 4210752 );
fontRendererObj.drawString( GuiText.inventory.getLocal(), 8, ySize - 96 + 3, 4210752 );
}
}

View file

@ -24,6 +24,11 @@ public class ContainerMAC extends ContainerUpgradeable
super( ip, te );
}
public int availableUpgrades()
{
return 5;
}
@Override
protected int getHeight()
{