package net.minecraft.client.gui; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.io.IOException; import java.util.Arrays; import java.util.Iterator; import java.util.List; import net.minecraft.block.BlockTallGrass; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.RenderHelper; import net.minecraft.client.renderer.Tessellator; import net.minecraft.client.renderer.WorldRenderer; import net.minecraft.client.resources.I18n; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.world.biome.BiomeGenBase; import net.minecraft.world.gen.FlatGeneratorInfo; import net.minecraft.world.gen.FlatLayerInfo; import org.lwjgl.input.Keyboard; public class GuiFlatPresets extends GuiScreen { private static final List field_146431_f = Lists.newArrayList(); private final GuiCreateFlatWorld field_146432_g; private String field_146438_h; private String field_146439_i; private String field_146436_r; private GuiFlatPresets.ListSlot field_146435_s; private GuiButton field_146434_t; private GuiTextField field_146433_u; private static final String __OBFID = "CL_00000704"; public GuiFlatPresets(GuiCreateFlatWorld p_i46318_1_) { this.field_146432_g = p_i46318_1_; } /** * Adds the buttons (and other controls) to the screen in question. */ public void initGui() { this.buttonList.clear(); Keyboard.enableRepeatEvents(true); this.field_146438_h = I18n.format("createWorld.customize.presets.title", new Object[0]); this.field_146439_i = I18n.format("createWorld.customize.presets.share", new Object[0]); this.field_146436_r = I18n.format("createWorld.customize.presets.list", new Object[0]); this.field_146433_u = new GuiTextField(2, this.fontRendererObj, 50, 40, this.width - 100, 20); this.field_146435_s = new GuiFlatPresets.ListSlot(); this.field_146433_u.setMaxStringLength(1230); this.field_146433_u.setText(this.field_146432_g.func_146384_e()); this.buttonList.add(this.field_146434_t = new GuiButton(0, this.width / 2 - 155, this.height - 28, 150, 20, I18n.format("createWorld.customize.presets.select", new Object[0]))); this.buttonList.add(new GuiButton(1, this.width / 2 + 5, this.height - 28, 150, 20, I18n.format("gui.cancel", new Object[0]))); this.func_146426_g(); } /** * Handles mouse input. */ public void handleMouseInput() throws IOException { super.handleMouseInput(); this.field_146435_s.func_178039_p(); } /** * Called when the screen is unloaded. Used to disable keyboard repeat events */ public void onGuiClosed() { Keyboard.enableRepeatEvents(false); } /** * Called when the mouse is clicked. Args : mouseX, mouseY, clickedButton */ protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException { this.field_146433_u.mouseClicked(mouseX, mouseY, mouseButton); super.mouseClicked(mouseX, mouseY, mouseButton); } /** * 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) throws IOException { if (!this.field_146433_u.textboxKeyTyped(typedChar, keyCode)) { super.keyTyped(typedChar, keyCode); } } protected void actionPerformed(GuiButton button) throws IOException { if (button.id == 0 && this.func_146430_p()) { this.field_146432_g.func_146383_a(this.field_146433_u.getText()); this.mc.displayGuiScreen(this.field_146432_g); } else if (button.id == 1) { this.mc.displayGuiScreen(this.field_146432_g); } } /** * 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.field_146435_s.drawScreen(mouseX, mouseY, partialTicks); this.drawCenteredString(this.fontRendererObj, this.field_146438_h, this.width / 2, 8, 16777215); this.drawString(this.fontRendererObj, this.field_146439_i, 50, 30, 10526880); this.drawString(this.fontRendererObj, this.field_146436_r, 50, 70, 10526880); this.field_146433_u.drawTextBox(); super.drawScreen(mouseX, mouseY, partialTicks); } /** * Called from the main game loop to update the screen. */ public void updateScreen() { this.field_146433_u.updateCursorCounter(); super.updateScreen(); } public void func_146426_g() { boolean var1 = this.func_146430_p(); this.field_146434_t.enabled = var1; } private boolean func_146430_p() { return this.field_146435_s.field_148175_k > -1 && this.field_146435_s.field_148175_k < field_146431_f.size() || this.field_146433_u.getText().length() > 1; } private static void func_146425_a(String p_146425_0_, Item p_146425_1_, BiomeGenBase p_146425_2_, FlatLayerInfo ... p_146425_3_) { func_175354_a(p_146425_0_, p_146425_1_, 0, p_146425_2_, (List)null, p_146425_3_); } private static void func_146421_a(String p_146421_0_, Item p_146421_1_, BiomeGenBase p_146421_2_, List p_146421_3_, FlatLayerInfo ... p_146421_4_) { func_175354_a(p_146421_0_, p_146421_1_, 0, p_146421_2_, p_146421_3_, p_146421_4_); } private static void func_175354_a(String p_175354_0_, Item p_175354_1_, int p_175354_2_, BiomeGenBase p_175354_3_, List p_175354_4_, FlatLayerInfo ... p_175354_5_) { FlatGeneratorInfo var6 = new FlatGeneratorInfo(); for (int var7 = p_175354_5_.length - 1; var7 >= 0; --var7) { var6.getFlatLayers().add(p_175354_5_[var7]); } var6.setBiome(p_175354_3_.biomeID); var6.func_82645_d(); if (p_175354_4_ != null) { Iterator var9 = p_175354_4_.iterator(); while (var9.hasNext()) { String var8 = (String)var9.next(); var6.getWorldFeatures().put(var8, Maps.newHashMap()); } } field_146431_f.add(new GuiFlatPresets.LayerItem(p_175354_1_, p_175354_2_, p_175354_0_, var6.toString())); } static { func_146421_a("Classic Flat", Item.getItemFromBlock(Blocks.grass), BiomeGenBase.plains, Arrays.asList(new String[] {"village"}), new FlatLayerInfo[] {new FlatLayerInfo(1, Blocks.grass), new FlatLayerInfo(2, Blocks.dirt), new FlatLayerInfo(1, Blocks.bedrock)}); func_146421_a("Tunnelers\' Dream", Item.getItemFromBlock(Blocks.stone), BiomeGenBase.extremeHills, Arrays.asList(new String[] {"biome_1", "dungeon", "decoration", "stronghold", "mineshaft"}), new FlatLayerInfo[] {new FlatLayerInfo(1, Blocks.grass), new FlatLayerInfo(5, Blocks.dirt), new FlatLayerInfo(230, Blocks.stone), new FlatLayerInfo(1, Blocks.bedrock)}); func_146421_a("Water World", Items.water_bucket, BiomeGenBase.deepOcean, Arrays.asList(new String[] {"biome_1", "oceanmonument"}), new FlatLayerInfo[] {new FlatLayerInfo(90, Blocks.water), new FlatLayerInfo(5, Blocks.sand), new FlatLayerInfo(5, Blocks.dirt), new FlatLayerInfo(5, Blocks.stone), new FlatLayerInfo(1, Blocks.bedrock)}); func_175354_a("Overworld", Item.getItemFromBlock(Blocks.tallgrass), BlockTallGrass.EnumType.GRASS.func_177044_a(), BiomeGenBase.plains, Arrays.asList(new String[] {"village", "biome_1", "decoration", "stronghold", "mineshaft", "dungeon", "lake", "lava_lake"}), new FlatLayerInfo[] {new FlatLayerInfo(1, Blocks.grass), new FlatLayerInfo(3, Blocks.dirt), new FlatLayerInfo(59, Blocks.stone), new FlatLayerInfo(1, Blocks.bedrock)}); func_146421_a("Snowy Kingdom", Item.getItemFromBlock(Blocks.snow_layer), BiomeGenBase.icePlains, Arrays.asList(new String[] {"village", "biome_1"}), new FlatLayerInfo[] {new FlatLayerInfo(1, Blocks.snow_layer), new FlatLayerInfo(1, Blocks.grass), new FlatLayerInfo(3, Blocks.dirt), new FlatLayerInfo(59, Blocks.stone), new FlatLayerInfo(1, Blocks.bedrock)}); func_146421_a("Bottomless Pit", Items.feather, BiomeGenBase.plains, Arrays.asList(new String[] {"village", "biome_1"}), new FlatLayerInfo[] {new FlatLayerInfo(1, Blocks.grass), new FlatLayerInfo(3, Blocks.dirt), new FlatLayerInfo(2, Blocks.cobblestone)}); func_146421_a("Desert", Item.getItemFromBlock(Blocks.sand), BiomeGenBase.desert, Arrays.asList(new String[] {"village", "biome_1", "decoration", "stronghold", "mineshaft", "dungeon"}), new FlatLayerInfo[] {new FlatLayerInfo(8, Blocks.sand), new FlatLayerInfo(52, Blocks.sandstone), new FlatLayerInfo(3, Blocks.stone), new FlatLayerInfo(1, Blocks.bedrock)}); func_146425_a("Redstone Ready", Items.redstone, BiomeGenBase.desert, new FlatLayerInfo[] {new FlatLayerInfo(52, Blocks.sandstone), new FlatLayerInfo(3, Blocks.stone), new FlatLayerInfo(1, Blocks.bedrock)}); } static class LayerItem { public Item field_148234_a; public int field_179037_b; public String field_148232_b; public String field_148233_c; private static final String __OBFID = "CL_00000705"; public LayerItem(Item p_i45518_1_, int p_i45518_2_, String p_i45518_3_, String p_i45518_4_) { this.field_148234_a = p_i45518_1_; this.field_179037_b = p_i45518_2_; this.field_148232_b = p_i45518_3_; this.field_148233_c = p_i45518_4_; } } class ListSlot extends GuiSlot { public int field_148175_k = -1; private static final String __OBFID = "CL_00000706"; public ListSlot() { super(GuiFlatPresets.this.mc, GuiFlatPresets.this.width, GuiFlatPresets.this.height, 80, GuiFlatPresets.this.height - 37, 24); } private void func_178054_a(int p_178054_1_, int p_178054_2_, Item p_178054_3_, int p_178054_4_) { this.func_148173_e(p_178054_1_ + 1, p_178054_2_ + 1); GlStateManager.enableRescaleNormal(); RenderHelper.enableGUIStandardItemLighting(); GuiFlatPresets.this.itemRender.func_175042_a(new ItemStack(p_178054_3_, 1, p_178054_4_), p_178054_1_ + 2, p_178054_2_ + 2); RenderHelper.disableStandardItemLighting(); GlStateManager.disableRescaleNormal(); } private void func_148173_e(int p_148173_1_, int p_148173_2_) { this.func_148171_c(p_148173_1_, p_148173_2_, 0, 0); } private void func_148171_c(int p_148171_1_, int p_148171_2_, int p_148171_3_, int p_148171_4_) { GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F); this.mc.getTextureManager().bindTexture(Gui.statIcons); float var5 = 0.0078125F; float var6 = 0.0078125F; boolean var7 = true; boolean var8 = true; Tessellator var9 = Tessellator.getInstance(); WorldRenderer var10 = var9.getWorldRenderer(); var10.startDrawingQuads(); var10.addVertexWithUV((double)(p_148171_1_ + 0), (double)(p_148171_2_ + 18), (double)GuiFlatPresets.this.zLevel, (double)((float)(p_148171_3_ + 0) * 0.0078125F), (double)((float)(p_148171_4_ + 18) * 0.0078125F)); var10.addVertexWithUV((double)(p_148171_1_ + 18), (double)(p_148171_2_ + 18), (double)GuiFlatPresets.this.zLevel, (double)((float)(p_148171_3_ + 18) * 0.0078125F), (double)((float)(p_148171_4_ + 18) * 0.0078125F)); var10.addVertexWithUV((double)(p_148171_1_ + 18), (double)(p_148171_2_ + 0), (double)GuiFlatPresets.this.zLevel, (double)((float)(p_148171_3_ + 18) * 0.0078125F), (double)((float)(p_148171_4_ + 0) * 0.0078125F)); var10.addVertexWithUV((double)(p_148171_1_ + 0), (double)(p_148171_2_ + 0), (double)GuiFlatPresets.this.zLevel, (double)((float)(p_148171_3_ + 0) * 0.0078125F), (double)((float)(p_148171_4_ + 0) * 0.0078125F)); var9.draw(); } protected int getSize() { return GuiFlatPresets.field_146431_f.size(); } protected void elementClicked(int slotIndex, boolean isDoubleClick, int mouseX, int mouseY) { this.field_148175_k = slotIndex; GuiFlatPresets.this.func_146426_g(); GuiFlatPresets.this.field_146433_u.setText(((GuiFlatPresets.LayerItem)GuiFlatPresets.field_146431_f.get(GuiFlatPresets.this.field_146435_s.field_148175_k)).field_148233_c); } protected boolean isSelected(int slotIndex) { return slotIndex == this.field_148175_k; } protected void drawBackground() {} protected void drawSlot(int p_180791_1_, int p_180791_2_, int p_180791_3_, int p_180791_4_, int p_180791_5_, int p_180791_6_) { GuiFlatPresets.LayerItem var7 = (GuiFlatPresets.LayerItem)GuiFlatPresets.field_146431_f.get(p_180791_1_); this.func_178054_a(p_180791_2_, p_180791_3_, var7.field_148234_a, var7.field_179037_b); GuiFlatPresets.this.fontRendererObj.drawString(var7.field_148232_b, p_180791_2_ + 18 + 5, p_180791_3_ + 6, 16777215); } } }