package net.oni2.aeinstaller; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.PrintStream; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.net.MalformedURLException; import java.net.URL; import java.net.URLClassLoader; import java.util.ResourceBundle; import javax.imageio.ImageIO; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing.JToolBar; import javax.swing.SwingUtilities; import javax.swing.UIManager; import javax.swing.UIManager.LookAndFeelInfo; import net.oni2.aeinstaller.backend.Paths; import net.oni2.aeinstaller.backend.Settings; import net.oni2.aeinstaller.backend.Settings.Platform; import net.oni2.aeinstaller.backend.SizeFormatter; import net.oni2.aeinstaller.backend.depot.DepotManager; import net.oni2.aeinstaller.backend.oni.Installer; import net.oni2.aeinstaller.backend.oni.OniSplit; import net.oni2.aeinstaller.gui.HTMLLinkLabel; import net.oni2.aeinstaller.gui.MainWin; import org.javabuilders.swing.SwingJavaBuilder; import org.simplericity.macify.eawt.Application; import org.simplericity.macify.eawt.DefaultApplication; /** * @author Christian Illy */ public class AEInstaller2 { private static ResourceBundle imagesBundle; private static ResourceBundle basicBundle; private static ResourceBundle globalBundle; private static Application app = null; private static void initMacOS() { System.setProperty("apple.laf.useScreenMenuBar", "true"); System.setProperty("com.apple.mrj.application.apple.menu.about.name", basicBundle.getString("appname")); app = new DefaultApplication(); URL icon = AEInstaller2.class.getResource(imagesBundle .getString("img.ae")); try { BufferedImage img = ImageIO.read(icon); app.setApplicationIconImage(img); } catch (IOException e) { e.printStackTrace(); } } private static void initBundles() { File localesDir = new File(Paths.getInstallerPath(), "locales"); if (localesDir.isDirectory()) addClassPath(localesDir); imagesBundle = ResourceBundle.getBundle("net.oni2.aeinstaller.Images"); basicBundle = ResourceBundle .getBundle("net.oni2.aeinstaller.AEInstaller"); globalBundle = ResourceBundle .getBundle("net.oni2.aeinstaller.localization.Global"); } private static void addClassPath(File dir) { try { URL u = dir.toURI().toURL(); URLClassLoader urlClassLoader = (URLClassLoader) ClassLoader .getSystemClassLoader(); Class urlClass = URLClassLoader.class; Method method = urlClass.getDeclaredMethod("addURL", new Class[] { URL.class }); method.setAccessible(true); method.invoke(urlClassLoader, new Object[] { u }); } catch (MalformedURLException e) { } catch (SecurityException e) { } catch (NoSuchMethodException e) { } catch (IllegalArgumentException e) { } catch (IllegalAccessException e) { } catch (InvocationTargetException e) { } } /** * @param args * Command line arguments */ public static void main(String[] args) { Paths.getPrefsPath().mkdirs(); Paths.getDownloadPath().mkdirs(); boolean debug = false; boolean noCacheUpdate = false; for (String a : args) { if (a.equalsIgnoreCase("-debug")) debug = true; if (a.equalsIgnoreCase("-nocacheupdate")) noCacheUpdate = true; } if (!debug) { try { PrintStream ps = new PrintStream(new File(Paths.getPrefsPath(), "aei_output.log")); System.setOut(ps); System.setErr(ps); } catch (FileNotFoundException e1) { e1.printStackTrace(); } } initBundles(); if (Settings.getPlatform() == Platform.MACOS) initMacOS(); Settings.setDebug(debug); Settings.deserializeFromFile(); Settings.setDebug(debug); Settings.getInstance().setNoCacheUpdateMode(noCacheUpdate); SwingJavaBuilder.getConfig().addResourceBundle(imagesBundle); SwingJavaBuilder.getConfig().addResourceBundle(basicBundle); SwingJavaBuilder.getConfig().addResourceBundle(globalBundle); SwingJavaBuilder.getConfig().setMarkInvalidResourceBundleKeys(true); SwingJavaBuilder.getConfig().addType("JToolBarSeparator", JToolBar.Separator.class); System.setProperty("networkaddress.cache.ttl", "5"); System.setProperty("networkaddress.cache.negative.ttl", "1"); try { String laf = Settings.getInstance().get("lookandfeel", (String) null); if (laf == null) { if (Settings.getPlatform() != Platform.LINUX) { laf = UIManager.getSystemLookAndFeelClassName(); } else { for (LookAndFeelInfo lafInfo : UIManager .getInstalledLookAndFeels()) { if (lafInfo.getName().equals("Nimbus")) laf = lafInfo.getClassName(); } } } if (laf == null) laf = UIManager.getSystemLookAndFeelClassName(); UIManager.setLookAndFeel(laf); } catch (Exception e) { e.printStackTrace(); } JFrame.setDefaultLookAndFeelDecorated(true); System.out.println(basicBundle.getString("appname") + " " + basicBundle.getString("appversion")); System.out.println("JarPath: " + Paths.getInstallerPath()); System.out.println("PrefsPath: " + Paths.getPrefsPath()); System.out.println("DataPath: " + Paths.getModsPath()); System.out.println("DownPath: " + Paths.getDownloadPath()); System.out.println("TempPath: " + Paths.getTempPath()); System.out.println("ValidPath: " + Installer.verifyRunningDirectory()); System.out.println("Platform: " + Settings.getPlatform()); System.out.println("Architect: " + Settings.getArchitecture()); System.out.println(".NET: " + OniSplit.isDotNETInstalled()); System.out.println("OniSplit: " + OniSplit.isOniSplitInstalled()); System.out.println("Globalized:" + Installer.isEditionInitialized()); // TODO: Check available space System.out .println("Free space on temp: " + SizeFormatter.format(Paths.getTempPath() .getUsableSpace(), 3)); System.out.println("Free space on Jar: " + SizeFormatter.format(Paths.getInstallerPath() .getUsableSpace(), 3)); System.out.println(); if (!OniSplit.isDotNETInstalled()) { HTMLLinkLabel hll = new HTMLLinkLabel(); String dlUrl = ""; switch (Settings.getPlatform()) { case WIN: switch (Settings.getArchitecture()) { case X86: dlUrl = "http://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x86.exe"; break; case AMD64: dlUrl = "http://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x64.exe"; break; } break; default: dlUrl = "http://www.go-mono.com/mono-downloads/download.html"; } hll.setText(globalBundle .getString("dotNetMissing.text") .replaceAll( "%1", String.format("%s", dlUrl, dlUrl))); JOptionPane.showMessageDialog(null, hll, globalBundle.getString("dotNetMissing.title"), JOptionPane.ERROR_MESSAGE); return; } if (!Installer.verifyRunningDirectory()) { JOptionPane.showMessageDialog(null, globalBundle.getString("invalidPath.text"), globalBundle.getString("invalidPath.title"), JOptionPane.ERROR_MESSAGE); if (!Settings.isDebug()) { return; } } boolean offline = false; for (String a : args) if (a.equalsIgnoreCase("-offline")) offline = true; if (!offline) { offline = !DepotManager.getInstance().checkConnection(); } if (offline) { JOptionPane.showMessageDialog(null, globalBundle.getString("offlineModeStartup.text"), globalBundle.getString("offlineModeStartup.title"), JOptionPane.INFORMATION_MESSAGE); } Settings.getInstance().setOfflineMode(offline); SwingUtilities.invokeLater(new Runnable() { public void run() { try { MainWin mw = new MainWin(); if (app != null) { app.addAboutMenuItem(); app.setEnabledAboutMenu(true); app.addPreferencesMenuItem(); app.setEnabledPreferencesMenu(true); app.addApplicationListener(mw); } mw.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } }