ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/inventory/gui/GuiSmileyCloud.java

116 lines
4.4 KiB
Java
Raw Normal View History

2020-09-09 16:49:01 +02:00
package de.ellpeck.actuallyadditions.common.inventory.gui;
2019-05-02 09:10:29 +02:00
import java.io.IOException;
import org.lwjgl.input.Keyboard;
2020-09-09 16:49:01 +02:00
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;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.text.TextFormatting;
import net.minecraft.world.World;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
@SideOnly(Side.CLIENT)
2019-05-02 09:10:29 +02:00
public class GuiSmileyCloud extends GuiWtfMojang {
2016-11-19 23:12:22 +01:00
private static final ResourceLocation RES_LOC = AssetUtil.getGuiLocation("gui_smiley_cloud");
2016-05-19 20:05:12 +02:00
private final int x;
private final int y;
private final int z;
private final World world;
private final TileEntitySmileyCloud cloud;
2016-06-01 00:39:35 +02:00
private GuiTextField nameField;
2019-05-02 09:10:29 +02:00
public GuiSmileyCloud(TileEntityBase tile, int x, int y, int z, World world) {
super(new ContainerSmileyCloud());
2019-05-02 09:10:29 +02:00
this.cloud = (TileEntitySmileyCloud) tile;
this.x = x;
this.y = y;
this.z = z;
this.world = world;
this.xSize = 124;
this.ySize = 20;
}
2015-10-03 10:19:40 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void initGui() {
2015-10-03 10:19:40 +02:00
super.initGui();
2019-05-02 09:10:29 +02:00
this.nameField = new GuiTextField(4000, this.fontRenderer, this.guiLeft + 5, this.guiTop + 6, 114, 8);
2015-10-03 10:19:40 +02:00
this.nameField.setMaxStringLength(20);
this.nameField.setEnableBackgroundDrawing(false);
this.nameField.setFocused(true);
}
@Override
2019-05-02 09:10:29 +02:00
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
2019-05-02 09:10:29 +02:00
public void drawGuiContainerBackgroundLayer(float f, int x, int y) {
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
2016-06-17 23:50:38 +02:00
this.mc.getTextureManager().bindTexture(RES_LOC);
2015-10-03 10:19:40 +02:00
this.drawTexturedModalRect(this.guiLeft, this.guiTop, 0, 0, this.xSize, this.ySize);
2015-10-03 10:19:40 +02:00
this.nameField.drawTextBox();
}
@Override
2019-05-02 09:10:29 +02:00
protected void mouseClicked(int par1, int par2, int par3) throws IOException {
this.nameField.mouseClicked(par1, par2, par3);
super.mouseClicked(par1, par2, par3);
}
@Override
2019-05-02 09:10:29 +02:00
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);
2019-05-02 09:10:29 +02:00
} else {
this.nameField.textboxKeyTyped(theChar, key);
}
2019-05-02 09:10:29 +02:00
} else {
2015-10-02 16:48:01 +02:00
super.keyTyped(theChar, key);
}
}
2015-10-03 10:19:40 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void updateScreen() {
2015-10-03 10:19:40 +02:00
super.updateScreen();
this.nameField.updateCursorCounter();
}
2019-05-02 09:10:29 +02:00
public void setVariable(GuiTextField field) {
this.sendPacket(field.getText(), 0);
field.setText("");
}
2019-05-02 09:10:29 +02:00
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());
2016-11-26 21:32:27 +01:00
compound.setInteger("PlayerID", Minecraft.getMinecraft().player.getEntityId());
compound.setInteger("TextID", textID);
compound.setString("Text", text);
2016-07-25 22:38:37 +02:00
PacketHandler.theNetwork.sendToServer(new PacketClientToServer(compound, PacketHandler.GUI_STRING_TO_TILE_HANDLER));
}
}