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

127 lines
4.7 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("GuiSmileyCloud.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.inventory.gui;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.inventory.ContainerSmileyCloud;
import de.ellpeck.actuallyadditions.mod.network.PacketClientToServer;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.network.PacketHandler;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityBase;
import de.ellpeck.actuallyadditions.mod.tile.TileEntitySmileyCloud;
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiTextField;
import net.minecraft.client.renderer.GlStateManager;
2021-02-26 22:15:48 +01:00
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.util.ResourceLocation;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.text.TextFormatting;
import net.minecraft.world.World;
2021-02-26 22:15:48 +01:00
import net.minecraftforge.fml.relauncher.OnlyIn;
import org.lwjgl.input.Keyboard;
import java.io.IOException;
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.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) {
2021-02-26 22:15:48 +01:00
String name = this.cloud.name == null || this.cloud.name.isEmpty()
? ""
: TextFormatting.GOLD + this.cloud.name + TextFormatting.RESET + " " + StringUtil.localize("info." + ActuallyAdditions.MODID + ".gui.the") + " ";
2019-05-02 09:10:29 +02:00
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) {
2021-02-26 22:15:48 +01:00
CompoundNBT compound = new CompoundNBT();
2021-02-27 16:33:00 +01:00
compound.putInt("X", this.x);
compound.putInt("Y", this.y);
compound.putInt("Z", this.z);
compound.putInt("WorldID", this.world.provider.getDimension());
compound.putInt("PlayerID", Minecraft.getInstance().player.getEntityId());
compound.putInt("TextID", textID);
compound.setString("Text", text);
2021-02-27 16:33:00 +01:00
PacketHandler.THE_NETWORK.sendToServer(new PacketClientToServer(compound, PacketHandler.GUI_STRING_TO_TILE_HANDLER));
}
2021-02-26 22:15:48 +01:00
}