ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/inventory/gui/GuiSmileyCloud.java
2020-09-09 15:49:01 +01:00

116 lines
4.4 KiB
Java

package de.ellpeck.actuallyadditions.common.inventory.gui;
import java.io.IOException;
import org.lwjgl.input.Keyboard;
import de.ellpeck.actuallyadditions.common.ActuallyAdditions;
import de.ellpeck.actuallyadditions.common.inventory.ContainerSmileyCloud;
import de.ellpeck.actuallyadditions.common.network.PacketClientToServer;
import de.ellpeck.actuallyadditions.common.network.PacketHandler;
import de.ellpeck.actuallyadditions.common.tile.TileEntityBase;
import de.ellpeck.actuallyadditions.common.tile.TileEntitySmileyCloud;
import de.ellpeck.actuallyadditions.common.util.AssetUtil;
import de.ellpeck.actuallyadditions.common.util.StringUtil;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiTextField;
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.TextFormatting;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
@SideOnly(Side.CLIENT)
public class GuiSmileyCloud extends GuiWtfMojang {
private static final ResourceLocation RES_LOC = AssetUtil.getGuiLocation("gui_smiley_cloud");
private final int x;
private final int y;
private final int z;
private final World world;
private final TileEntitySmileyCloud cloud;
private GuiTextField nameField;
public GuiSmileyCloud(TileEntityBase tile, int x, int y, int z, World world) {
super(new ContainerSmileyCloud());
this.cloud = (TileEntitySmileyCloud) tile;
this.x = x;
this.y = y;
this.z = z;
this.world = world;
this.xSize = 124;
this.ySize = 20;
}
@Override
public void initGui() {
super.initGui();
this.nameField = new GuiTextField(4000, this.fontRenderer, this.guiLeft + 5, this.guiTop + 6, 114, 8);
this.nameField.setMaxStringLength(20);
this.nameField.setEnableBackgroundDrawing(false);
this.nameField.setFocused(true);
}
@Override
public void drawGuiContainerForegroundLayer(int x, int y) {
String name = this.cloud.name == null || this.cloud.name.isEmpty() ? "" : TextFormatting.GOLD + this.cloud.name + TextFormatting.RESET + " " + StringUtil.localize("info." + ActuallyAdditions.MODID + ".gui.the") + " ";
String localizedName = name + StringUtil.localize("container." + ActuallyAdditions.MODID + ".cloud.name");
this.fontRenderer.drawString(localizedName, this.xSize / 2 - this.fontRenderer.getStringWidth(localizedName) / 2, -10, StringUtil.DECIMAL_COLOR_WHITE);
}
@Override
public void drawGuiContainerBackgroundLayer(float f, int x, int y) {
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
this.mc.getTextureManager().bindTexture(RES_LOC);
this.drawTexturedModalRect(this.guiLeft, this.guiTop, 0, 0, this.xSize, this.ySize);
this.nameField.drawTextBox();
}
@Override
protected void mouseClicked(int par1, int par2, int par3) throws IOException {
this.nameField.mouseClicked(par1, par2, par3);
super.mouseClicked(par1, par2, par3);
}
@Override
public void keyTyped(char theChar, int key) throws IOException {
if (key != 1 && this.nameField.isFocused()) {
if (key == Keyboard.KEY_RETURN || key == Keyboard.KEY_NUMPADENTER) {
this.setVariable(this.nameField);
} else {
this.nameField.textboxKeyTyped(theChar, key);
}
} else {
super.keyTyped(theChar, key);
}
}
@Override
public void updateScreen() {
super.updateScreen();
this.nameField.updateCursorCounter();
}
public void setVariable(GuiTextField field) {
this.sendPacket(field.getText(), 0);
field.setText("");
}
private void sendPacket(String text, int textID) {
NBTTagCompound compound = new NBTTagCompound();
compound.setInteger("X", this.x);
compound.setInteger("Y", this.y);
compound.setInteger("Z", this.z);
compound.setInteger("WorldID", this.world.provider.getDimension());
compound.setInteger("PlayerID", Minecraft.getMinecraft().player.getEntityId());
compound.setInteger("TextID", textID);
compound.setString("Text", text);
PacketHandler.theNetwork.sendToServer(new PacketClientToServer(compound, PacketHandler.GUI_STRING_TO_TILE_HANDLER));
}
}