package net.knarcraft.minecraftserverlauncher.userinterface; import net.knarcraft.minecraftserverlauncher.profile.Profile; import net.knarcraft.minecraftserverlauncher.profile.ServerLauncherController; import net.knarcraft.minecraftserverlauncher.utility.CommonFunctions; import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Objects; /** * This class takes care of the GUI's top menu */ public class ServerLauncherMenu implements ActionListener { private final JMenuBar menuBar; //Options private JCheckBoxMenuItem runInBackgroundCheckBoxMenuItem; private JCheckBoxMenuItem delayStartupCheckBoxMenuItem; private JCheckBoxMenuItem downloadJarsCheckBoxMenuItem; private JMenuItem javaCommandMenuItem; private JMenuItem oldJavaCommandMenuItem; //Help private JMenuItem errorsMenuItem; private JMenuItem setupMenuItem; private JMenuItem manualUpdateMenuItem; //Info/options private JMenuItem runInBackgroundMenuItem; private JMenuItem delayStartupMenuItem; private JMenuItem downloadJarsMenuItem; private JMenuItem javaCommandInfoMenuItem; private JMenuItem oldJavaCommandInfoMenuItem; //Info/about private JMenuItem aboutMenuItem; private JMenuItem storyMenuItem; private final ServerLauncherController controller; private final ServerLauncherGUI serverLauncherGUI; /** * Initializes a new server launcher menu * * @param menuBar

The menu bar to attach items to

* @param serverLauncherGUI

The server launcher GUI to use

*/ public ServerLauncherMenu(JMenuBar menuBar, ServerLauncherGUI serverLauncherGUI) { this.controller = ServerLauncherController.getInstance(); this.menuBar = menuBar; this.serverLauncherGUI = serverLauncherGUI; initialize(); } /** * Initializes all GUI elements */ public void initialize() { JMenu mnOptions = new JMenu("Options"); menuBar.add(mnOptions); generateOptionsMenuItems(mnOptions); JMenu mnHelp = new JMenu("Help"); menuBar.add(mnHelp); errorsMenuItem = createMenuItem("Errors", mnHelp); setupMenuItem = createMenuItem("Setup", mnHelp); manualUpdateMenuItem = createMenuItem("Manual update", mnHelp); JMenu mnInfo = new JMenu("Info"); menuBar.add(mnInfo); generateInfoMenuItems(mnInfo); } /** * Updates the state of checkboxes based on whether options are enabled */ public void update() { runInBackgroundCheckBoxMenuItem.setState(controller.getRunInBackground()); delayStartupCheckBoxMenuItem.setState(controller.getDelayStartup() > 0); downloadJarsCheckBoxMenuItem.setState(controller.getDownloadAllJars()); } @Override public void actionPerformed(ActionEvent actionEvent) { Object actionSource = actionEvent.getSource(); if (actionSource == runInBackgroundCheckBoxMenuItem) { background(); } else if (actionSource == delayStartupCheckBoxMenuItem) { delay(); } else if (actionSource == downloadJarsCheckBoxMenuItem) { downloadJars(); } else if (actionSource == javaCommandMenuItem) { configureJava(false); } else if (actionSource == oldJavaCommandMenuItem) { configureJava(true); } else if (actionSource == errorsMenuItem) { CommonFunctions.goToURL(serverLauncherGUI.getMessage("infoURL")); } else if (actionSource == setupMenuItem) { serverLauncherGUI.showMessage("Setup", serverLauncherGUI.getMessage("setupText")); } else if (actionSource == manualUpdateMenuItem) { CommonFunctions.goToURL(serverLauncherGUI.getMessage("manualUpdateURL")); } else if (actionSource == runInBackgroundMenuItem) { serverLauncherGUI.showMessage("Run in background", serverLauncherGUI.getMessage("runInBackgroundText")); } else if (actionSource == delayStartupMenuItem) { serverLauncherGUI.showMessage("Delay startup", serverLauncherGUI.getMessage("delayStartupText")); } else if (actionSource == downloadJarsMenuItem) { serverLauncherGUI.showMessage("Download jars", serverLauncherGUI.getMessage("downloadJarsText")); } else if (actionSource == javaCommandInfoMenuItem) { serverLauncherGUI.showMessage("Java command", serverLauncherGUI.getMessage("javaCommandText")); } else if (actionSource == oldJavaCommandInfoMenuItem) { serverLauncherGUI.showMessage("Old Java command", serverLauncherGUI.getMessage("oldJavaCommandText")); } else if (actionSource == aboutMenuItem) { serverLauncherGUI.showMessage("About", serverLauncherGUI.getMessage("aboutText")); } else if (actionSource == storyMenuItem) { CommonFunctions.goToURL(serverLauncherGUI.getMessage("storyURL")); } } /** * Generates the children of the options menu * * @param mnOptions

A reference to the options menu

*/ private void generateOptionsMenuItems(JMenu mnOptions) { runInBackgroundCheckBoxMenuItem = createCheckBoxMenuItem("Run in background on exit", mnOptions); delayStartupCheckBoxMenuItem = createCheckBoxMenuItem("Delay Startup", mnOptions); downloadJarsCheckBoxMenuItem = createCheckBoxMenuItem("Download jars", mnOptions); javaCommandMenuItem = createMenuItem("Java command", mnOptions); oldJavaCommandMenuItem = createMenuItem("Old Java command", mnOptions); } /** * Generates the children of the info menu * * @param mnInfo

A reference to the info menu

*/ private void generateInfoMenuItems(JMenu mnInfo) { JMenu mnOptionsInfo = new JMenu("Options"); mnInfo.add(mnOptionsInfo); runInBackgroundMenuItem = createMenuItem("Run in background on exit", mnOptionsInfo); delayStartupMenuItem = createMenuItem("Delay Startup", mnOptionsInfo); downloadJarsMenuItem = createMenuItem("Download jars", mnOptionsInfo); javaCommandInfoMenuItem = createMenuItem("Java command", mnOptionsInfo); oldJavaCommandInfoMenuItem = createMenuItem("Old Java command", mnOptionsInfo); JMenu mnAbout = new JMenu("About"); mnInfo.add(mnAbout); aboutMenuItem = createMenuItem("About", mnAbout); storyMenuItem = createMenuItem("Story", mnAbout); } /** * Creates a checkbox menu item * * @param itemName

The name of the new checkbox item

* @param parent

The parent menu the item belongs to

* @return

The created checkbox menu item

*/ private JCheckBoxMenuItem createCheckBoxMenuItem(String itemName, JMenu parent) { JCheckBoxMenuItem menuItem = new JCheckBoxMenuItem(itemName); parent.add(menuItem); menuItem.addActionListener(this); return menuItem; } /** * Creates a menu item * * @param itemName

The name of the new item

* @param parent

The parent menu the item belongs to

* @return

The created menu item

*/ private JMenuItem createMenuItem(String itemName, JMenu parent) { JMenuItem menuItem = new JMenuItem(itemName); parent.add(menuItem); menuItem.addActionListener(this); return menuItem; } /** * Asks the user for the new Java path * @param old

Whether asking for the path to the old java version

*/ private void configureJava(boolean old) { if (old) { String response = JOptionPane.showInputDialog("Command or path to Java: ", controller.getOldJavaCommand()); if (response != null) { controller.setOldJavaCommand(response); } } else { String response = JOptionPane.showInputDialog("Command or path to Java: ", controller.getJavaCommand()); if (response != null) { controller.setJavaCommand(response); } } } /** * Asks the user for a delay if checked, and sets the value to the current profile */ private void delay() { String selectedProfile = serverLauncherGUI.getSelectedProfile(); if (selectedProfile != null) { Profile profile = controller.getProfileByName(selectedProfile); if (delayStartupCheckBoxMenuItem.isSelected()) { String response = JOptionPane.showInputDialog("Seconds to delay: "); if (response == null) { delayStartupCheckBoxMenuItem.setState(false); return; } int parsed = Integer.parseInt(response); Objects.requireNonNull(profile).setDelayStartup(parsed); } else { Objects.requireNonNull(profile).setDelayStartup(0); } } else { serverLauncherGUI.showError("No profile selected"); } } /** * Saves the runInBackground setting to the current profile */ private void background() { String selectedProfile = serverLauncherGUI.getSelectedProfile(); if (selectedProfile != null) { Profile profile = controller.getProfileByName(selectedProfile); Objects.requireNonNull(profile).setRunInBackground(runInBackgroundCheckBoxMenuItem.isSelected()); } else { serverLauncherGUI.showError("No profile selected"); } } /** * Saves the downloadJars setting to the current profile */ private void downloadJars() { String selectedProfile = serverLauncherGUI.getSelectedProfile(); if (selectedProfile != null) { controller.setDownloadAllJars(downloadJarsCheckBoxMenuItem.isSelected()); } else { serverLauncherGUI.showError("No profile selected"); } } }