mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
190 lines
5.8 KiB
Java
190 lines
5.8 KiB
Java
package com.hbm.inventory.gui;
|
|
|
|
import java.awt.Color;
|
|
import java.util.Arrays;
|
|
import java.util.Locale;
|
|
|
|
import org.lwjgl.input.Keyboard;
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
import com.hbm.inventory.fluid.FluidType;
|
|
import com.hbm.inventory.fluid.Fluids;
|
|
import com.hbm.items.ModItems;
|
|
import com.hbm.items.machine.ItemFluidIDMulti;
|
|
import com.hbm.lib.RefStrings;
|
|
import com.hbm.packet.NBTItemControlPacket;
|
|
import com.hbm.packet.PacketDispatcher;
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.audio.PositionedSoundRecord;
|
|
import net.minecraft.client.gui.GuiScreen;
|
|
import net.minecraft.client.gui.GuiTextField;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
public class GUIScreenFluid extends GuiScreen {
|
|
|
|
protected static final ResourceLocation texture = new ResourceLocation(RefStrings.MODID + ":textures/gui/machine/gui_fluid.png");
|
|
protected int xSize = 176;
|
|
protected int ySize = 54;
|
|
protected int guiLeft;
|
|
protected int guiTop;
|
|
private GuiTextField search;
|
|
|
|
private final EntityPlayer player;
|
|
private FluidType primary = Fluids.NONE;
|
|
private FluidType secondary = Fluids.NONE;
|
|
private FluidType[] searchArray = new FluidType[9];
|
|
|
|
public GUIScreenFluid(EntityPlayer player) {
|
|
this.player = player;
|
|
}
|
|
|
|
@Override
|
|
public void drawScreen(int mouseX, int mouseY, float f) {
|
|
this.drawDefaultBackground();
|
|
this.drawGuiContainerBackgroundLayer(f, mouseX, mouseY);
|
|
GL11.glDisable(GL11.GL_LIGHTING);
|
|
this.drawGuiContainerForegroundLayer(mouseX, mouseY);
|
|
GL11.glEnable(GL11.GL_LIGHTING);
|
|
}
|
|
|
|
@Override
|
|
public void updateScreen() {
|
|
if(player.getHeldItem() == null || player.getHeldItem().getItem() != ModItems.fluid_identifier_multi)
|
|
player.closeScreen();
|
|
}
|
|
|
|
@Override
|
|
public void initGui() {
|
|
super.initGui();
|
|
this.guiLeft = (this.width - this.xSize) / 2;
|
|
this.guiTop = (this.height - this.ySize) / 2;
|
|
|
|
Keyboard.enableRepeatEvents(true);
|
|
this.search = new GuiTextField(this.fontRendererObj, guiLeft + 46, guiTop + 11, 86, 12);
|
|
this.search.setTextColor(-1);
|
|
this.search.setDisabledTextColour(-1);
|
|
this.search.setEnableBackgroundDrawing(false);
|
|
this.search.setFocused(true);
|
|
|
|
if(player.getHeldItem() != null && player.getHeldItem().getItem() == ModItems.fluid_identifier_multi) {
|
|
this.primary = ItemFluidIDMulti.getType(player.getHeldItem(), true);
|
|
this.secondary = ItemFluidIDMulti.getType(player.getHeldItem(), false);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void mouseClicked(int i, int j, int button) {
|
|
this.search.mouseClicked(i, j, button);
|
|
|
|
for(int k = 0; k < this.searchArray.length; k++) {
|
|
|
|
if(this.searchArray[k] == null)
|
|
return;
|
|
|
|
if(guiLeft + 7 + k * 18 <= i && guiLeft + 7 + k * 18 + 18 > i && guiTop + 29 < j && guiTop + 29 + 18 >= j) {
|
|
if(button == 0) {
|
|
mc.getSoundHandler().playSound(PositionedSoundRecord.func_147674_a(new ResourceLocation("gui.button.press"), 1.0F));
|
|
this.primary = this.searchArray[k];
|
|
NBTTagCompound data = new NBTTagCompound();
|
|
data.setInteger("primary", this.primary.getID());
|
|
PacketDispatcher.wrapper.sendToServer(new NBTItemControlPacket(data));
|
|
} else if(button == 1) {
|
|
mc.getSoundHandler().playSound(PositionedSoundRecord.func_147674_a(new ResourceLocation("gui.button.press"), 1.0F));
|
|
this.secondary = this.searchArray[k];
|
|
NBTTagCompound data = new NBTTagCompound();
|
|
data.setInteger("secondary", this.secondary.getID());
|
|
PacketDispatcher.wrapper.sendToServer(new NBTItemControlPacket(data));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
protected void drawGuiContainerForegroundLayer(int i, int j) {
|
|
this.search.drawTextBox();
|
|
|
|
for(int k = 0; k < this.searchArray.length; k++) {
|
|
|
|
if(this.searchArray[k] == null)
|
|
return;
|
|
|
|
if(guiLeft + 7 + k * 18 <= i && guiLeft + 7 + k * 18 + 18 > i && guiTop + 29 < j && guiTop + 29 + 18 >= j)
|
|
func_146283_a(Arrays.asList(new String[] { this.searchArray[k].getLocalizedName() }), i, j);
|
|
}
|
|
}
|
|
|
|
protected void drawGuiContainerBackgroundLayer(float f, int i, int j) {
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
Minecraft.getMinecraft().getTextureManager().bindTexture(texture);
|
|
drawTexturedModalRect(guiLeft, guiTop, 0, 0, xSize, ySize);
|
|
|
|
if(this.search.isFocused())
|
|
drawTexturedModalRect(guiLeft + 43, guiTop + 7, 166, 54, 90, 18);
|
|
|
|
for(int k = 0; k < this.searchArray.length; k++) {
|
|
FluidType type = this.searchArray[k];
|
|
|
|
if(type == null)
|
|
return;
|
|
|
|
Color color = new Color(type.getColor());
|
|
GL11.glColor3f(color.getRed() / 255F, color.getGreen() / 255F, color.getBlue() / 255F);
|
|
drawTexturedModalRect(guiLeft + 12 + k * 18, guiTop + 31, 12 + k * 18, 56, 8, 14);
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
if(type == this.primary && type == this.secondary) {
|
|
drawTexturedModalRect(guiLeft + 7 + k * 18, guiTop + 29, 176, 36, 18, 18);
|
|
} else if(type == this.primary) {
|
|
drawTexturedModalRect(guiLeft + 7 + k * 18, guiTop + 29, 176, 0, 18, 18);
|
|
} else if(type == this.secondary) {
|
|
drawTexturedModalRect(guiLeft + 7 + k * 18, guiTop + 29, 176, 18, 18, 18);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void keyTyped(char c, int key) {
|
|
|
|
if(this.search.textboxKeyTyped(c, key)) {
|
|
updateSearch();
|
|
} else {
|
|
super.keyTyped(c, key);
|
|
}
|
|
|
|
if(key == 1) {
|
|
this.mc.thePlayer.closeScreen();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean doesGuiPauseGame() {
|
|
return false;
|
|
}
|
|
|
|
private void updateSearch() {
|
|
this.searchArray = new FluidType[9];
|
|
|
|
int next = 0;
|
|
String subs = this.search.getText().toLowerCase(Locale.US);
|
|
|
|
for(FluidType type : Fluids.getInNiceOrder()) {
|
|
String name = type.getLocalizedName().toLowerCase();
|
|
|
|
if(name.contains(subs) && !type.hasNoID()) {
|
|
this.searchArray[next] = type;
|
|
next++;
|
|
|
|
if(next >= 9)
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onGuiClosed() {
|
|
Keyboard.enableRepeatEvents(false);
|
|
}
|
|
}
|