1 |
package net.oni2.aeinstaller.gui; |
2 |
|
3 |
import java.awt.BorderLayout; |
4 |
import java.awt.Desktop; |
5 |
import java.awt.GridLayout; |
6 |
import java.awt.event.ActionEvent; |
7 |
import java.awt.event.ItemEvent; |
8 |
import java.awt.event.ItemListener; |
9 |
import java.awt.event.KeyAdapter; |
10 |
import java.awt.event.KeyEvent; |
11 |
import java.io.File; |
12 |
import java.net.URL; |
13 |
import java.util.Date; |
14 |
import java.util.HashMap; |
15 |
import java.util.HashSet; |
16 |
import java.util.ResourceBundle; |
17 |
import java.util.TreeMap; |
18 |
import java.util.TreeSet; |
19 |
import java.util.Vector; |
20 |
|
21 |
import javax.swing.AbstractAction; |
22 |
import javax.swing.Icon; |
23 |
import javax.swing.ImageIcon; |
24 |
import javax.swing.JButton; |
25 |
import javax.swing.JCheckBox; |
26 |
import javax.swing.JComboBox; |
27 |
import javax.swing.JFileChooser; |
28 |
import javax.swing.JFrame; |
29 |
import javax.swing.JLabel; |
30 |
import javax.swing.JMenu; |
31 |
import javax.swing.JMenuItem; |
32 |
import javax.swing.JOptionPane; |
33 |
import javax.swing.JPanel; |
34 |
import javax.swing.JRadioButton; |
35 |
import javax.swing.JScrollPane; |
36 |
import javax.swing.JSplitPane; |
37 |
import javax.swing.JTextField; |
38 |
import javax.swing.SwingUtilities; |
39 |
import javax.swing.ToolTipManager; |
40 |
import javax.swing.filechooser.FileFilter; |
41 |
|
42 |
import net.oni2.aeinstaller.AEInstaller2; |
43 |
import net.oni2.aeinstaller.backend.AppExecution; |
44 |
import net.oni2.aeinstaller.backend.Paths; |
45 |
import net.oni2.aeinstaller.backend.Settings; |
46 |
import net.oni2.aeinstaller.backend.Settings.Platform; |
47 |
import net.oni2.aeinstaller.backend.SizeFormatter; |
48 |
import net.oni2.aeinstaller.backend.depot.DepotManager; |
49 |
import net.oni2.aeinstaller.backend.oni.InstallProgressListener; |
50 |
import net.oni2.aeinstaller.backend.oni.Installer; |
51 |
import net.oni2.aeinstaller.backend.oni.OniSplit; |
52 |
import net.oni2.aeinstaller.backend.packages.Package; |
53 |
import net.oni2.aeinstaller.backend.packages.PackageManager; |
54 |
import net.oni2.aeinstaller.backend.packages.Type; |
55 |
import net.oni2.aeinstaller.backend.packages.download.ModDownloader; |
56 |
import net.oni2.aeinstaller.backend.packages.download.ModDownloader.State; |
57 |
import net.oni2.aeinstaller.backend.packages.download.ModDownloaderListener; |
58 |
import net.oni2.aeinstaller.gui.about.AboutDialog; |
59 |
import net.oni2.aeinstaller.gui.corepackages.CorePackagesDialog; |
60 |
import net.oni2.aeinstaller.gui.downloadwindow.Downloader; |
61 |
import net.oni2.aeinstaller.gui.modtable.DownloadSizeListener; |
62 |
import net.oni2.aeinstaller.gui.modtable.EApplyFilterTo; |
63 |
import net.oni2.aeinstaller.gui.modtable.ModSelectionListener; |
64 |
import net.oni2.aeinstaller.gui.modtable.ModTable; |
65 |
import net.oni2.aeinstaller.gui.modtable.ModTable.ETableContentType; |
66 |
import net.oni2.aeinstaller.gui.packageinfobox.PackageInfoBox; |
67 |
import net.oni2.aeinstaller.gui.settings.SettingsDialog; |
68 |
import net.oni2.aeinstaller.gui.toolmanager.ToolManager; |
69 |
|
70 |
import org.javabuilders.BuildResult; |
71 |
import org.javabuilders.annotations.DoInBackground; |
72 |
import org.javabuilders.event.BackgroundEvent; |
73 |
import org.javabuilders.swing.SwingJavaBuilder; |
74 |
import org.simplericity.macify.eawt.ApplicationEvent; |
75 |
import org.simplericity.macify.eawt.ApplicationListener; |
76 |
|
77 |
/** |
78 |
* @author Christian Illy |
79 |
*/ |
80 |
public class MainWin extends JFrame implements ApplicationListener, |
81 |
DownloadSizeListener, ModSelectionListener { |
82 |
private static final long serialVersionUID = -4027395051382659650L; |
83 |
|
84 |
private ResourceBundle bundle = ResourceBundle |
85 |
.getBundle("net.oni2.aeinstaller.localization." |
86 |
+ getClass().getSimpleName()); |
87 |
@SuppressWarnings("unused") |
88 |
private BuildResult result = SwingJavaBuilder.build(this, bundle); |
89 |
|
90 |
private JMenu mainMenu; |
91 |
private JMenu toolsMenu; |
92 |
private Vector<JMenuItem> toolsMenuItems = new Vector<JMenuItem>(); |
93 |
|
94 |
private JSplitPane contents; |
95 |
|
96 |
private JComboBox cmbModTypes; |
97 |
private JRadioButton radAll; |
98 |
private JRadioButton radOnline; |
99 |
private JRadioButton radLocal; |
100 |
private JTextField txtShowFilter; |
101 |
private JComboBox cmbShowFilterTo; |
102 |
private JScrollPane scrollMods; |
103 |
private ModTable tblMods; |
104 |
private JLabel lblDownloadSizeVal; |
105 |
|
106 |
private PackageInfoBox pkgInfo; |
107 |
|
108 |
private JButton btnInstall; |
109 |
|
110 |
private TreeSet<Package> execCoreUpdates = new TreeSet<Package>(); |
111 |
private TreeSet<Package> execUpdates = null; |
112 |
|
113 |
private enum EInstallState { |
114 |
DONE, |
115 |
READY, |
116 |
ABORTED, |
117 |
OFFLINE, |
118 |
INCOMPATIBLE, |
119 |
CHECKING |
120 |
}; |
121 |
|
122 |
private EInstallState installState = EInstallState.DONE; |
123 |
private TreeSet<Package> installMods = null; |
124 |
private TreeSet<Package> installDeps = null; |
125 |
|
126 |
/** |
127 |
* Constructor of main window. |
128 |
*/ |
129 |
public MainWin() { |
130 |
this.setTitle(SwingJavaBuilder.getConfig().getResource("appname") |
131 |
+ " - v" |
132 |
+ SwingJavaBuilder.getConfig().getResource("appversion")); |
133 |
|
134 |
tblMods = new ModTable(ETableContentType.MODS); |
135 |
tblMods.setVisible(false); |
136 |
scrollMods.setViewportView(tblMods); |
137 |
|
138 |
contents.setDividerLocation(550); |
139 |
contents.setResizeWeight(0.4); |
140 |
|
141 |
if (Settings.getPlatform() == Platform.MACOS) { |
142 |
mainMenu.setVisible(false); |
143 |
} |
144 |
|
145 |
ToolTipManager.sharedInstance().setInitialDelay(250); |
146 |
|
147 |
getRootPane().setDefaultButton(btnInstall); |
148 |
lblDownloadSizeVal.setText(SizeFormatter.format(0, 2)); |
149 |
radAll.setSelected(true); |
150 |
|
151 |
for (EApplyFilterTo f : EApplyFilterTo.values()) { |
152 |
cmbShowFilterTo.addItem(f); |
153 |
} |
154 |
txtShowFilter.addKeyListener(new KeyAdapter() { |
155 |
@Override |
156 |
public void keyReleased(KeyEvent e) { |
157 |
super.keyReleased(e); |
158 |
updateTableFilter(); |
159 |
} |
160 |
}); |
161 |
|
162 |
tblMods.addModSelectionListener(this); |
163 |
tblMods.addDownloadSizeListener(this); |
164 |
} |
165 |
|
166 |
private void initModTypeBox() { |
167 |
cmbModTypes.removeAllItems(); |
168 |
|
169 |
TreeMap<String, Type> types = new TreeMap<String, Type>(); |
170 |
for (Type t : PackageManager.getInstance().getTypesWithContent()) { |
171 |
types.put(t.getName(), t); |
172 |
} |
173 |
cmbModTypes.addItem("-All-"); |
174 |
for (Type t : types.values()) { |
175 |
cmbModTypes.addItem(t); |
176 |
} |
177 |
cmbModTypes.setSelectedIndex(0); |
178 |
} |
179 |
|
180 |
private void exit() { |
181 |
dispose(); |
182 |
System.exit(0); |
183 |
} |
184 |
|
185 |
private void saveLocalData() { |
186 |
Settings.getInstance().serializeToFile(); |
187 |
} |
188 |
|
189 |
@DoInBackground(progressMessage = "updateDepot.title", cancelable = false, indeterminateProgress = false) |
190 |
private void execDepotUpdate(final BackgroundEvent evt) { |
191 |
if (!Settings.getInstance().isOfflineMode() |
192 |
&& !Settings.getInstance().isNoCacheUpdateMode()) { |
193 |
long start = new Date().getTime(); |
194 |
|
195 |
try { |
196 |
DepotManager.getInstance().updateInformation(); |
197 |
} catch (Exception e) { |
198 |
e.printStackTrace(); |
199 |
} |
200 |
|
201 |
System.out.println("Took: " + (new Date().getTime() - start) |
202 |
+ " msec"); |
203 |
} |
204 |
|
205 |
PackageManager.getInstance().init(); |
206 |
tblMods.reloadData(); |
207 |
initModTypeBox(); |
208 |
|
209 |
tblMods.setVisible(true); |
210 |
} |
211 |
|
212 |
@SuppressWarnings("unused") |
213 |
private void checkUpdates(Object evtSource) { |
214 |
if ((evtSource != this) |
215 |
|| Settings.getInstance().get("notifyupdates", true)) { |
216 |
if (Settings.getInstance().isOfflineMode()) { |
217 |
if (evtSource != this) { |
218 |
JOptionPane.showMessageDialog( |
219 |
this, |
220 |
SwingJavaBuilder.getConfig().getResource( |
221 |
"offlineMode.text"), |
222 |
SwingJavaBuilder.getConfig().getResource( |
223 |
"offlineMode.title"), |
224 |
JOptionPane.WARNING_MESSAGE); |
225 |
} |
226 |
} else { |
227 |
TreeSet<Package> mods = PackageManager.getInstance() |
228 |
.getUpdatableMods(); |
229 |
TreeSet<Package> tools = PackageManager.getInstance() |
230 |
.getUpdatableTools(); |
231 |
int size = 0; |
232 |
JPanel panPackages = new JPanel(new GridLayout(0, 1)); |
233 |
execUpdates = new TreeSet<Package>(); |
234 |
execUpdates.addAll(mods); |
235 |
execUpdates.addAll(tools); |
236 |
for (final Package m : mods) { |
237 |
size += m.getZipSize(); |
238 |
JCheckBox check = new JCheckBox("Mod: " + m.getName()); |
239 |
check.setSelected(true); |
240 |
check.addItemListener(new ItemListener() { |
241 |
@Override |
242 |
public void itemStateChanged(ItemEvent e) { |
243 |
if (e.getStateChange() == ItemEvent.SELECTED) |
244 |
execUpdates.add(m); |
245 |
else |
246 |
execUpdates.remove(m); |
247 |
} |
248 |
}); |
249 |
panPackages.add(check); |
250 |
} |
251 |
for (final Package m : tools) { |
252 |
size += m.getZipSize(); |
253 |
JCheckBox check = new JCheckBox("Tool: " + m.getName()); |
254 |
check.setSelected(true); |
255 |
panPackages.add(check); |
256 |
} |
257 |
if (size > 0) { |
258 |
// Build info dialog content |
259 |
JPanel packages = new JPanel(new BorderLayout(0, 7)); |
260 |
JLabel lblIntro = new JLabel("<html>" |
261 |
+ bundle.getString("updatesAvailable.text") |
262 |
+ "</html>"); |
263 |
JLabel lblSize = new JLabel("<html>" |
264 |
+ String.format(bundle |
265 |
.getString("updatesAvailableSize.text"), |
266 |
SizeFormatter.format(size, 3)) + "</html>"); |
267 |
packages.add(lblIntro, BorderLayout.NORTH); |
268 |
packages.add(panPackages, BorderLayout.CENTER); |
269 |
packages.add(lblSize, BorderLayout.SOUTH); |
270 |
|
271 |
JPanel pan = new JPanel(new BorderLayout(0, 25)); |
272 |
pan.add(packages, BorderLayout.CENTER); |
273 |
JCheckBox checkFutureUpdates = new JCheckBox( |
274 |
bundle.getString("checkOnStartup.text")); |
275 |
checkFutureUpdates.setSelected(Settings.getInstance().get( |
276 |
"notifyupdates", true)); |
277 |
checkFutureUpdates.addItemListener(new ItemListener() { |
278 |
@Override |
279 |
public void itemStateChanged(ItemEvent evt) { |
280 |
Settings.getInstance().put("notifyupdates", |
281 |
evt.getStateChange() == ItemEvent.SELECTED); |
282 |
} |
283 |
}); |
284 |
pan.add(checkFutureUpdates, BorderLayout.SOUTH); |
285 |
|
286 |
// Show dialog |
287 |
int res = JOptionPane.showConfirmDialog(this, pan, |
288 |
bundle.getString("updatesAvailable.title"), |
289 |
JOptionPane.YES_NO_OPTION, |
290 |
JOptionPane.QUESTION_MESSAGE); |
291 |
if (res == JOptionPane.NO_OPTION) { |
292 |
execUpdates = null; |
293 |
} |
294 |
} else { |
295 |
if (evtSource != this) { |
296 |
JOptionPane.showMessageDialog(this, |
297 |
bundle.getString("updatesNotAvailable.text"), |
298 |
bundle.getString("updatesNotAvailable.title"), |
299 |
JOptionPane.INFORMATION_MESSAGE); |
300 |
} |
301 |
} |
302 |
} |
303 |
} |
304 |
} |
305 |
|
306 |
@SuppressWarnings("unused") |
307 |
private void doUpdate() { |
308 |
if (execUpdates != null && execUpdates.size() > 0) { |
309 |
Downloader dl = new Downloader(execUpdates, null); |
310 |
try { |
311 |
dl.setVisible(true); |
312 |
if (dl.isFinished()) { |
313 |
TreeSet<Integer> installed = Installer.getInstalledTools(); |
314 |
TreeSet<Package> tools = new TreeSet<Package>(); |
315 |
for (Package m : execUpdates) |
316 |
if (m.isTool() |
317 |
&& installed.contains(m.getPackageNumber())) |
318 |
tools.add(m); |
319 |
if (tools.size() > 0) { |
320 |
Installer.installTools(tools); |
321 |
} |
322 |
} |
323 |
} finally { |
324 |
dl.dispose(); |
325 |
} |
326 |
} |
327 |
execUpdates = null; |
328 |
} |
329 |
|
330 |
@SuppressWarnings("unused") |
331 |
private void focus() { |
332 |
SwingUtilities.invokeLater(new Runnable() { |
333 |
|
334 |
@Override |
335 |
public void run() { |
336 |
toFront(); |
337 |
repaint(); |
338 |
} |
339 |
}); |
340 |
|
341 |
} |
342 |
|
343 |
@SuppressWarnings("unused") |
344 |
private void showCorePackagesDialog() { |
345 |
new CorePackagesDialog().setVisible(true); |
346 |
} |
347 |
|
348 |
private void showSettings() { |
349 |
new SettingsDialog().setVisible(true); |
350 |
} |
351 |
|
352 |
private void showAbout() { |
353 |
new AboutDialog().setVisible(true); |
354 |
} |
355 |
|
356 |
private JFileChooser getConfigOpenSaveDialog(boolean save) { |
357 |
JFileChooser fc = new JFileChooser(); |
358 |
fc.setCurrentDirectory(Paths.getEditionBasePath()); |
359 |
if (save) |
360 |
fc.setDialogType(JFileChooser.SAVE_DIALOG); |
361 |
else |
362 |
fc.setDialogType(JFileChooser.OPEN_DIALOG); |
363 |
fc.setFileSelectionMode(JFileChooser.FILES_ONLY); |
364 |
fc.setFileFilter(new FileFilter() { |
365 |
@Override |
366 |
public String getDescription() { |
367 |
return "XML files"; |
368 |
} |
369 |
|
370 |
@Override |
371 |
public boolean accept(File arg0) { |
372 |
return (arg0.isDirectory()) |
373 |
|| (arg0.getName().toLowerCase().endsWith(".xml")); |
374 |
} |
375 |
}); |
376 |
fc.setMultiSelectionEnabled(false); |
377 |
return fc; |
378 |
} |
379 |
|
380 |
@SuppressWarnings("unused") |
381 |
private void loadConfig() { |
382 |
JFileChooser fc = getConfigOpenSaveDialog(false); |
383 |
int res = fc.showOpenDialog(this); |
384 |
if (res == JFileChooser.APPROVE_OPTION) { |
385 |
if (fc.getSelectedFile().exists()) |
386 |
tblMods.reloadSelection(fc.getSelectedFile()); |
387 |
} |
388 |
} |
389 |
|
390 |
@SuppressWarnings("unused") |
391 |
private void saveConfig() { |
392 |
JFileChooser fc = getConfigOpenSaveDialog(true); |
393 |
int res = fc.showSaveDialog(this); |
394 |
if (res == JFileChooser.APPROVE_OPTION) { |
395 |
File f = fc.getSelectedFile(); |
396 |
if (!f.getName().endsWith(".xml")) |
397 |
f = new File(f.getParentFile(), f.getName() + ".xml"); |
398 |
PackageManager.getInstance().saveModSelection(f, |
399 |
tblMods.getSelectedMods()); |
400 |
} |
401 |
} |
402 |
|
403 |
@SuppressWarnings("unused") |
404 |
private boolean reglobalizeVerify() { |
405 |
int res = JOptionPane.showConfirmDialog(this, |
406 |
bundle.getString("rebuildCore.text"), |
407 |
bundle.getString("rebuildCore.title"), |
408 |
JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE); |
409 |
return res == JOptionPane.YES_OPTION; |
410 |
} |
411 |
|
412 |
@DoInBackground(progressMessage = "initializingEdition.title", cancelable = false, indeterminateProgress = false) |
413 |
private void reglobalize(final BackgroundEvent evt) { |
414 |
Installer.initializeEdition(new InstallProgressListener() { |
415 |
@Override |
416 |
public void installProgressUpdate(int done, int total, String step) { |
417 |
evt.setProgressEnd(total); |
418 |
evt.setProgressValue(done); |
419 |
evt.setProgressMessage(step); |
420 |
} |
421 |
}); |
422 |
} |
423 |
|
424 |
@SuppressWarnings("unused") |
425 |
private void tools() { |
426 |
new ToolManager().setVisible(true); |
427 |
} |
428 |
|
429 |
@SuppressWarnings("unused") |
430 |
private void refreshToolsMenu() { |
431 |
for (JMenuItem i : toolsMenuItems) { |
432 |
toolsMenu.remove(i); |
433 |
} |
434 |
toolsMenuItems.clear(); |
435 |
for (Package m : PackageManager.getInstance().getInstalledTools()) { |
436 |
File exe = m.getExeFile(); |
437 |
if (exe != null && exe.exists()) { |
438 |
JMenuItem item = new JMenuItem(); |
439 |
final Vector<String> params = new Vector<String>(); |
440 |
if (exe.getName().toLowerCase().endsWith(".jar")) { |
441 |
File jre = null; |
442 |
if (Settings.getPlatform() == Platform.WIN) |
443 |
jre = new File(System.getProperties().getProperty( |
444 |
"java.home"), "bin/javaw.exe"); |
445 |
else |
446 |
jre = new File(System.getProperties().getProperty( |
447 |
"java.home"), "bin/java"); |
448 |
params.add(jre.getPath()); |
449 |
params.add("-jar"); |
450 |
} |
451 |
params.add(exe.getPath()); |
452 |
final File wd = m.getWorkingDir(); |
453 |
Icon ico = null; |
454 |
if (m.getIconFile() != null && m.getIconFile().exists()) { |
455 |
ico = new ImageIcon(m.getIconFile().getPath()); |
456 |
} else { |
457 |
URL icon = AEInstaller2.class |
458 |
.getResource("images/transparent.png"); |
459 |
ico = new ImageIcon(icon); |
460 |
} |
461 |
item.setAction(new AbstractAction(m.getName(), ico) { |
462 |
private static final long serialVersionUID = 1L; |
463 |
|
464 |
@Override |
465 |
public void actionPerformed(ActionEvent e) { |
466 |
AppExecution.execute(params, wd); |
467 |
} |
468 |
}); |
469 |
toolsMenuItems.add(item); |
470 |
toolsMenu.add(item); |
471 |
} |
472 |
} |
473 |
} |
474 |
|
475 |
private void revertSelection() { |
476 |
tblMods.revertSelection(); |
477 |
} |
478 |
|
479 |
@SuppressWarnings("unused") |
480 |
private void unSelectAll() { |
481 |
tblMods.unSelectAll(); |
482 |
} |
483 |
|
484 |
@DoInBackground(progressMessage = "checkCorePackages.title", cancelable = false, indeterminateProgress = false) |
485 |
private void checkCorePackages(final BackgroundEvent evt) { |
486 |
if (!Settings.getInstance().isOfflineMode()) { |
487 |
for (Package m : PackageManager.getInstance().getCoreTools()) { |
488 |
if (m.isNewerAvailable()) { |
489 |
execCoreUpdates.add(m); |
490 |
} |
491 |
} |
492 |
for (Package m : PackageManager.getInstance().getCoreMods()) { |
493 |
if (m.isNewerAvailable()) { |
494 |
execCoreUpdates.add(m); |
495 |
} |
496 |
} |
497 |
if (execCoreUpdates.size() > 0) { |
498 |
ModDownloader m = new ModDownloader(execCoreUpdates, |
499 |
new ModDownloaderListener() { |
500 |
@Override |
501 |
public void updateStatus(ModDownloader source, |
502 |
Package currentDownload, State state, |
503 |
int filesDown, int filesTotal, |
504 |
int bytesDown, int bytesTotal, |
505 |
int duration, int remaining, int speed) { |
506 |
evt.setProgressEnd(filesTotal); |
507 |
evt.setProgressValue(filesDown); |
508 |
} |
509 |
}); |
510 |
while (!m.isFinished()) { |
511 |
try { |
512 |
Thread.sleep(10); |
513 |
} catch (InterruptedException e) { |
514 |
e.printStackTrace(); |
515 |
} |
516 |
} |
517 |
} |
518 |
evt.setProgressMessage(bundle.getString("coreToolsInstall.title")); |
519 |
Installer.installTools(PackageManager.getInstance().getCoreTools()); |
520 |
} |
521 |
} |
522 |
|
523 |
@SuppressWarnings("unused") |
524 |
private void infoCorePackages() { |
525 |
if (execCoreUpdates.size() > 0) { |
526 |
String packages = ""; |
527 |
for (Package m : execCoreUpdates) { |
528 |
packages += String.format("\n - %s (%s)", m.getName(), |
529 |
m.getVersion()); |
530 |
} |
531 |
JOptionPane.showMessageDialog(this, String.format( |
532 |
bundle.getString("corePackagesUpdated.text"), packages), |
533 |
bundle.getString("corePackagesUpdated.title"), |
534 |
JOptionPane.INFORMATION_MESSAGE); |
535 |
} |
536 |
} |
537 |
|
538 |
@SuppressWarnings("unused") |
539 |
private void install() { |
540 |
TreeSet<Package> mods = new TreeSet<Package>(); |
541 |
mods.addAll(PackageManager.getInstance().getCoreMods()); |
542 |
mods.addAll(tblMods.getSelectedMods()); |
543 |
|
544 |
installDeps = new TreeSet<Package>(); |
545 |
|
546 |
installState = EInstallState.CHECKING; |
547 |
|
548 |
while (installState == EInstallState.CHECKING) { |
549 |
TreeSet<Package> toDownload = new TreeSet<Package>(); |
550 |
for (Package m : mods) { |
551 |
if (!m.isLocalAvailable()) |
552 |
toDownload.add(m); |
553 |
} |
554 |
if (toDownload.size() > 0 && Settings.getInstance().isOfflineMode()) { |
555 |
installState = EInstallState.OFFLINE; |
556 |
break; |
557 |
} |
558 |
if (toDownload.size() > 0) { |
559 |
Downloader dl = new Downloader(toDownload, installDeps); |
560 |
try { |
561 |
dl.setVisible(true); |
562 |
if (!dl.isFinished()) { |
563 |
installState = EInstallState.ABORTED; |
564 |
break; |
565 |
} |
566 |
} finally { |
567 |
dl.dispose(); |
568 |
} |
569 |
} |
570 |
HashMap<Package, HashSet<Package>> dependencies = PackageManager |
571 |
.getInstance().checkDependencies(mods); |
572 |
if (dependencies.size() > 0) { |
573 |
for (HashSet<Package> hm : dependencies.values()) { |
574 |
installDeps.addAll(hm); |
575 |
} |
576 |
|
577 |
if (!Settings.getInstance() |
578 |
.get("notifyDepsAfterInstall", false)) { |
579 |
int size = 0; |
580 |
String depsLocalString = ""; |
581 |
String depsDownloadString = ""; |
582 |
for (Package m : dependencies.keySet()) { |
583 |
for (Package mDep : dependencies.get(m)) { |
584 |
if (!mods.contains(mDep)) { |
585 |
mods.add(mDep); |
586 |
if (!mDep.isLocalAvailable()) { |
587 |
size += mDep.getZipSize(); |
588 |
if (depsDownloadString.length() > 0) |
589 |
depsDownloadString += "\n"; |
590 |
depsDownloadString += " - " |
591 |
+ mDep.getName(); |
592 |
} else { |
593 |
if (depsLocalString.length() > 0) |
594 |
depsLocalString += "\n"; |
595 |
depsLocalString += " - " + mDep.getName(); |
596 |
} |
597 |
} |
598 |
} |
599 |
} |
600 |
if (depsLocalString.length() == 0) |
601 |
depsLocalString = bundle |
602 |
.getString("installDependencies.none"); |
603 |
if (depsDownloadString.length() == 0) |
604 |
depsDownloadString = bundle |
605 |
.getString("installDependencies.none"); |
606 |
|
607 |
int res = JOptionPane.showConfirmDialog(this, String |
608 |
.format(bundle |
609 |
.getString("installDependencies.text"), |
610 |
depsLocalString, depsDownloadString, |
611 |
SizeFormatter.format(size, 3)), bundle |
612 |
.getString("installDependencies.title"), |
613 |
JOptionPane.YES_NO_OPTION, |
614 |
JOptionPane.INFORMATION_MESSAGE); |
615 |
if (res == JOptionPane.NO_OPTION) { |
616 |
installState = EInstallState.ABORTED; |
617 |
break; |
618 |
} |
619 |
} |
620 |
} else { |
621 |
HashMap<Package, HashSet<Package>> incompatibilities = PackageManager |
622 |
.getInstance().checkIncompabitilites(mods); |
623 |
if (incompatibilities.size() > 0) { |
624 |
installState = EInstallState.INCOMPATIBLE; |
625 |
|
626 |
String incompatString = ""; |
627 |
for (Package m : incompatibilities.keySet()) { |
628 |
if (incompatString.length() > 0) |
629 |
incompatString += "\n"; |
630 |
incompatString += m.getName() + ": "; |
631 |
String confMods = ""; |
632 |
for (Package mConf : incompatibilities.get(m)) { |
633 |
if (confMods.length() > 0) |
634 |
confMods += ", "; |
635 |
confMods += mConf.getName(); |
636 |
} |
637 |
incompatString += confMods; |
638 |
} |
639 |
|
640 |
JOptionPane.showMessageDialog(this, String.format( |
641 |
bundle.getString("installIncompatibilities.text"), |
642 |
incompatString), bundle |
643 |
.getString("installIncompatibilities.title"), |
644 |
JOptionPane.ERROR_MESSAGE); |
645 |
break; |
646 |
} else { |
647 |
installState = EInstallState.READY; |
648 |
} |
649 |
} |
650 |
} |
651 |
|
652 |
if (installState == EInstallState.READY) { |
653 |
installMods = new TreeSet<Package>(); |
654 |
TreeSet<Package> actuallyTools = new TreeSet<Package>(); |
655 |
|
656 |
for (Package m : mods) { |
657 |
if (m.isTool()) |
658 |
actuallyTools.add(m); |
659 |
else |
660 |
installMods.add(m); |
661 |
} |
662 |
|
663 |
if (actuallyTools.size() > 0) { |
664 |
Installer.installTools(actuallyTools); |
665 |
} |
666 |
} |
667 |
|
668 |
} |
669 |
|
670 |
@DoInBackground(progressMessage = "installing.title", cancelable = false, indeterminateProgress = false) |
671 |
private void installExec(final BackgroundEvent evt) { |
672 |
if (installState == EInstallState.READY) { |
673 |
Installer.install(installMods, new InstallProgressListener() { |
674 |
@Override |
675 |
public void installProgressUpdate(int done, int total, |
676 |
String step) { |
677 |
evt.setProgressEnd(total); |
678 |
evt.setProgressValue(done); |
679 |
evt.setProgressMessage(step); |
680 |
} |
681 |
}); |
682 |
installState = EInstallState.DONE; |
683 |
} |
684 |
installMods = null; |
685 |
} |
686 |
|
687 |
@SuppressWarnings("unused") |
688 |
private void installDone() { |
689 |
PackageManager.getInstance().updateInstalledMods(); |
690 |
switch (installState) { |
691 |
case DONE: |
692 |
revertSelection(); |
693 |
if (installDeps.size() > 0 |
694 |
&& Settings.getInstance().get("notifyDepsAfterInstall", |
695 |
false)) { |
696 |
String installedDeps = ""; |
697 |
for (Package m : installDeps) { |
698 |
if (installedDeps.length() > 0) |
699 |
installedDeps += "\n"; |
700 |
installedDeps += " - " + m.getName(); |
701 |
} |
702 |
JOptionPane.showMessageDialog(this, String.format( |
703 |
bundle.getString("installDoneDeps.text"), |
704 |
installedDeps), bundle |
705 |
.getString("installDone.title"), |
706 |
JOptionPane.INFORMATION_MESSAGE); |
707 |
} else { |
708 |
JOptionPane.showMessageDialog(this, |
709 |
bundle.getString("installDone.text"), |
710 |
bundle.getString("installDone.title"), |
711 |
JOptionPane.INFORMATION_MESSAGE); |
712 |
} |
713 |
break; |
714 |
case OFFLINE: |
715 |
JOptionPane.showMessageDialog( |
716 |
this, |
717 |
SwingJavaBuilder.getConfig().getResource( |
718 |
"offlineMode.text"), |
719 |
SwingJavaBuilder.getConfig().getResource( |
720 |
"offlineMode.title"), |
721 |
JOptionPane.WARNING_MESSAGE); |
722 |
break; |
723 |
default: |
724 |
break; |
725 |
} |
726 |
installDeps = null; |
727 |
} |
728 |
|
729 |
@Override |
730 |
public void modSelectionChanged(ModTable source, Package m) { |
731 |
pkgInfo.updateInfo(m); |
732 |
} |
733 |
|
734 |
private void updateTableFilter() { |
735 |
Object o = cmbModTypes.getSelectedItem(); |
736 |
Type t = null; |
737 |
if (o instanceof Type) |
738 |
t = (Type) o; |
739 |
int downloadState = 0; |
740 |
if (radOnline.isSelected()) |
741 |
downloadState = 1; |
742 |
if (radLocal.isSelected()) |
743 |
downloadState = 2; |
744 |
tblMods.setFilter(t, downloadState, txtShowFilter.getText(), |
745 |
(EApplyFilterTo) cmbShowFilterTo.getSelectedItem()); |
746 |
} |
747 |
|
748 |
@Override |
749 |
public void downloadSizeChanged(int newSize) { |
750 |
lblDownloadSizeVal.setText(SizeFormatter.format(newSize, 2)); |
751 |
} |
752 |
|
753 |
@SuppressWarnings("unused") |
754 |
private void checkInitialize() { |
755 |
if (!Installer.isEditionInitialized()) { |
756 |
if (!OniSplit.isOniSplitInstalled()) { |
757 |
JOptionPane.showMessageDialog(this, |
758 |
bundle.getString("noOniSplit.text"), |
759 |
bundle.getString("noOniSplit.title"), |
760 |
JOptionPane.ERROR_MESSAGE); |
761 |
exit(); |
762 |
} else { |
763 |
int res = JOptionPane |
764 |
.showConfirmDialog(this, |
765 |
bundle.getString("askInitialize.text"), |
766 |
bundle.getString("askInitialize.title"), |
767 |
JOptionPane.YES_NO_OPTION, |
768 |
JOptionPane.QUESTION_MESSAGE); |
769 |
if (res == JOptionPane.NO_OPTION) { |
770 |
saveLocalData(); |
771 |
exit(); |
772 |
} |
773 |
} |
774 |
} |
775 |
} |
776 |
|
777 |
@DoInBackground(progressMessage = "initializingEdition.title", cancelable = false, indeterminateProgress = false) |
778 |
private void initialize(final BackgroundEvent evt) { |
779 |
if (!Installer.isEditionInitialized()) { |
780 |
Installer.initializeEdition(new InstallProgressListener() { |
781 |
@Override |
782 |
public void installProgressUpdate(int done, int total, |
783 |
String step) { |
784 |
evt.setProgressEnd(total); |
785 |
evt.setProgressValue(done); |
786 |
evt.setProgressMessage(step); |
787 |
} |
788 |
}); |
789 |
} |
790 |
} |
791 |
|
792 |
private Vector<String> getBasicOniLaunchParams() { |
793 |
Vector<String> params = new Vector<String>(); |
794 |
File exe = null; |
795 |
switch (Settings.getPlatform()) { |
796 |
case WIN: |
797 |
exe = new File(Paths.getEditionBasePath(), "Oni.exe"); |
798 |
if (exe.exists()) |
799 |
params.add(exe.getPath()); |
800 |
break; |
801 |
case MACOS: |
802 |
exe = new File(Paths.getEditionBasePath(), |
803 |
"Oni.app/Contents/MacOS/Oni"); |
804 |
if (exe.exists()) |
805 |
params.add(exe.getPath()); |
806 |
break; |
807 |
case LINUX: |
808 |
String wine = Settings.getWinePath(); |
809 |
exe = new File(Paths.getEditionBasePath(), "Oni.exe"); |
810 |
if (exe.exists()) { |
811 |
if (wine != null) { |
812 |
params.add(wine); |
813 |
params.add(exe.getPath()); |
814 |
} |
815 |
} |
816 |
break; |
817 |
default: |
818 |
} |
819 |
if (params.size() > 0) { |
820 |
params.add("-debugfiles"); |
821 |
} |
822 |
return params; |
823 |
} |
824 |
|
825 |
@SuppressWarnings("unused") |
826 |
private void oniFull() { |
827 |
Vector<String> params = getBasicOniLaunchParams(); |
828 |
if (params.size() > 0) { |
829 |
AppExecution.execute(params, Paths.getEditionBasePath()); |
830 |
} |
831 |
} |
832 |
|
833 |
@SuppressWarnings("unused") |
834 |
private void oniWin() { |
835 |
Vector<String> params = getBasicOniLaunchParams(); |
836 |
if (params.size() > 0) { |
837 |
params.add("-noswitch"); |
838 |
AppExecution.execute(params, Paths.getEditionBasePath()); |
839 |
} |
840 |
} |
841 |
|
842 |
@SuppressWarnings("unused") |
843 |
private void openEditionFolder() { |
844 |
try { |
845 |
Desktop.getDesktop().open(Paths.getEditionBasePath()); |
846 |
} catch (Exception e) { |
847 |
e.printStackTrace(); |
848 |
} |
849 |
} |
850 |
|
851 |
@Override |
852 |
public void handleAbout(ApplicationEvent event) { |
853 |
event.setHandled(true); |
854 |
showAbout(); |
855 |
} |
856 |
|
857 |
@Override |
858 |
public void handleOpenApplication(ApplicationEvent event) { |
859 |
} |
860 |
|
861 |
@Override |
862 |
public void handleOpenFile(ApplicationEvent event) { |
863 |
} |
864 |
|
865 |
@Override |
866 |
public void handlePreferences(ApplicationEvent event) { |
867 |
showSettings(); |
868 |
} |
869 |
|
870 |
@Override |
871 |
public void handlePrintFile(ApplicationEvent event) { |
872 |
} |
873 |
|
874 |
@Override |
875 |
public void handleQuit(ApplicationEvent event) { |
876 |
event.setHandled(true); |
877 |
saveLocalData(); |
878 |
exit(); |
879 |
} |
880 |
|
881 |
@Override |
882 |
public void handleReOpenApplication(ApplicationEvent event) { |
883 |
} |
884 |
|
885 |
} |