2013-10-25 06:23:38 +02:00
|
|
|
package mekanism.client.gui;
|
|
|
|
|
2013-10-26 06:02:57 +02:00
|
|
|
import mekanism.common.inventory.container.ContainerNull;
|
2013-10-25 06:23:38 +02:00
|
|
|
import mekanism.common.tileentity.TileEntityLogisticalSorter;
|
|
|
|
import mekanism.common.util.MekanismUtils;
|
|
|
|
import mekanism.common.util.MekanismUtils.ResourceType;
|
2013-10-26 06:02:57 +02:00
|
|
|
import net.minecraft.client.gui.GuiButton;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2013-10-25 06:23:38 +02:00
|
|
|
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public class GuiLogisticalSorter extends GuiMekanism
|
|
|
|
{
|
|
|
|
public TileEntityLogisticalSorter tileEntity;
|
|
|
|
|
2013-10-26 06:02:57 +02:00
|
|
|
public GuiLogisticalSorter(EntityPlayer player, TileEntityLogisticalSorter tentity)
|
2013-10-25 06:23:38 +02:00
|
|
|
{
|
2013-10-26 06:02:57 +02:00
|
|
|
super(new ContainerNull(player, tentity));
|
2013-10-25 06:23:38 +02:00
|
|
|
tileEntity = tentity;
|
2013-10-25 14:51:13 +02:00
|
|
|
guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiLogisticalSorter.png")));
|
2013-10-25 06:23:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-10-26 06:02:57 +02:00
|
|
|
public boolean doesGuiPauseGame()
|
2013-10-25 06:23:38 +02:00
|
|
|
{
|
2013-10-26 06:02:57 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void initGui()
|
|
|
|
{
|
|
|
|
super.initGui();
|
2013-10-25 06:23:38 +02:00
|
|
|
|
2013-10-26 06:02:57 +02:00
|
|
|
int guiWidth = (width - xSize) / 2;
|
|
|
|
int guiHeight = (height - ySize) / 2;
|
|
|
|
|
|
|
|
buttonList.clear();
|
|
|
|
buttonList.add(new GuiButton(0, guiWidth + 56, guiHeight + 136, 54, 20, "ItemStack"));
|
|
|
|
buttonList.add(new GuiButton(1, guiWidth + 110, guiHeight + 136, 43, 20, "OreDict"));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void actionPerformed(GuiButton guibutton)
|
|
|
|
{
|
|
|
|
super.actionPerformed(guibutton);
|
|
|
|
|
|
|
|
if(guibutton.id == 0)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
else if(guibutton.id == 1)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
|
|
|
|
{
|
2013-10-25 06:23:38 +02:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
|
|
|
fontRenderer.drawString("Logistical Sorter", 43, 6, 0x404040);
|
2013-10-26 06:02:57 +02:00
|
|
|
fontRenderer.drawString("Filters:", 11, 17, 0x00CD00);
|
|
|
|
fontRenderer.drawString("- " + tileEntity.filters.size(), 11, 26, 0x00CD00);
|
|
|
|
|
|
|
|
super.drawGuiContainerForegroundLayer(mouseX, mouseY);
|
|
|
|
}
|
|
|
|
|
2013-10-25 06:23:38 +02:00
|
|
|
@Override
|
|
|
|
protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY)
|
|
|
|
{
|
|
|
|
super.drawGuiContainerBackgroundLayer(partialTick, mouseX, mouseY);
|
|
|
|
|
|
|
|
mc.renderEngine.bindTexture(MekanismUtils.getResource(ResourceType.GUI, "GuiLogisticalSorter.png"));
|
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
int guiWidth = (width - xSize) / 2;
|
|
|
|
int guiHeight = (height - ySize) / 2;
|
|
|
|
drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);
|
|
|
|
}
|
|
|
|
}
|