package net.minecraft.client.gui; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.client.resources.I18n; import net.minecraft.world.storage.ISaveFormat; import net.minecraft.world.storage.WorldInfo; import org.lwjgl.input.Keyboard; @SideOnly(Side.CLIENT) public class GuiRenameWorld extends GuiScreen { private GuiScreen field_146585_a; private GuiTextField field_146583_f; private final String field_146584_g; private static final String __OBFID = "CL_00000709"; public GuiRenameWorld(GuiScreen p_i1050_1_, String p_i1050_2_) { this.field_146585_a = p_i1050_1_; this.field_146584_g = p_i1050_2_; } /** * Called from the main game loop to update the screen. */ public void updateScreen() { this.field_146583_f.updateCursorCounter(); } /** * Adds the buttons (and other controls) to the screen in question. */ public void initGui() { Keyboard.enableRepeatEvents(true); this.buttonList.clear(); this.buttonList.add(new GuiButton(0, this.width / 2 - 100, this.height / 4 + 96 + 12, I18n.format("selectWorld.renameButton", new Object[0]))); this.buttonList.add(new GuiButton(1, this.width / 2 - 100, this.height / 4 + 120 + 12, I18n.format("gui.cancel", new Object[0]))); ISaveFormat isaveformat = this.mc.getSaveLoader(); WorldInfo worldinfo = isaveformat.getWorldInfo(this.field_146584_g); String s = worldinfo.getWorldName(); this.field_146583_f = new GuiTextField(this.fontRendererObj, this.width / 2 - 100, 60, 200, 20); this.field_146583_f.setFocused(true); this.field_146583_f.setText(s); } /** * Called when the screen is unloaded. Used to disable keyboard repeat events */ public void onGuiClosed() { Keyboard.enableRepeatEvents(false); } protected void actionPerformed(GuiButton button) { if (button.enabled) { if (button.id == 1) { this.mc.displayGuiScreen(this.field_146585_a); } else if (button.id == 0) { ISaveFormat isaveformat = this.mc.getSaveLoader(); isaveformat.renameWorld(this.field_146584_g, this.field_146583_f.getText().trim()); this.mc.displayGuiScreen(this.field_146585_a); } } } /** * Fired when a key is typed (except F11 who toggle full screen). This is the equivalent of * KeyListener.keyTyped(KeyEvent e). Args : character (character on the key), keyCode (lwjgl Keyboard key code) */ protected void keyTyped(char typedChar, int keyCode) { this.field_146583_f.textboxKeyTyped(typedChar, keyCode); ((GuiButton)this.buttonList.get(0)).enabled = this.field_146583_f.getText().trim().length() > 0; if (keyCode == 28 || keyCode == 156) { this.actionPerformed((GuiButton)this.buttonList.get(0)); } } /** * Called when the mouse is clicked. Args : mouseX, mouseY, clickedButton */ protected void mouseClicked(int mouseX, int mouseY, int mouseButton) { super.mouseClicked(mouseX, mouseY, mouseButton); this.field_146583_f.mouseClicked(mouseX, mouseY, mouseButton); } /** * Draws the screen and all the components in it. Args : mouseX, mouseY, renderPartialTicks */ public void drawScreen(int mouseX, int mouseY, float partialTicks) { this.drawDefaultBackground(); this.drawCenteredString(this.fontRendererObj, I18n.format("selectWorld.renameTitle", new Object[0]), this.width / 2, 20, 16777215); this.drawString(this.fontRendererObj, I18n.format("selectWorld.enterName", new Object[0]), this.width / 2 - 100, 47, 10526880); this.field_146583_f.drawTextBox(); super.drawScreen(mouseX, mouseY, partialTicks); } }