2013-12-27 23:59:59 +01:00
|
|
|
package appeng.client.gui;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
2014-03-06 06:45:14 +01:00
|
|
|
import java.text.DecimalFormat;
|
2014-01-23 17:28:12 +01:00
|
|
|
import java.util.Collection;
|
2013-12-27 23:59:59 +01:00
|
|
|
import java.util.Iterator;
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import net.minecraft.client.Minecraft;
|
2014-01-31 04:08:44 +01:00
|
|
|
import net.minecraft.client.gui.GuiButton;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.client.gui.inventory.GuiContainer;
|
|
|
|
import net.minecraft.client.renderer.RenderHelper;
|
2014-01-31 04:08:44 +01:00
|
|
|
import net.minecraft.client.renderer.Tessellator;
|
|
|
|
import net.minecraft.client.renderer.entity.RenderItem;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.inventory.Container;
|
|
|
|
import net.minecraft.inventory.Slot;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
|
2014-02-27 04:56:00 +01:00
|
|
|
import org.lwjgl.input.Keyboard;
|
2013-12-27 23:59:59 +01:00
|
|
|
import org.lwjgl.input.Mouse;
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
import org.lwjgl.opengl.GL12;
|
|
|
|
|
2014-03-06 06:45:14 +01:00
|
|
|
import appeng.api.config.PowerUnits;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.api.storage.data.IAEItemStack;
|
|
|
|
import appeng.client.gui.widgets.GuiScrollbar;
|
|
|
|
import appeng.client.gui.widgets.ITooltip;
|
|
|
|
import appeng.client.me.InternalSlotME;
|
|
|
|
import appeng.client.me.SlotME;
|
2014-01-31 04:08:44 +01:00
|
|
|
import appeng.client.render.AppEngRenderItem;
|
2014-03-15 07:58:21 +01:00
|
|
|
import appeng.container.AEBaseContainer;
|
2014-02-05 08:25:44 +01:00
|
|
|
import appeng.container.slot.AppEngCraftingSlot;
|
2014-01-31 04:08:44 +01:00
|
|
|
import appeng.container.slot.AppEngSlot;
|
|
|
|
import appeng.container.slot.AppEngSlot.hasCalculatedValidness;
|
2014-01-01 09:57:16 +01:00
|
|
|
import appeng.container.slot.OptionalSlotFake;
|
2014-02-05 08:25:44 +01:00
|
|
|
import appeng.container.slot.SlotCraftingTerm;
|
2014-01-31 04:08:44 +01:00
|
|
|
import appeng.container.slot.SlotDisabled;
|
2014-01-01 09:57:16 +01:00
|
|
|
import appeng.container.slot.SlotFake;
|
2014-01-31 04:08:44 +01:00
|
|
|
import appeng.container.slot.SlotInaccessable;
|
|
|
|
import appeng.container.slot.SlotOutput;
|
|
|
|
import appeng.container.slot.SlotRestrictedInput;
|
2014-03-06 06:45:14 +01:00
|
|
|
import appeng.core.AEConfig;
|
2014-01-31 04:08:44 +01:00
|
|
|
import appeng.core.AELog;
|
2014-05-01 06:01:22 +02:00
|
|
|
import appeng.core.AppEng;
|
2014-02-09 02:34:52 +01:00
|
|
|
import appeng.core.sync.network.NetworkHandler;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.core.sync.packets.PacketInventoryAction;
|
2014-03-30 00:36:37 +01:00
|
|
|
import appeng.core.sync.packets.PacketSwapSlots;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.helpers.InventoryAction;
|
2014-05-01 06:01:22 +02:00
|
|
|
import appeng.integration.abstraction.INEI;
|
2014-02-09 02:34:52 +01:00
|
|
|
import appeng.util.Platform;
|
2014-03-30 05:19:15 +02:00
|
|
|
import cpw.mods.fml.common.ObfuscationReflectionHelper;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
public abstract class AEBaseGui extends GuiContainer
|
|
|
|
{
|
|
|
|
|
|
|
|
protected List<InternalSlotME> meSlots = new LinkedList<InternalSlotME>();
|
|
|
|
protected GuiScrollbar myScrollBar = null;
|
|
|
|
|
2014-03-06 06:45:14 +01:00
|
|
|
protected String formatPowerLong(long n, boolean isRate)
|
|
|
|
{
|
|
|
|
double p = ((double) n) / 100;
|
|
|
|
|
|
|
|
PowerUnits displayUnits = AEConfig.instance.selectedPowerUnit();
|
|
|
|
p = PowerUnits.AE.convertTo( displayUnits, p );
|
|
|
|
|
|
|
|
int offset = 0;
|
|
|
|
String Lvl = "";
|
|
|
|
String preFixes[] = new String[] { "k", "M", "G", "T", "P", "T", "P", "E", "Z", "Y" };
|
|
|
|
String unitName = displayUnits.name();
|
|
|
|
|
|
|
|
if ( displayUnits == PowerUnits.WA )
|
|
|
|
unitName = "J";
|
|
|
|
|
|
|
|
if ( displayUnits == PowerUnits.KJ )
|
|
|
|
{
|
|
|
|
Lvl = preFixes[offset];
|
|
|
|
unitName = "J";
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (p > 1000 && offset < preFixes.length)
|
|
|
|
{
|
|
|
|
p /= 1000;
|
|
|
|
Lvl = preFixes[offset];
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
|
|
|
|
DecimalFormat df = new DecimalFormat( "#.##" );
|
|
|
|
return df.format( p ) + " " + Lvl + unitName + (isRate ? "/t" : "");
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
public AEBaseGui(Container container) {
|
|
|
|
super( container );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void initGui()
|
|
|
|
{
|
|
|
|
super.initGui();
|
|
|
|
|
|
|
|
Iterator<Slot> i = inventorySlots.inventorySlots.iterator();
|
|
|
|
while (i.hasNext())
|
|
|
|
if ( i.next() instanceof SlotME )
|
|
|
|
i.remove();
|
|
|
|
|
|
|
|
for (InternalSlotME me : meSlots)
|
|
|
|
inventorySlots.inventorySlots.add( new SlotME( me ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void handleMouseInput()
|
|
|
|
{
|
|
|
|
super.handleMouseInput();
|
|
|
|
|
|
|
|
if ( myScrollBar != null )
|
|
|
|
{
|
|
|
|
int i = Mouse.getEventDWheel();
|
|
|
|
if ( i != 0 )
|
|
|
|
myScrollBar.wheel( i );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-31 04:08:44 +01:00
|
|
|
@Override
|
|
|
|
protected void mouseClicked(int xCoord, int yCoord, int btn)
|
|
|
|
{
|
|
|
|
if ( btn == 1 )
|
|
|
|
{
|
|
|
|
for (Object o : this.buttonList)
|
|
|
|
{
|
|
|
|
GuiButton guibutton = (GuiButton) o;
|
|
|
|
if ( guibutton.mousePressed( this.mc, xCoord, yCoord ) )
|
|
|
|
{
|
|
|
|
super.mouseClicked( xCoord, yCoord, 0 );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
super.mouseClicked( xCoord, yCoord, btn );
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
@Override
|
|
|
|
protected void handleMouseClick(Slot slot, int slotIdx, int ctrlDown, int key)
|
|
|
|
{
|
|
|
|
EntityPlayer player = Minecraft.getMinecraft().thePlayer;
|
|
|
|
|
2014-01-01 09:57:16 +01:00
|
|
|
if ( slot instanceof SlotFake )
|
|
|
|
{
|
|
|
|
InventoryAction action = null;
|
|
|
|
IAEItemStack stack = null;
|
|
|
|
action = ctrlDown == 1 ? InventoryAction.SPLIT_OR_PLACESINGLE : InventoryAction.PICKUP_OR_SETDOWN;
|
|
|
|
|
|
|
|
if ( action != null )
|
|
|
|
{
|
|
|
|
PacketInventoryAction p;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
p = new PacketInventoryAction( action, slotIdx, stack );
|
2014-02-09 02:34:52 +01:00
|
|
|
NetworkHandler.instance.sendToServer( p );
|
2014-01-01 09:57:16 +01:00
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
2014-02-07 21:37:22 +01:00
|
|
|
AELog.error( e );
|
2014-01-01 09:57:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-05 08:25:44 +01:00
|
|
|
if ( slot instanceof SlotCraftingTerm )
|
|
|
|
{
|
|
|
|
if ( key == 6 )
|
|
|
|
return; // prevent weird double clicks..
|
|
|
|
|
|
|
|
InventoryAction action = null;
|
|
|
|
IAEItemStack stack = null;
|
|
|
|
if ( key == 1 )
|
|
|
|
action = InventoryAction.CRAFT_SHIFT;
|
|
|
|
else
|
|
|
|
action = ctrlDown == 1 ? InventoryAction.CRAFT_STACK : InventoryAction.CRAFT_ITEM;
|
|
|
|
|
|
|
|
if ( action != null )
|
|
|
|
{
|
|
|
|
PacketInventoryAction p;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
p = new PacketInventoryAction( action, slotIdx, stack );
|
2014-02-09 02:34:52 +01:00
|
|
|
NetworkHandler.instance.sendToServer( p );
|
2014-02-05 08:25:44 +01:00
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
2014-02-07 21:37:22 +01:00
|
|
|
AELog.error( e );
|
2014-02-05 08:25:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-27 04:56:00 +01:00
|
|
|
if ( Keyboard.isKeyDown( Keyboard.KEY_SPACE ) )
|
|
|
|
{
|
|
|
|
IAEItemStack stack = null;
|
|
|
|
if ( slot instanceof SlotME )
|
|
|
|
stack = ((SlotME) slot).getAEStack();
|
|
|
|
|
|
|
|
PacketInventoryAction p;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
int slotNum = inventorySlots.inventorySlots.size();
|
|
|
|
|
|
|
|
if ( !(slot instanceof SlotME) && slot != null )
|
|
|
|
slotNum = slot.slotNumber;
|
|
|
|
|
|
|
|
p = new PacketInventoryAction( InventoryAction.MOVE_REGION, slotNum, stack );
|
|
|
|
NetworkHandler.instance.sendToServer( p );
|
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
|
|
|
AELog.error( e );
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
if ( slot instanceof SlotME )
|
|
|
|
{
|
|
|
|
InventoryAction action = null;
|
|
|
|
IAEItemStack stack = null;
|
|
|
|
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case 0: // pickup / set-down.
|
|
|
|
action = ctrlDown == 1 ? InventoryAction.SPLIT_OR_PLACESINGLE : InventoryAction.PICKUP_OR_SETDOWN;
|
|
|
|
stack = ((SlotME) slot).getAEStack();
|
|
|
|
break;
|
|
|
|
case 1:
|
2014-01-30 02:20:48 +01:00
|
|
|
action = ctrlDown == 1 ? InventoryAction.PICKUP_SINGLE : InventoryAction.SHIFT_CLICK;
|
2013-12-27 23:59:59 +01:00
|
|
|
stack = ((SlotME) slot).getAEStack();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3: // creative dupe:
|
|
|
|
if ( player.capabilities.isCreativeMode )
|
|
|
|
{
|
|
|
|
IAEItemStack slotItem = ((SlotME) slot).getAEStack();
|
|
|
|
if ( slotItem != null )
|
|
|
|
{
|
|
|
|
action = InventoryAction.CREATIVE_DUPLICATE;
|
|
|
|
stack = slotItem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
case 4: // drop item:
|
|
|
|
case 6:
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( action != null )
|
|
|
|
{
|
|
|
|
PacketInventoryAction p;
|
|
|
|
try
|
|
|
|
{
|
2014-01-01 09:57:16 +01:00
|
|
|
p = new PacketInventoryAction( action, inventorySlots.inventorySlots.size(), stack );
|
2014-02-09 02:34:52 +01:00
|
|
|
NetworkHandler.instance.sendToServer( p );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
2014-02-07 21:37:22 +01:00
|
|
|
AELog.error( e );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
super.handleMouseClick( slot, slotIdx, ctrlDown, key );
|
|
|
|
}
|
|
|
|
|
2014-03-30 00:36:37 +01:00
|
|
|
@Override
|
|
|
|
protected boolean checkHotbarKeys(int p_146983_1_)
|
|
|
|
{
|
2014-03-30 05:19:15 +02:00
|
|
|
Slot theSlot;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
theSlot = ObfuscationReflectionHelper.getPrivateValue( GuiContainer.class, this, "theSlot", "field_147006_u", "f" );
|
|
|
|
}
|
|
|
|
catch (Throwable t)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-03-30 00:36:37 +01:00
|
|
|
|
|
|
|
if ( this.mc.thePlayer.inventory.getItemStack() == null && theSlot != null )
|
|
|
|
{
|
|
|
|
for (int j = 0; j < 9; ++j)
|
|
|
|
{
|
|
|
|
if ( p_146983_1_ == this.mc.gameSettings.keyBindsHotbar[j].getKeyCode() )
|
|
|
|
{
|
|
|
|
if ( theSlot.getSlotStackLimit() == 64 )
|
|
|
|
{
|
|
|
|
this.handleMouseClick( theSlot, theSlot.slotNumber, j, 2 );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
for (Slot s : (List<Slot>) inventorySlots.inventorySlots)
|
|
|
|
{
|
|
|
|
if ( s.getSlotIndex() == j && s.inventory == ((AEBaseContainer) inventorySlots).getPlayerInv() )
|
|
|
|
{
|
|
|
|
NetworkHandler.instance.sendToServer( new PacketSwapSlots( s.slotNumber, theSlot.slotNumber ) );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
|
|
|
AELog.error( e );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
@Override
|
|
|
|
public void drawScreen(int mouse_x, int mouse_y, float btn)
|
|
|
|
{
|
|
|
|
super.drawScreen( mouse_x, mouse_y, btn );
|
|
|
|
|
|
|
|
boolean hasClicked = Mouse.isButtonDown( 0 );
|
|
|
|
if ( hasClicked && myScrollBar != null )
|
|
|
|
myScrollBar.click( this, mouse_x - guiLeft, mouse_y - guiTop );
|
|
|
|
|
|
|
|
for (Object c : buttonList)
|
|
|
|
{
|
|
|
|
if ( c instanceof ITooltip )
|
|
|
|
{
|
|
|
|
ITooltip tooltip = (ITooltip) c;
|
|
|
|
int x = tooltip.xPos(); // ((GuiImgButton) c).xPosition;
|
|
|
|
int y = tooltip.yPos(); // ((GuiImgButton) c).yPosition;
|
|
|
|
|
2014-01-05 09:41:03 +01:00
|
|
|
if ( x < mouse_x && x + tooltip.getWidth() > mouse_x && tooltip.isVisible() )
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
if ( y < mouse_y && y + tooltip.getHeight() > mouse_y )
|
|
|
|
{
|
|
|
|
String msg = tooltip.getMsg();
|
|
|
|
if ( msg != null )
|
|
|
|
drawTooltip( x + 8, y + 4, 0, msg );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void drawTooltip(int par2, int par3, int forceWidth, String Msg)
|
|
|
|
{
|
|
|
|
GL11.glPushAttrib( GL11.GL_ALL_ATTRIB_BITS );
|
|
|
|
GL11.glDisable( GL12.GL_RESCALE_NORMAL );
|
|
|
|
RenderHelper.disableStandardItemLighting();
|
|
|
|
GL11.glDisable( GL11.GL_LIGHTING );
|
|
|
|
GL11.glDisable( GL11.GL_DEPTH_TEST );
|
|
|
|
String[] var4 = Msg.split( "\n" );
|
|
|
|
|
|
|
|
if ( var4.length > 0 )
|
|
|
|
{
|
|
|
|
int var5 = 0;
|
|
|
|
int var6;
|
|
|
|
int var7;
|
|
|
|
|
|
|
|
for (var6 = 0; var6 < var4.length; ++var6)
|
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
var7 = fontRendererObj.getStringWidth( (String) var4[var6] );
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
if ( var7 > var5 )
|
|
|
|
{
|
|
|
|
var5 = var7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var6 = par2 + 12;
|
|
|
|
var7 = par3 - 12;
|
|
|
|
int var9 = 8;
|
|
|
|
|
|
|
|
if ( var4.length > 1 )
|
|
|
|
{
|
|
|
|
var9 += 2 + (var4.length - 1) * 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( this.guiTop + var7 + var9 + 6 > this.height )
|
|
|
|
{
|
|
|
|
var7 = this.height - var9 - this.guiTop - 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( forceWidth > 0 )
|
|
|
|
var5 = forceWidth;
|
|
|
|
|
|
|
|
this.zLevel = 300.0F;
|
2014-02-09 02:34:52 +01:00
|
|
|
itemRender.zLevel = 300.0F;
|
2013-12-27 23:59:59 +01:00
|
|
|
int var10 = -267386864;
|
|
|
|
this.drawGradientRect( var6 - 3, var7 - 4, var6 + var5 + 3, var7 - 3, var10, var10 );
|
|
|
|
this.drawGradientRect( var6 - 3, var7 + var9 + 3, var6 + var5 + 3, var7 + var9 + 4, var10, var10 );
|
|
|
|
this.drawGradientRect( var6 - 3, var7 - 3, var6 + var5 + 3, var7 + var9 + 3, var10, var10 );
|
|
|
|
this.drawGradientRect( var6 - 4, var7 - 3, var6 - 3, var7 + var9 + 3, var10, var10 );
|
|
|
|
this.drawGradientRect( var6 + var5 + 3, var7 - 3, var6 + var5 + 4, var7 + var9 + 3, var10, var10 );
|
|
|
|
int var11 = 1347420415;
|
|
|
|
int var12 = (var11 & 16711422) >> 1 | var11 & -16777216;
|
|
|
|
this.drawGradientRect( var6 - 3, var7 - 3 + 1, var6 - 3 + 1, var7 + var9 + 3 - 1, var11, var12 );
|
|
|
|
this.drawGradientRect( var6 + var5 + 2, var7 - 3 + 1, var6 + var5 + 3, var7 + var9 + 3 - 1, var11, var12 );
|
|
|
|
this.drawGradientRect( var6 - 3, var7 - 3, var6 + var5 + 3, var7 - 3 + 1, var11, var11 );
|
|
|
|
this.drawGradientRect( var6 - 3, var7 + var9 + 2, var6 + var5 + 3, var7 + var9 + 3, var12, var12 );
|
|
|
|
|
|
|
|
for (int var13 = 0; var13 < var4.length; ++var13)
|
|
|
|
{
|
|
|
|
String var14 = (String) var4[var13];
|
|
|
|
|
|
|
|
if ( var13 == 0 )
|
|
|
|
{
|
|
|
|
var14 = "\u00a7" + Integer.toHexString( 15 ) + var14;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var14 = "\u00a77" + var14;
|
|
|
|
}
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
this.fontRendererObj.drawStringWithShadow( var14, var6, var7, -1 );
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
if ( var13 == 0 )
|
|
|
|
{
|
|
|
|
var7 += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
var7 += 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.zLevel = 0.0F;
|
2014-02-09 02:34:52 +01:00
|
|
|
itemRender.zLevel = 0.0F;
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
GL11.glPopAttrib();
|
|
|
|
}
|
|
|
|
|
|
|
|
public abstract void drawBG(int offsetX, int offsetY, int mouseX, int mouseY);
|
|
|
|
|
|
|
|
public abstract void drawFG(int offsetX, int offsetY, int mouseX, int mouseY);
|
|
|
|
|
|
|
|
public void bindTexture(String base, String file)
|
|
|
|
{
|
|
|
|
ResourceLocation loc = new ResourceLocation( base, "textures/" + file );
|
|
|
|
this.mc.getTextureManager().bindTexture( loc );
|
|
|
|
}
|
|
|
|
|
|
|
|
public void bindTexture(String file)
|
|
|
|
{
|
|
|
|
ResourceLocation loc = new ResourceLocation( "appliedenergistics2", "textures/" + file );
|
|
|
|
this.mc.getTextureManager().bindTexture( loc );
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void drawItem(int x, int y, ItemStack is)
|
|
|
|
{
|
|
|
|
this.zLevel = 100.0F;
|
2014-02-09 02:34:52 +01:00
|
|
|
itemRender.zLevel = 100.0F;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
GL11.glEnable( GL11.GL_LIGHTING );
|
|
|
|
GL11.glEnable( GL12.GL_RESCALE_NORMAL );
|
|
|
|
RenderHelper.enableGUIStandardItemLighting();
|
2014-02-09 02:34:52 +01:00
|
|
|
itemRender.renderItemAndEffectIntoGUI( this.fontRendererObj, this.mc.renderEngine, is, x, y );
|
2013-12-27 23:59:59 +01:00
|
|
|
GL11.glDisable( GL11.GL_LIGHTING );
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
itemRender.zLevel = 0.0F;
|
2013-12-27 23:59:59 +01:00
|
|
|
this.zLevel = 0.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
final protected void drawGuiContainerBackgroundLayer(float f, int x, int y)
|
|
|
|
{
|
|
|
|
int ox = guiLeft; // (width - xSize) / 2;
|
|
|
|
int oy = guiTop; // (height - ySize) / 2;
|
|
|
|
GL11.glColor4f( 1.0F, 1.0F, 1.0F, 1.0F );
|
|
|
|
drawBG( ox, oy, x, y );
|
2014-01-01 09:57:16 +01:00
|
|
|
|
|
|
|
for (Object o : inventorySlots.inventorySlots)
|
|
|
|
{
|
|
|
|
if ( o instanceof OptionalSlotFake )
|
|
|
|
{
|
|
|
|
OptionalSlotFake fs = (OptionalSlotFake) o;
|
|
|
|
if ( fs.isEnabled() )
|
|
|
|
this.drawTexturedModalRect( ox + fs.xDisplayPosition - 1, oy + fs.yDisplayPosition - 1, fs.srcX - 1, fs.srcY - 1, 18, 18 );
|
2014-01-26 07:44:50 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
GL11.glPushAttrib( GL11.GL_ALL_ATTRIB_BITS );
|
|
|
|
GL11.glColor4f( 1.0F, 1.0F, 1.0F, 0.4F );
|
|
|
|
GL11.glEnable( GL11.GL_BLEND );
|
|
|
|
this.drawTexturedModalRect( ox + fs.xDisplayPosition - 1, oy + fs.yDisplayPosition - 1, fs.srcX - 1, fs.srcY - 1, 18, 18 );
|
|
|
|
GL11.glColor4f( 1.0F, 1.0F, 1.0F, 1.0F );
|
|
|
|
GL11.glPopAttrib();
|
|
|
|
}
|
2014-01-01 09:57:16 +01:00
|
|
|
}
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
final protected void drawGuiContainerForegroundLayer(int x, int y)
|
|
|
|
{
|
|
|
|
int ox = guiLeft; // (width - xSize) / 2;
|
|
|
|
int oy = guiTop; // (height - ySize) / 2;
|
|
|
|
GL11.glColor4f( 1.0F, 1.0F, 1.0F, 1.0F );
|
2014-01-23 17:28:12 +01:00
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
if ( myScrollBar != null )
|
|
|
|
myScrollBar.draw( this );
|
2014-01-23 17:28:12 +01:00
|
|
|
|
|
|
|
drawFG( ox, oy, x, y );
|
|
|
|
}
|
|
|
|
|
2014-03-15 07:58:21 +01:00
|
|
|
protected String getGuiDisplayName(String in)
|
|
|
|
{
|
|
|
|
return hasCustomInventoryName() ? getInventoryName() : in;
|
|
|
|
}
|
|
|
|
|
|
|
|
private String getInventoryName()
|
|
|
|
{
|
|
|
|
return ((AEBaseContainer) inventorySlots).customName;
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean hasCustomInventoryName()
|
|
|
|
{
|
|
|
|
if ( inventorySlots instanceof AEBaseContainer )
|
|
|
|
return ((AEBaseContainer) inventorySlots).customName != null;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-01-23 17:28:12 +01:00
|
|
|
protected Slot getSlot(int mousex, int mousey)
|
|
|
|
{
|
|
|
|
for (int j1 = 0; j1 < this.inventorySlots.inventorySlots.size(); ++j1)
|
|
|
|
{
|
|
|
|
Slot slot = (Slot) this.inventorySlots.inventorySlots.get( j1 );
|
2014-02-09 02:34:52 +01:00
|
|
|
|
|
|
|
// isPointInRegion
|
|
|
|
if ( func_146978_c( slot.xDisplayPosition, slot.yDisplayPosition, 16, 16, mousex, mousey ) )
|
2014-01-23 17:28:12 +01:00
|
|
|
{
|
|
|
|
return slot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static String join(Collection<?> s, String delimiter)
|
|
|
|
{
|
|
|
|
StringBuilder builder = new StringBuilder();
|
|
|
|
Iterator iter = s.iterator();
|
|
|
|
while (iter.hasNext())
|
|
|
|
{
|
|
|
|
builder.append( iter.next() );
|
|
|
|
if ( !iter.hasNext() )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
builder.append( delimiter );
|
|
|
|
}
|
|
|
|
return builder.toString();
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 06:01:22 +02:00
|
|
|
boolean useNEI = false;
|
|
|
|
|
|
|
|
private RenderItem setItemRender(RenderItem aeri2)
|
|
|
|
{
|
|
|
|
if ( AppEng.instance.isIntegrationEnabled( "NEI" ) )
|
|
|
|
{
|
|
|
|
return ((INEI) AppEng.instance.getIntegration( "NEI" )).setItemRender( aeri2 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RenderItem ri = itemRender;
|
|
|
|
itemRender = aeri2;
|
|
|
|
return ri;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-31 04:08:44 +01:00
|
|
|
private void safeDrawSlot(Slot s)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
// drawSlotInventory
|
2014-02-11 09:39:15 +01:00
|
|
|
// super.func_146977_a( s );r
|
|
|
|
GuiContainer.class.getDeclaredMethod( "func_146977_a_original", Slot.class ).invoke( this, s );
|
2014-01-31 04:08:44 +01:00
|
|
|
}
|
|
|
|
catch (Exception err)
|
|
|
|
{
|
|
|
|
Tessellator tessellator = Tessellator.instance;
|
2014-02-09 02:34:52 +01:00
|
|
|
if ( Platform.isDrawing( tessellator ) )
|
2014-01-31 04:08:44 +01:00
|
|
|
tessellator.draw();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AppEngRenderItem aeri = new AppEngRenderItem();
|
|
|
|
|
2014-03-28 05:31:06 +01:00
|
|
|
protected boolean isPowered()
|
2014-01-31 04:08:44 +01:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-11 10:04:59 +01:00
|
|
|
public void a(Slot s)
|
|
|
|
{
|
|
|
|
drawSlot( s );
|
|
|
|
}
|
|
|
|
|
2014-02-11 09:39:15 +01:00
|
|
|
public void func_146977_a(Slot s)
|
2014-02-11 10:04:59 +01:00
|
|
|
{
|
|
|
|
drawSlot( s );
|
|
|
|
}
|
|
|
|
|
|
|
|
public void drawSlot(Slot s)
|
2014-01-31 04:08:44 +01:00
|
|
|
{
|
|
|
|
if ( s instanceof SlotME )
|
|
|
|
{
|
2014-05-01 06:01:22 +02:00
|
|
|
RenderItem pIR = setItemRender( aeri );
|
2014-01-31 04:08:44 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
this.zLevel = 100.0F;
|
2014-02-09 02:34:52 +01:00
|
|
|
itemRender.zLevel = 100.0F;
|
2014-01-31 04:08:44 +01:00
|
|
|
|
|
|
|
if ( !isPowered() )
|
|
|
|
{
|
|
|
|
GL11.glDisable( GL11.GL_LIGHTING );
|
|
|
|
super.drawRect( s.xDisplayPosition, s.yDisplayPosition, 16 + s.xDisplayPosition, 16 + s.yDisplayPosition, 0x66111111 );
|
|
|
|
GL11.glEnable( GL11.GL_LIGHTING );
|
|
|
|
}
|
|
|
|
|
|
|
|
this.zLevel = 0.0F;
|
2014-02-09 02:34:52 +01:00
|
|
|
itemRender.zLevel = 0.0F;
|
2014-01-31 04:08:44 +01:00
|
|
|
|
|
|
|
if ( s instanceof SlotME )
|
|
|
|
aeri.aestack = ((SlotME) s).getAEStack();
|
|
|
|
else
|
|
|
|
aeri.aestack = null;
|
|
|
|
|
|
|
|
safeDrawSlot( s );
|
|
|
|
}
|
|
|
|
catch (Exception err)
|
|
|
|
{
|
|
|
|
AELog.warning( "[AppEng] AE prevented crash while drawing slot: " + err.toString() );
|
2014-02-09 02:34:52 +01:00
|
|
|
if ( Platform.isDrawing( Tessellator.instance ) )
|
2014-01-31 04:08:44 +01:00
|
|
|
Tessellator.instance.draw();
|
|
|
|
}
|
2014-05-01 06:01:22 +02:00
|
|
|
setItemRender( pIR );
|
2014-01-31 04:08:44 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ItemStack is = s.getStack();
|
|
|
|
if ( s instanceof AppEngSlot && (((AppEngSlot) s).renderIconWithItem() || is == null) && (((AppEngSlot) s).isEnabled()) )
|
|
|
|
{
|
|
|
|
AppEngSlot aes = (AppEngSlot) s;
|
|
|
|
if ( aes.getIcon() >= 0 )
|
|
|
|
{
|
|
|
|
bindTexture( "guis/states.png" );
|
|
|
|
|
|
|
|
GL11.glPushAttrib( GL11.GL_ALL_ATTRIB_BITS );
|
|
|
|
Tessellator tessellator = Tessellator.instance;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
int uv_y = (int) Math.floor( aes.getIcon() / 16 );
|
|
|
|
int uv_x = aes.getIcon() - uv_y * 16;
|
|
|
|
|
|
|
|
GL11.glEnable( GL11.GL_BLEND );
|
|
|
|
GL11.glDisable( GL11.GL_LIGHTING );
|
|
|
|
GL11.glEnable( GL11.GL_TEXTURE_2D );
|
|
|
|
GL11.glBlendFunc( GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA );
|
|
|
|
GL11.glColor4f( 1.0f, 1.0f, 1.0f, 1.0f );
|
|
|
|
float par1 = aes.xDisplayPosition;
|
|
|
|
float par2 = aes.yDisplayPosition;
|
|
|
|
float par3 = uv_x * 16;
|
|
|
|
float par4 = uv_y * 16;
|
|
|
|
float par5 = 16;
|
|
|
|
float par6 = 16;
|
|
|
|
|
|
|
|
float f = 0.00390625F;
|
|
|
|
float f1 = 0.00390625F;
|
|
|
|
tessellator.startDrawingQuads();
|
|
|
|
tessellator.setColorRGBA_F( 1.0f, 1.0f, 1.0f, aes.getOpacityOfIcon() );
|
|
|
|
tessellator.addVertexWithUV( (double) (par1 + 0), (double) (par2 + par6), (double) this.zLevel, (double) ((float) (par3 + 0) * f),
|
|
|
|
(double) ((float) (par4 + par6) * f1) );
|
2014-02-09 02:34:52 +01:00
|
|
|
tessellator.addVertexWithUV( (double) (par1 + par5), (double) (par2 + par6), (double) this.zLevel,
|
|
|
|
(double) ((float) (par3 + par5) * f), (double) ((float) (par4 + par6) * f1) );
|
|
|
|
tessellator.addVertexWithUV( (double) (par1 + par5), (double) (par2 + 0), (double) this.zLevel,
|
|
|
|
(double) ((float) (par3 + par5) * f), (double) ((float) (par4 + 0) * f1) );
|
2014-01-31 04:08:44 +01:00
|
|
|
tessellator.addVertexWithUV( (double) (par1 + 0), (double) (par2 + 0), (double) this.zLevel, (double) ((float) (par3 + 0) * f),
|
|
|
|
(double) ((float) (par4 + 0) * f1) );
|
|
|
|
tessellator.setColorRGBA_F( 1.0f, 1.0f, 1.0f, 1.0f );
|
|
|
|
tessellator.draw();
|
|
|
|
}
|
|
|
|
catch (Exception err)
|
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
if ( Platform.isDrawing( tessellator ) )
|
2014-01-31 04:08:44 +01:00
|
|
|
tessellator.draw();
|
|
|
|
}
|
|
|
|
GL11.glPopAttrib();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( is != null && s instanceof AppEngSlot )
|
|
|
|
{
|
|
|
|
if ( ((AppEngSlot) s).isValid == hasCalculatedValidness.NotAvailable )
|
|
|
|
{
|
2014-02-05 08:25:44 +01:00
|
|
|
boolean isValid = s.isItemValid( is ) || s instanceof SlotOutput || s instanceof AppEngCraftingSlot || s instanceof SlotDisabled
|
2014-02-13 04:42:48 +01:00
|
|
|
|| s instanceof SlotInaccessable || s instanceof SlotFake || s instanceof SlotRestrictedInput;
|
2014-01-31 04:08:44 +01:00
|
|
|
if ( isValid && s instanceof SlotRestrictedInput )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
isValid = ((SlotRestrictedInput) s).isValid( is, this.mc.theWorld );
|
|
|
|
}
|
|
|
|
catch (Exception err)
|
|
|
|
{
|
2014-02-07 21:37:22 +01:00
|
|
|
AELog.error( err );
|
2014-01-31 04:08:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
((AppEngSlot) s).isValid = isValid ? hasCalculatedValidness.Valid : hasCalculatedValidness.Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ((AppEngSlot) s).isValid == hasCalculatedValidness.Invalid )
|
|
|
|
{
|
|
|
|
this.zLevel = 100.0F;
|
2014-02-09 02:34:52 +01:00
|
|
|
itemRender.zLevel = 100.0F;
|
2014-01-31 04:08:44 +01:00
|
|
|
|
|
|
|
GL11.glDisable( GL11.GL_LIGHTING );
|
|
|
|
super.drawRect( s.xDisplayPosition, s.yDisplayPosition, 16 + s.xDisplayPosition, 16 + s.yDisplayPosition, 0x66ff6666 );
|
|
|
|
GL11.glEnable( GL11.GL_LIGHTING );
|
|
|
|
|
|
|
|
this.zLevel = 0.0F;
|
2014-02-09 02:34:52 +01:00
|
|
|
itemRender.zLevel = 0.0F;
|
2014-01-31 04:08:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( s instanceof AppEngSlot )
|
|
|
|
{
|
|
|
|
((AppEngSlot) s).isDisplay = true;
|
|
|
|
safeDrawSlot( s );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
safeDrawSlot( s );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
catch (Exception err)
|
|
|
|
{
|
|
|
|
AELog.warning( "[AppEng] AE prevented crash while drawing slot: " + err.toString() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// do the usual for non-ME Slots.
|
|
|
|
safeDrawSlot( s );
|
|
|
|
}
|
2014-02-09 02:34:52 +01:00
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|