You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			111 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			111 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Java
		
	
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.util.ChatComponentText;
 | 
						|
import net.minecraft.util.ChatComponentTranslation;
 | 
						|
import net.minecraft.util.IChatComponent;
 | 
						|
import net.minecraft.world.WorldSettings;
 | 
						|
 | 
						|
@SideOnly(Side.CLIENT)
 | 
						|
public class GuiShareToLan extends GuiScreen
 | 
						|
{
 | 
						|
    private final GuiScreen field_146598_a;
 | 
						|
    private GuiButton field_146596_f;
 | 
						|
    private GuiButton field_146597_g;
 | 
						|
    private String field_146599_h = "survival";
 | 
						|
    private boolean field_146600_i;
 | 
						|
    private static final String __OBFID = "CL_00000713";
 | 
						|
 | 
						|
    public GuiShareToLan(GuiScreen p_i1055_1_)
 | 
						|
    {
 | 
						|
        this.field_146598_a = p_i1055_1_;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Adds the buttons (and other controls) to the screen in question.
 | 
						|
     */
 | 
						|
    public void initGui()
 | 
						|
    {
 | 
						|
        this.buttonList.clear();
 | 
						|
        this.buttonList.add(new GuiButton(101, this.width / 2 - 155, this.height - 28, 150, 20, I18n.format("lanServer.start", new Object[0])));
 | 
						|
        this.buttonList.add(new GuiButton(102, this.width / 2 + 5, this.height - 28, 150, 20, I18n.format("gui.cancel", new Object[0])));
 | 
						|
        this.buttonList.add(this.field_146597_g = new GuiButton(104, this.width / 2 - 155, 100, 150, 20, I18n.format("selectWorld.gameMode", new Object[0])));
 | 
						|
        this.buttonList.add(this.field_146596_f = new GuiButton(103, this.width / 2 + 5, 100, 150, 20, I18n.format("selectWorld.allowCommands", new Object[0])));
 | 
						|
        this.func_146595_g();
 | 
						|
    }
 | 
						|
 | 
						|
    private void func_146595_g()
 | 
						|
    {
 | 
						|
        this.field_146597_g.displayString = I18n.format("selectWorld.gameMode", new Object[0]) + " " + I18n.format("selectWorld.gameMode." + this.field_146599_h, new Object[0]);
 | 
						|
        this.field_146596_f.displayString = I18n.format("selectWorld.allowCommands", new Object[0]) + " ";
 | 
						|
 | 
						|
        if (this.field_146600_i)
 | 
						|
        {
 | 
						|
            this.field_146596_f.displayString = this.field_146596_f.displayString + I18n.format("options.on", new Object[0]);
 | 
						|
        }
 | 
						|
        else
 | 
						|
        {
 | 
						|
            this.field_146596_f.displayString = this.field_146596_f.displayString + I18n.format("options.off", new Object[0]);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    protected void actionPerformed(GuiButton button)
 | 
						|
    {
 | 
						|
        if (button.id == 102)
 | 
						|
        {
 | 
						|
            this.mc.displayGuiScreen(this.field_146598_a);
 | 
						|
        }
 | 
						|
        else if (button.id == 104)
 | 
						|
        {
 | 
						|
            if (this.field_146599_h.equals("survival"))
 | 
						|
            {
 | 
						|
                this.field_146599_h = "creative";
 | 
						|
            }
 | 
						|
            else if (this.field_146599_h.equals("creative"))
 | 
						|
            {
 | 
						|
                this.field_146599_h = "adventure";
 | 
						|
            }
 | 
						|
            else
 | 
						|
            {
 | 
						|
                this.field_146599_h = "survival";
 | 
						|
            }
 | 
						|
 | 
						|
            this.func_146595_g();
 | 
						|
        }
 | 
						|
        else if (button.id == 103)
 | 
						|
        {
 | 
						|
            this.field_146600_i = !this.field_146600_i;
 | 
						|
            this.func_146595_g();
 | 
						|
        }
 | 
						|
        else if (button.id == 101)
 | 
						|
        {
 | 
						|
            this.mc.displayGuiScreen((GuiScreen)null);
 | 
						|
            String s = this.mc.getIntegratedServer().shareToLAN(WorldSettings.GameType.getByName(this.field_146599_h), this.field_146600_i);
 | 
						|
            Object object;
 | 
						|
 | 
						|
            if (s != null)
 | 
						|
            {
 | 
						|
                object = new ChatComponentTranslation("commands.publish.started", new Object[] {s});
 | 
						|
            }
 | 
						|
            else
 | 
						|
            {
 | 
						|
                object = new ChatComponentText("commands.publish.failed");
 | 
						|
            }
 | 
						|
 | 
						|
            this.mc.ingameGUI.getChatGUI().printChatMessage((IChatComponent)object);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Draws the screen and all the components in it.
 | 
						|
     */
 | 
						|
    public void drawScreen(int mouseX, int mouseY, float partialTicks)
 | 
						|
    {
 | 
						|
        this.drawDefaultBackground();
 | 
						|
        this.drawCenteredString(this.fontRendererObj, I18n.format("lanServer.title", new Object[0]), this.width / 2, 50, 16777215);
 | 
						|
        this.drawCenteredString(this.fontRendererObj, I18n.format("lanServer.otherPlayers", new Object[0]), this.width / 2, 82, 16777215);
 | 
						|
        super.drawScreen(mouseX, mouseY, partialTicks);
 | 
						|
    }
 | 
						|
} |