2013-10-25 06:23:38 +02:00
|
|
|
package mekanism.client.gui;
|
|
|
|
|
2013-10-27 02:23:38 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2013-10-26 19:25:51 +02:00
|
|
|
import mekanism.api.Object3D;
|
|
|
|
import mekanism.common.PacketHandler;
|
|
|
|
import mekanism.common.PacketHandler.Transmission;
|
2013-10-26 06:02:57 +02:00
|
|
|
import mekanism.common.inventory.container.ContainerNull;
|
2013-10-26 19:25:51 +02:00
|
|
|
import mekanism.common.network.PacketLogisticalSorterGui;
|
2013-10-27 22:29:34 +01:00
|
|
|
import mekanism.common.network.PacketLogisticalSorterGui.SorterGuiPacket;
|
2013-10-25 06:23:38 +02:00
|
|
|
import mekanism.common.tileentity.TileEntityLogisticalSorter;
|
2013-10-27 02:23:38 +02:00
|
|
|
import mekanism.common.transporter.ItemStackFilter;
|
|
|
|
import mekanism.common.transporter.OreDictFilter;
|
|
|
|
import mekanism.common.transporter.TransporterFilter;
|
2013-10-25 06:23:38 +02:00
|
|
|
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-27 16:44:19 +01:00
|
|
|
public boolean isDragging = false;
|
|
|
|
|
|
|
|
public int dragOffset = 0;
|
|
|
|
|
|
|
|
public float scroll;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-10-27 16:44:19 +01:00
|
|
|
public int getScroll()
|
|
|
|
{
|
2013-10-29 02:08:37 +01:00
|
|
|
return Math.max(Math.min((int)(scroll*123), 123), 0);
|
2013-10-27 16:44:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getFilterIndex()
|
|
|
|
{
|
2013-10-29 02:08:37 +01:00
|
|
|
if(tileEntity.filters.size() <= 4)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (int)((tileEntity.filters.size()*scroll) - (4F/(float)tileEntity.filters.size()));
|
2013-10-27 16:44:19 +01:00
|
|
|
}
|
|
|
|
|
2013-10-25 06:23:38 +02:00
|
|
|
@Override
|
2013-10-27 16:44:19 +01:00
|
|
|
public void mouseClicked(int mouseX, int mouseY, int button)
|
2013-10-25 06:23:38 +02:00
|
|
|
{
|
2013-10-27 16:44:19 +01:00
|
|
|
super.mouseClicked(mouseX, mouseY, button);
|
|
|
|
|
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
|
|
|
if(xAxis >= 154 && xAxis <= 166 && yAxis >= getScroll()+18 && yAxis <= getScroll()+18+15)
|
|
|
|
{
|
|
|
|
dragOffset = yAxis - (getScroll()+18);
|
|
|
|
isDragging = true;
|
|
|
|
}
|
2013-10-27 20:00:22 +01:00
|
|
|
|
|
|
|
for(int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
if(tileEntity.filters.get(getFilterIndex()+i) != null)
|
|
|
|
{
|
|
|
|
int yStart = i*29 + 18;
|
|
|
|
|
|
|
|
if(xAxis >= 56 && xAxis <= 152 && yAxis >= yStart && yAxis <= yStart+29)
|
|
|
|
{
|
|
|
|
TransporterFilter filter = tileEntity.filters.get(getFilterIndex()+i);
|
2013-10-27 22:29:34 +01:00
|
|
|
|
|
|
|
if(filter instanceof ItemStackFilter)
|
|
|
|
{
|
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketLogisticalSorterGui().setParams(SorterGuiPacket.SERVER_INDEX, Object3D.get(tileEntity), 1, getFilterIndex()+i));
|
|
|
|
}
|
|
|
|
else if(filter instanceof OreDictFilter)
|
|
|
|
{
|
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketLogisticalSorterGui().setParams(SorterGuiPacket.SERVER_INDEX, Object3D.get(tileEntity), 2, getFilterIndex()+i));
|
|
|
|
}
|
2013-10-27 20:00:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-27 16:44:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void mouseClickMove(int mouseX, int mouseY, int button, long ticks)
|
|
|
|
{
|
|
|
|
super.mouseClickMove(mouseX, mouseY, button, ticks);
|
|
|
|
|
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
|
|
|
if(isDragging)
|
|
|
|
{
|
2013-10-29 02:08:37 +01:00
|
|
|
scroll = Math.min(Math.max((float)(yAxis-18-dragOffset)/123F, 0), 1);
|
2013-10-27 16:44:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void mouseMovedOrUp(int x, int y, int type)
|
|
|
|
{
|
|
|
|
super.mouseMovedOrUp(x, y, type);
|
|
|
|
|
|
|
|
if(type == 0 && isDragging)
|
|
|
|
{
|
|
|
|
dragOffset = 0;
|
|
|
|
isDragging = false;
|
|
|
|
}
|
2013-10-26 06:02:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@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)
|
|
|
|
{
|
2013-10-27 22:29:34 +01:00
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketLogisticalSorterGui().setParams(SorterGuiPacket.SERVER, Object3D.get(tileEntity), 1));
|
2013-10-26 06:02:57 +02:00
|
|
|
}
|
|
|
|
else if(guibutton.id == 1)
|
|
|
|
{
|
2013-10-27 22:29:34 +01:00
|
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketLogisticalSorterGui().setParams(SorterGuiPacket.SERVER, Object3D.get(tileEntity), 2));
|
2013-10-26 06:02:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@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-27 16:44:19 +01:00
|
|
|
fontRenderer.drawString("Filters:", 11, 19, 0x00CD00);
|
|
|
|
fontRenderer.drawString("T: " + tileEntity.filters.size(), 11, 28, 0x00CD00);
|
|
|
|
fontRenderer.drawString("IS: " + getItemStackFilters().size(), 11, 37, 0x00CD00);
|
|
|
|
fontRenderer.drawString("OD: " + getOreDictFilters().size(), 11, 46, 0x00CD00);
|
2013-10-26 06:02:57 +02:00
|
|
|
|
2013-10-27 20:00:22 +01:00
|
|
|
for(int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
if(tileEntity.filters.get(getFilterIndex()+i) != null)
|
|
|
|
{
|
|
|
|
TransporterFilter filter = tileEntity.filters.get(getFilterIndex()+i);
|
|
|
|
int yStart = i*29 + 18;
|
|
|
|
|
|
|
|
if(filter instanceof ItemStackFilter)
|
|
|
|
{
|
|
|
|
fontRenderer.drawString("ItemStack Filter", 58, yStart + 2, 0x404040);
|
|
|
|
fontRenderer.drawString("Color: " + filter.color.getName(), 58, yStart + 11, 0x404040);
|
|
|
|
}
|
|
|
|
else if(filter instanceof OreDictFilter)
|
|
|
|
{
|
|
|
|
fontRenderer.drawString("OreDict Filter", 58, yStart + 2, 0x404040);
|
|
|
|
fontRenderer.drawString("Color: " + filter.color.getName(), 58, yStart + 11, 0x404040);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-26 06:02:57 +02:00
|
|
|
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);
|
2013-10-27 16:44:19 +01:00
|
|
|
|
|
|
|
drawTexturedModalRect(guiWidth + 154, guiHeight + 18 + getScroll(), 232, 0, 12, 15);
|
|
|
|
|
2013-10-27 20:00:22 +01:00
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
|
2013-10-27 16:44:19 +01:00
|
|
|
for(int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
if(tileEntity.filters.get(getFilterIndex()+i) != null)
|
|
|
|
{
|
|
|
|
TransporterFilter filter = tileEntity.filters.get(getFilterIndex()+i);
|
|
|
|
int yStart = i*29 + 18;
|
2013-10-27 20:00:22 +01:00
|
|
|
|
|
|
|
boolean mouseOver = xAxis >= 56 && xAxis <= 152 && yAxis >= yStart && yAxis <= yStart+29;
|
|
|
|
|
|
|
|
if(filter instanceof ItemStackFilter)
|
|
|
|
{
|
|
|
|
drawTexturedModalRect(guiWidth + 56, guiHeight + yStart, mouseOver ? 0 : 96, 166, 96, 29);
|
|
|
|
}
|
|
|
|
else if(filter instanceof OreDictFilter)
|
|
|
|
{
|
|
|
|
drawTexturedModalRect(guiWidth + 56, guiHeight + yStart, mouseOver ? 0 : 96, 195, 96, 29);
|
|
|
|
}
|
2013-10-27 16:44:19 +01:00
|
|
|
}
|
|
|
|
}
|
2013-10-25 06:23:38 +02:00
|
|
|
}
|
2013-10-27 02:23:38 +02:00
|
|
|
|
|
|
|
public ArrayList getItemStackFilters()
|
|
|
|
{
|
|
|
|
ArrayList list = new ArrayList();
|
|
|
|
|
|
|
|
for(TransporterFilter filter : tileEntity.filters)
|
|
|
|
{
|
|
|
|
if(filter instanceof ItemStackFilter)
|
|
|
|
{
|
|
|
|
list.add(filter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ArrayList getOreDictFilters()
|
|
|
|
{
|
|
|
|
ArrayList list = new ArrayList();
|
|
|
|
|
|
|
|
for(TransporterFilter filter : tileEntity.filters)
|
|
|
|
{
|
|
|
|
if(filter instanceof OreDictFilter)
|
|
|
|
{
|
|
|
|
list.add(filter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
2013-10-25 06:23:38 +02:00
|
|
|
}
|