232 lines
7.6 KiB
Java
232 lines
7.6 KiB
Java
package mekanism.client.gui;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
import mekanism.api.EnumColor;
|
|
import mekanism.api.IConfigurable;
|
|
import mekanism.api.Object3D;
|
|
import mekanism.api.SideData;
|
|
import mekanism.client.render.MekanismRenderer;
|
|
import mekanism.common.PacketHandler;
|
|
import mekanism.common.PacketHandler.Transmission;
|
|
import mekanism.common.block.BlockMachine.MachineType;
|
|
import mekanism.common.inventory.container.ContainerNull;
|
|
import mekanism.common.network.PacketConfigurationUpdate;
|
|
import mekanism.common.network.PacketTileEntity;
|
|
import mekanism.common.network.PacketConfigurationUpdate.ConfigurationPacket;
|
|
import mekanism.common.network.PacketSimpleGui;
|
|
import mekanism.common.tileentity.TileEntityContainerBlock;
|
|
import mekanism.common.util.MekanismUtils;
|
|
import mekanism.common.util.MekanismUtils.ResourceType;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
import org.lwjgl.opengl.GL12;
|
|
|
|
import universalelectricity.core.electricity.ElectricityDisplay;
|
|
import universalelectricity.core.electricity.ElectricityDisplay.ElectricUnit;
|
|
|
|
public class GuiConfiguration extends GuiMekanism
|
|
{
|
|
public Map<Integer, GuiPos> positions = new HashMap<Integer, GuiPos>();
|
|
|
|
public IConfigurable configurable;
|
|
|
|
public GuiConfiguration(EntityPlayer player, IConfigurable tile)
|
|
{
|
|
super(new ContainerNull(player, (TileEntityContainerBlock)tile));
|
|
|
|
ySize = 95;
|
|
|
|
configurable = tile;
|
|
|
|
positions.put(0, new GuiPos(110, 63));
|
|
positions.put(1, new GuiPos(110, 33));
|
|
positions.put(2, new GuiPos(110, 48));
|
|
positions.put(3, new GuiPos(95, 63));
|
|
positions.put(4, new GuiPos(95, 48));
|
|
positions.put(5, new GuiPos(125, 48));
|
|
}
|
|
|
|
@Override
|
|
protected void drawGuiContainerBackgroundLayer(float partialTick, int mouseX, int mouseY)
|
|
{
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
mc.renderEngine.bindTexture(MekanismUtils.getResource(ResourceType.GUI, "GuiConfiguration.png"));
|
|
|
|
int guiWidth = (width - xSize) / 2;
|
|
int guiHeight = (height - ySize) / 2;
|
|
|
|
drawTexturedModalRect(guiWidth, guiHeight, 0, 0, xSize, ySize);
|
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
if(xAxis >= 156 && xAxis <= 170 && yAxis >= 6 && yAxis <= 20)
|
|
{
|
|
drawTexturedModalRect(guiWidth + 156, guiHeight + 6, 176 + 14, 0, 14, 14);
|
|
}
|
|
else {
|
|
drawTexturedModalRect(guiWidth + 156, guiHeight + 6, 176 + 14, 14, 14, 14);
|
|
}
|
|
|
|
if(xAxis >= 6 && xAxis <= 20 && yAxis >= 6 && yAxis <= 20)
|
|
{
|
|
drawTexturedModalRect(guiWidth + 6, guiHeight + 6, 176 + 28, 0, 14, 14);
|
|
}
|
|
else {
|
|
drawTexturedModalRect(guiWidth + 6, guiHeight + 6, 176 + 28, 14, 14, 14);
|
|
}
|
|
|
|
for(int i = 0; i < positions.size(); i++)
|
|
{
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
int x = positions.get(i).xPos;
|
|
int y = positions.get(i).yPos;
|
|
|
|
SideData data = configurable.getSideData().get(configurable.getConfiguration()[i]);
|
|
|
|
if(data.color != EnumColor.GREY)
|
|
{
|
|
GL11.glColor4f(data.color.getColor(0), data.color.getColor(1), data.color.getColor(2), 1);
|
|
}
|
|
|
|
if(xAxis >= x && xAxis <= x+14 && yAxis >= y && yAxis <= y+14)
|
|
{
|
|
drawTexturedModalRect(guiWidth + x, guiHeight + y, 176, 0, 14, 14);
|
|
}
|
|
else {
|
|
drawTexturedModalRect(guiWidth + x, guiHeight + y, 176, 14, 14, 14);
|
|
}
|
|
}
|
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
}
|
|
|
|
@Override
|
|
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
|
|
{
|
|
super.drawGuiContainerForegroundLayer(mouseX, mouseY);
|
|
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
String ejecting = configurable.getEjector().isEjecting() ? "On" : "Off";
|
|
|
|
fontRenderer.drawString("Configuration", 60, 5, 0x404040);
|
|
fontRenderer.drawString("Eject: " + ejecting, 53, 17, 0x00CD00);
|
|
|
|
fontRenderer.drawString("Color:", 38, 37, 0x404040);
|
|
|
|
if(configurable.getEjector().getColor() != null)
|
|
{
|
|
GL11.glPushMatrix();
|
|
GL11.glColor4f(1, 1, 1, 1);
|
|
GL11.glEnable(GL11.GL_LIGHTING);
|
|
GL11.glEnable(GL12.GL_RESCALE_NORMAL);
|
|
|
|
mc.getTextureManager().bindTexture(MekanismRenderer.getColorResource(configurable.getEjector().getColor()));
|
|
itemRenderer.renderIcon(44, 48, MekanismRenderer.getColorIcon(configurable.getEjector().getColor()), 16, 16);
|
|
|
|
GL11.glDisable(GL11.GL_LIGHTING);
|
|
GL11.glPopMatrix();
|
|
}
|
|
|
|
for(int i = 0; i < positions.size(); i++)
|
|
{
|
|
int x = positions.get(i).xPos;
|
|
int y = positions.get(i).yPos;
|
|
|
|
SideData data = configurable.getSideData().get(configurable.getConfiguration()[i]);
|
|
|
|
if(xAxis >= x && xAxis <= x+14 && yAxis >= y && yAxis <= y+14)
|
|
{
|
|
drawCreativeTabHoveringText(data.color != null ? data.color.getName() : "None", xAxis, yAxis);
|
|
}
|
|
}
|
|
|
|
if(xAxis >= 44 && xAxis <= 60 && yAxis >= 48 && yAxis <= 64)
|
|
{
|
|
if(configurable.getEjector().getColor() != null)
|
|
{
|
|
drawCreativeTabHoveringText(configurable.getEjector().getColor().getName(), xAxis, yAxis);
|
|
}
|
|
else {
|
|
drawCreativeTabHoveringText("None", xAxis, yAxis);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void updateScreen()
|
|
{
|
|
super.updateScreen();
|
|
|
|
TileEntity tile = (TileEntity)configurable;
|
|
|
|
if(tile == null || mc.theWorld.getBlockTileEntity(tile.xCoord, tile.yCoord, tile.zCoord) == null)
|
|
{
|
|
mc.displayGuiScreen(null);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void mouseClicked(int mouseX, int mouseY, int button)
|
|
{
|
|
super.mouseClicked(mouseX, mouseY, button);
|
|
|
|
if(button == 0)
|
|
{
|
|
int xAxis = (mouseX - (width - xSize) / 2);
|
|
int yAxis = (mouseY - (height - ySize) / 2);
|
|
|
|
TileEntity tile = (TileEntity)configurable;
|
|
|
|
if(xAxis >= 6 && xAxis <= 20 && yAxis >= 6 && yAxis <= 20)
|
|
{
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketSimpleGui().setParams(Object3D.get(tile), MachineType.getFromMetadata(tile.getBlockMetadata()).guiId));
|
|
}
|
|
|
|
if(xAxis >= 156 && xAxis <= 170 && yAxis >= 6 && yAxis <= 20)
|
|
{
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketConfigurationUpdate().setParams(ConfigurationPacket.EJECT, Object3D.get(tile)));
|
|
}
|
|
|
|
if(xAxis >= 44 && xAxis <= 60 && yAxis >= 48 && yAxis <= 64)
|
|
{
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketConfigurationUpdate().setParams(ConfigurationPacket.EJECT_COLOR, Object3D.get((TileEntity)configurable)));
|
|
}
|
|
|
|
for(int i = 0; i < positions.size(); i++)
|
|
{
|
|
int x = positions.get(i).xPos;
|
|
int y = positions.get(i).yPos;
|
|
|
|
if(xAxis >= x && xAxis <= x+14 && yAxis >= y && yAxis <= y+14)
|
|
{
|
|
mc.sndManager.playSoundFX("random.click", 1.0F, 1.0F);
|
|
PacketHandler.sendPacket(Transmission.SERVER, new PacketConfigurationUpdate().setParams(ConfigurationPacket.SIDE_DATA, Object3D.get(tile), i));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public static class GuiPos
|
|
{
|
|
public int xPos;
|
|
public int yPos;
|
|
|
|
public GuiPos(int x, int y)
|
|
{
|
|
xPos = x;
|
|
yPos = y;
|
|
}
|
|
}
|
|
}
|