Package vazkii.botania.common.lexicon.page

Source Code of vazkii.botania.common.lexicon.page.PageGuide

/**
* This class was created by <Vazkii>. It's distributed as
* part of the Botania Mod. Get the Source Code in github:
* https://github.com/Vazkii/Botania
*
* Botania is Open Source and distributed under a
* Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License
* (http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_GB)
*
* File Created @ [Sep 3, 2014, 9:41:47 PM (GMT)]
*/
package vazkii.botania.common.lexicon.page;

import java.awt.Desktop;
import java.net.URI;

import net.minecraft.client.gui.GuiButton;
import net.minecraft.util.StatCollector;
import vazkii.botania.api.internal.IGuiLexiconEntry;

public class PageGuide extends PageText {

  GuiButton button;

  public PageGuide(String unlocalizedName) {
    super(unlocalizedName);
  }

  @Override
  public void onOpened(IGuiLexiconEntry gui) {
    button = new GuiButton(101, gui.getLeft() + 30, gui.getTop() + gui.getHeight() - 50, gui.getWidth() - 60, 20, StatCollector.translateToLocal("botaniamisc.playVideo"));
    gui.getButtonList().add(button);
  }

  @Override
  public void onClosed(IGuiLexiconEntry gui) {
    gui.getButtonList().remove(button);
  }

  @Override
  public void onActionPerformed(IGuiLexiconEntry gui, GuiButton button) {
    if(button == this.button && Desktop.isDesktopSupported())
      try {
        Desktop.getDesktop().browse(new URI("https://www.youtube.com/watch?v=rx0xyejC6fI"));
        if(Math.random() < 0.01)
          Desktop.getDesktop().browse(new URI("https://www.youtube.com/watch?v=dQw4w9WgXcQ"));
      } catch(Exception e) { }
  }


}
TOP

Related Classes of vazkii.botania.common.lexicon.page.PageGuide

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.