1 |
package net.oni2.aeinstaller.gui; |
2 |
|
3 |
import java.awt.BorderLayout; |
4 |
import java.awt.Component; |
5 |
import java.awt.Desktop; |
6 |
import java.awt.GridLayout; |
7 |
import java.awt.KeyEventDispatcher; |
8 |
import java.awt.KeyboardFocusManager; |
9 |
import java.awt.Toolkit; |
10 |
import java.awt.datatransfer.Clipboard; |
11 |
import java.awt.datatransfer.StringSelection; |
12 |
import java.awt.event.ActionEvent; |
13 |
import java.awt.event.ItemEvent; |
14 |
import java.awt.event.ItemListener; |
15 |
import java.awt.event.KeyAdapter; |
16 |
import java.awt.event.KeyEvent; |
17 |
import java.io.File; |
18 |
import java.io.FileNotFoundException; |
19 |
import java.io.IOException; |
20 |
import java.net.URI; |
21 |
import java.net.URISyntaxException; |
22 |
import java.net.URL; |
23 |
import java.util.Date; |
24 |
import java.util.HashMap; |
25 |
import java.util.HashSet; |
26 |
import java.util.ResourceBundle; |
27 |
import java.util.TreeMap; |
28 |
import java.util.TreeSet; |
29 |
import java.util.Vector; |
30 |
|
31 |
import javax.swing.AbstractAction; |
32 |
import javax.swing.ImageIcon; |
33 |
import javax.swing.JButton; |
34 |
import javax.swing.JCheckBox; |
35 |
import javax.swing.JComboBox; |
36 |
import javax.swing.JFileChooser; |
37 |
import javax.swing.JFrame; |
38 |
import javax.swing.JLabel; |
39 |
import javax.swing.JMenu; |
40 |
import javax.swing.JMenuItem; |
41 |
import javax.swing.JOptionPane; |
42 |
import javax.swing.JPanel; |
43 |
import javax.swing.JRadioButton; |
44 |
import javax.swing.JScrollPane; |
45 |
import javax.swing.JSplitPane; |
46 |
import javax.swing.JTextField; |
47 |
import javax.swing.SwingUtilities; |
48 |
import javax.swing.ToolTipManager; |
49 |
import javax.swing.filechooser.FileFilter; |
50 |
import javax.swing.text.html.CSS; |
51 |
|
52 |
import net.oni2.SettingsManager; |
53 |
import net.oni2.aeinstaller.AEInstaller2; |
54 |
import net.oni2.aeinstaller.backend.ImageResizer; |
55 |
import net.oni2.aeinstaller.backend.Paths; |
56 |
import net.oni2.aeinstaller.backend.RuntimeOptions; |
57 |
import net.oni2.aeinstaller.backend.SizeFormatter; |
58 |
import net.oni2.aeinstaller.backend.oni.OniLauncher; |
59 |
import net.oni2.aeinstaller.backend.oni.OniSplit; |
60 |
import net.oni2.aeinstaller.backend.oni.management.Initializer; |
61 |
import net.oni2.aeinstaller.backend.oni.management.InstallProgressListener; |
62 |
import net.oni2.aeinstaller.backend.oni.management.Installer; |
63 |
import net.oni2.aeinstaller.backend.oni.management.tools.ToolInstallationList; |
64 |
import net.oni2.aeinstaller.backend.oni.management.tools.ToolsManager; |
65 |
import net.oni2.aeinstaller.backend.packages.Package; |
66 |
import net.oni2.aeinstaller.backend.packages.PackageManager; |
67 |
import net.oni2.aeinstaller.gui.about.AboutDialog; |
68 |
import net.oni2.aeinstaller.gui.corepackages.CorePackagesDialog; |
69 |
import net.oni2.aeinstaller.gui.downloadwindow.Downloader; |
70 |
import net.oni2.aeinstaller.gui.modtable.EApplyFilterTo; |
71 |
import net.oni2.aeinstaller.gui.modtable.ModInstallSelectionListener; |
72 |
import net.oni2.aeinstaller.gui.modtable.ModSelectionListener; |
73 |
import net.oni2.aeinstaller.gui.modtable.ModTable; |
74 |
import net.oni2.aeinstaller.gui.modtable.ModTable.ETableContentType; |
75 |
import net.oni2.aeinstaller.gui.packageinfobox.PackageInfoBox; |
76 |
import net.oni2.aeinstaller.gui.reporter.ReporterDialog; |
77 |
import net.oni2.aeinstaller.gui.settings.SettingsDialog; |
78 |
import net.oni2.aeinstaller.gui.toolmanager.ToolManager; |
79 |
import net.oni2.moddepot.DepotManager; |
80 |
import net.oni2.platformtools.PlatformInformation; |
81 |
import net.oni2.platformtools.PlatformInformation.Platform; |
82 |
import net.oni2.platformtools.applicationinvoker.ApplicationInvoker; |
83 |
import net.oni2.platformtools.applicationinvoker.ERuntimeNotInstalledException; |
84 |
import net.oni2.resourcebundle.UTF8ResourceBundleLoader; |
85 |
import net.oni2.swingcomponents.HTMLLinkLabel; |
86 |
|
87 |
import org.javabuilders.BuildResult; |
88 |
import org.javabuilders.annotations.DoInBackground; |
89 |
import org.javabuilders.event.BackgroundEvent; |
90 |
import org.javabuilders.swing.SwingJavaBuilder; |
91 |
import org.simplericity.macify.eawt.ApplicationEvent; |
92 |
import org.simplericity.macify.eawt.ApplicationListener; |
93 |
|
94 |
/** |
95 |
* @author Christian Illy |
96 |
*/ |
97 |
public class MainWin extends JFrame implements ApplicationListener, |
98 |
ModInstallSelectionListener, ModSelectionListener, KeyEventDispatcher { |
99 |
private static final long serialVersionUID = -4027395051382659650L; |
100 |
|
101 |
private ResourceBundle bundle = UTF8ResourceBundleLoader |
102 |
.getBundle("net.oni2.aeinstaller.localization." |
103 |
+ getClass().getSimpleName()); |
104 |
@SuppressWarnings("unused") |
105 |
private BuildResult result = SwingJavaBuilder.build(this, bundle); |
106 |
|
107 |
private JMenu mainMenu; |
108 |
private JMenu toolsMenu; |
109 |
private Vector<JMenuItem> toolsMenuItems = new Vector<JMenuItem>(); |
110 |
|
111 |
private JSplitPane contents; |
112 |
|
113 |
private JComboBox cmbModTypes; |
114 |
private JRadioButton radAll; |
115 |
private JRadioButton radOnline; |
116 |
private JRadioButton radLocal; |
117 |
private JRadioButton radInstalled; |
118 |
private JTextField txtShowFilter; |
119 |
private JComboBox cmbShowFilterTo; |
120 |
private JScrollPane scrollMods; |
121 |
private ModTable tblMods; |
122 |
private JLabel lblSelectedModsVal; |
123 |
private JLabel lblDownloadSizeVal; |
124 |
|
125 |
private PackageInfoBox pkgInfo; |
126 |
|
127 |
private JButton btnInstall; |
128 |
|
129 |
private TreeSet<Package> execCoreUpdates = new TreeSet<Package>(); |
130 |
private TreeSet<Package> execUpdates = null; |
131 |
|
132 |
private enum EInstallState { |
133 |
DONE, |
134 |
READY, |
135 |
ABORTED, |
136 |
OFFLINE, |
137 |
INCOMPATIBLE, |
138 |
CHECKING |
139 |
}; |
140 |
|
141 |
private EInstallState installState = EInstallState.DONE; |
142 |
private TreeSet<Package> installMods = null; |
143 |
private TreeSet<Package> installDeps = null; |
144 |
|
145 |
/** |
146 |
* Constructor of main window. |
147 |
*/ |
148 |
public MainWin() { |
149 |
this.setTitle(SwingJavaBuilder.getConfig().getResource("appname") |
150 |
+ SwingJavaBuilder.getConfig().getResource("appversion")); |
151 |
|
152 |
tblMods = new ModTable(ETableContentType.MODS); |
153 |
tblMods.setVisible(false); |
154 |
scrollMods.setViewportView(tblMods); |
155 |
|
156 |
contents.setDividerLocation(SettingsManager.getInstance().get( |
157 |
"win_main_divloc", 700)); |
158 |
contents.setResizeWeight(0.4); |
159 |
|
160 |
if (PlatformInformation.getPlatform() == Platform.MACOS) { |
161 |
mainMenu.setVisible(false); |
162 |
} else { |
163 |
} |
164 |
|
165 |
ToolTipManager.sharedInstance().setInitialDelay(250); |
166 |
|
167 |
getRootPane().setDefaultButton(btnInstall); |
168 |
lblSelectedModsVal.setText("0"); |
169 |
lblDownloadSizeVal.setText(SizeFormatter.format(0, 2)); |
170 |
radAll.setSelected(true); |
171 |
|
172 |
for (EApplyFilterTo f : EApplyFilterTo.values()) { |
173 |
cmbShowFilterTo.addItem(f); |
174 |
} |
175 |
txtShowFilter.addKeyListener(new KeyAdapter() { |
176 |
@Override |
177 |
public void keyReleased(KeyEvent e) { |
178 |
super.keyReleased(e); |
179 |
updateTableFilter(); |
180 |
} |
181 |
}); |
182 |
|
183 |
tblMods.addModSelectionListener(this); |
184 |
tblMods.addDownloadSizeListener(this); |
185 |
|
186 |
KeyboardFocusManager.getCurrentKeyboardFocusManager() |
187 |
.addKeyEventDispatcher(this); |
188 |
|
189 |
setSize(SettingsManager.getInstance().get("win_main_width", 1050), |
190 |
SettingsManager.getInstance().get("win_main_height", 600)); |
191 |
setLocationRelativeTo(null); |
192 |
} |
193 |
|
194 |
private void initModTypeBox() { |
195 |
cmbModTypes.removeAllItems(); |
196 |
|
197 |
TreeMap<String, net.oni2.aeinstaller.backend.packages.Type> types = new TreeMap<String, net.oni2.aeinstaller.backend.packages.Type>(); |
198 |
for (net.oni2.aeinstaller.backend.packages.Type t : PackageManager.getInstance().getTypesWithContent()) { |
199 |
types.put(t.getName(), t); |
200 |
} |
201 |
cmbModTypes.addItem("-All-"); |
202 |
for (net.oni2.aeinstaller.backend.packages.Type t : types.values()) { |
203 |
cmbModTypes.addItem(t); |
204 |
} |
205 |
cmbModTypes.setSelectedIndex(0); |
206 |
} |
207 |
|
208 |
private void exit() { |
209 |
dispose(); |
210 |
System.out.flush(); |
211 |
System.err.flush(); |
212 |
System.exit(0); |
213 |
} |
214 |
|
215 |
private void saveLocalData() { |
216 |
SettingsManager.getInstance().put("win_main_divloc", |
217 |
contents.getDividerLocation()); |
218 |
SettingsManager.getInstance().put("win_main_width", getWidth()); |
219 |
SettingsManager.getInstance().put("win_main_height", getHeight()); |
220 |
SettingsManager.getInstance().serializeToFile( |
221 |
Paths.getSettingsFilename()); |
222 |
} |
223 |
|
224 |
@DoInBackground(progressMessage = "updateDepot.title", cancelable = false, indeterminateProgress = false) |
225 |
private void execDepotUpdate(final BackgroundEvent evt) { |
226 |
boolean hasUpdated = false; |
227 |
if (!RuntimeOptions.isOfflineMode() |
228 |
&& !RuntimeOptions.isNoCacheUpdateMode()) { |
229 |
long start = new Date().getTime(); |
230 |
hasUpdated = DepotManager.getInstance().updateInformation(); |
231 |
System.out.println("Took: " + (new Date().getTime() - start) |
232 |
+ " msec"); |
233 |
} |
234 |
|
235 |
PackageManager.loadFromCacheFile(Paths.getPacManCacheFilename()); |
236 |
|
237 |
if (hasUpdated || !Paths.getPacManCacheFilename().exists()) { |
238 |
PackageManager.getInstance().init(); |
239 |
PackageManager.getInstance().saveToCacheFile( |
240 |
Paths.getPacManCacheFilename()); |
241 |
} |
242 |
tblMods.reloadData(); |
243 |
initModTypeBox(); |
244 |
|
245 |
tblMods.setVisible(true); |
246 |
} |
247 |
|
248 |
@SuppressWarnings("unused") |
249 |
private void checkUpdates(Object evtSource) { |
250 |
if ((evtSource != this) |
251 |
|| SettingsManager.getInstance().get("notifyupdates", true)) { |
252 |
if (RuntimeOptions.isOfflineMode()) { |
253 |
if (evtSource != this) { |
254 |
JOptionPane.showMessageDialog( |
255 |
this, |
256 |
SwingJavaBuilder.getConfig().getResource( |
257 |
"offlineMode.text"), |
258 |
SwingJavaBuilder.getConfig().getResource( |
259 |
"offlineMode.title"), |
260 |
JOptionPane.WARNING_MESSAGE); |
261 |
} |
262 |
} else { |
263 |
TreeSet<Package> mods = PackageManager.getInstance() |
264 |
.getUpdatableMods(); |
265 |
TreeSet<Package> tools = PackageManager.getInstance() |
266 |
.getUpdatableTools(); |
267 |
JPanel panPackages = new JPanel(new GridLayout(0, 1)); |
268 |
execUpdates = new TreeSet<Package>(); |
269 |
execUpdates.addAll(mods); |
270 |
execUpdates.addAll(tools); |
271 |
final JLabel lblSize = new JLabel("<html>" |
272 |
+ String.format( |
273 |
bundle.getString("updatesAvailableSize.text"), |
274 |
SizeFormatter.format(0, 3)) + "</html>"); |
275 |
int size = 0; |
276 |
for (final Package m : mods) { |
277 |
size += m.getZipSize(); |
278 |
JCheckBox check = new JCheckBox(bundle.getString("mod") + ": " + m.getName() |
279 |
+ " (" + SizeFormatter.format(m.getZipSize(), 1) |
280 |
+ ")"); |
281 |
check.setSelected(true); |
282 |
check.addItemListener(new ItemListener() { |
283 |
@Override |
284 |
public void itemStateChanged(ItemEvent e) { |
285 |
if (e.getStateChange() == ItemEvent.SELECTED) |
286 |
execUpdates.add(m); |
287 |
else |
288 |
execUpdates.remove(m); |
289 |
int s = 0; |
290 |
for (Package p : execUpdates) |
291 |
s += p.getZipSize(); |
292 |
lblSize.setText("<html>" |
293 |
+ String.format( |
294 |
bundle.getString("updatesAvailableSize.text"), |
295 |
SizeFormatter.format(s, 3)) |
296 |
+ "</html>"); |
297 |
} |
298 |
}); |
299 |
panPackages.add(check); |
300 |
} |
301 |
for (final Package m : tools) { |
302 |
size += m.getZipSize(); |
303 |
JCheckBox check = new JCheckBox(bundle.getString("tool") + ": " + m.getName() |
304 |
+ " (" + SizeFormatter.format(m.getZipSize(), 1) |
305 |
+ ")"); |
306 |
check.setSelected(true); |
307 |
check.addItemListener(new ItemListener() { |
308 |
@Override |
309 |
public void itemStateChanged(ItemEvent e) { |
310 |
if (e.getStateChange() == ItemEvent.SELECTED) |
311 |
execUpdates.add(m); |
312 |
else |
313 |
execUpdates.remove(m); |
314 |
int s = 0; |
315 |
for (Package p : execUpdates) |
316 |
s += p.getZipSize(); |
317 |
lblSize.setText("<html>" |
318 |
+ String.format( |
319 |
bundle.getString("updatesAvailableSize.text"), |
320 |
SizeFormatter.format(s, 3)) |
321 |
+ "</html>"); |
322 |
} |
323 |
}); |
324 |
panPackages.add(check); |
325 |
} |
326 |
lblSize.setText("<html>" |
327 |
+ String.format( |
328 |
bundle.getString("updatesAvailableSize.text"), |
329 |
SizeFormatter.format(size, 3)) + "</html>"); |
330 |
if (size > 0) { |
331 |
// Build info dialog content |
332 |
JPanel packages = new JPanel(new BorderLayout(0, 7)); |
333 |
JLabel lblIntro = new JLabel("<html>" |
334 |
+ bundle.getString("updatesAvailable.text") |
335 |
+ "</html>"); |
336 |
packages.add(lblIntro, BorderLayout.NORTH); |
337 |
packages.add(panPackages, BorderLayout.CENTER); |
338 |
packages.add(lblSize, BorderLayout.SOUTH); |
339 |
|
340 |
JPanel pan = new JPanel(new BorderLayout(0, 25)); |
341 |
pan.add(packages, BorderLayout.CENTER); |
342 |
JCheckBox checkFutureUpdates = new JCheckBox( |
343 |
bundle.getString("checkOnStartup.text")); |
344 |
checkFutureUpdates.setSelected(SettingsManager |
345 |
.getInstance().get("notifyupdates", true)); |
346 |
checkFutureUpdates.addItemListener(new ItemListener() { |
347 |
@Override |
348 |
public void itemStateChanged(ItemEvent evt) { |
349 |
SettingsManager.getInstance().put("notifyupdates", |
350 |
evt.getStateChange() == ItemEvent.SELECTED); |
351 |
} |
352 |
}); |
353 |
pan.add(checkFutureUpdates, BorderLayout.SOUTH); |
354 |
|
355 |
// Show dialog |
356 |
int res = JOptionPane.showConfirmDialog(this, pan, |
357 |
bundle.getString("updatesAvailable.title"), |
358 |
JOptionPane.YES_NO_OPTION, |
359 |
JOptionPane.QUESTION_MESSAGE); |
360 |
if (res == JOptionPane.NO_OPTION) { |
361 |
execUpdates = null; |
362 |
} |
363 |
} else { |
364 |
if (evtSource != this) { |
365 |
JOptionPane.showMessageDialog(this, |
366 |
bundle.getString("updatesNotAvailable.text"), |
367 |
bundle.getString("updatesNotAvailable.title"), |
368 |
JOptionPane.INFORMATION_MESSAGE); |
369 |
} |
370 |
} |
371 |
} |
372 |
} |
373 |
} |
374 |
|
375 |
@SuppressWarnings("unused") |
376 |
private void doUpdate() { |
377 |
if (execUpdates != null && execUpdates.size() > 0) { |
378 |
Downloader dl = new Downloader(execUpdates, null, false, this); |
379 |
try { |
380 |
dl.setVisible(true); |
381 |
if (dl.isFinished()) { |
382 |
ToolInstallationList til = ToolInstallationList |
383 |
.getInstance(); |
384 |
TreeSet<Package> tools = new TreeSet<Package>(); |
385 |
for (Package m : execUpdates) |
386 |
if (m.isTool() && til.isInstalled(m.getPackageNumber())) |
387 |
tools.add(m); |
388 |
if (tools.size() > 0) { |
389 |
ToolsManager.installTools(tools, true); |
390 |
ToolsManager.installTools(tools, false); |
391 |
} |
392 |
} |
393 |
} finally { |
394 |
dl.dispose(); |
395 |
} |
396 |
} |
397 |
execUpdates = null; |
398 |
} |
399 |
|
400 |
@SuppressWarnings("unused") |
401 |
private void showNewPackages() { |
402 |
PackageManager pm = PackageManager.getInstance(); |
403 |
if ((pm.getNewModsOnDepot().size() >= pm.getModsValidAndNotCore() |
404 |
.size()) |
405 |
|| (pm.getNewToolsOnDepot().size() >= pm.getTools().size())) |
406 |
return; |
407 |
if (SettingsManager.getInstance().get("notifynewpackages", true)) { |
408 |
if (pm.getNewModsOnDepot().size() > 0 |
409 |
|| pm.getNewToolsOnDepot().size() > 0) { |
410 |
TreeSet<Package> mods = new TreeSet<Package>(pm |
411 |
.getNewModsOnDepot().values()); |
412 |
TreeSet<Package> tools = new TreeSet<Package>(pm |
413 |
.getNewToolsOnDepot().values()); |
414 |
StringBuffer modsString = new StringBuffer(); |
415 |
StringBuffer toolsString = new StringBuffer(); |
416 |
for (final Package m : mods) { |
417 |
modsString.append("<li>" + m.getName() + "</li>"); |
418 |
} |
419 |
for (final Package m : tools) { |
420 |
toolsString.append("<li>" + m.getName() + "</li>"); |
421 |
} |
422 |
// Build info dialog content |
423 |
String message = "<html>" |
424 |
+ bundle.getString("newPackages.text") + "</html>"; |
425 |
if (modsString.length() > 0) { |
426 |
modsString.insert(0, bundle.getString("mods") + ":<ul>"); |
427 |
modsString.append("</ul>"); |
428 |
message = message.replaceAll("%1", modsString.toString()); |
429 |
} else { |
430 |
message = message.replaceAll("%1", ""); |
431 |
} |
432 |
if (toolsString.length() > 0) { |
433 |
toolsString.insert(0, bundle.getString("tools") + ":<ul>"); |
434 |
toolsString.append("</ul>"); |
435 |
message = message.replaceAll("%2", toolsString.toString()); |
436 |
} else { |
437 |
message = message.replaceAll("%2", ""); |
438 |
} |
439 |
|
440 |
JPanel pan = new JPanel(new BorderLayout(0, 25)); |
441 |
JLabel lblTxt = new JLabel(message); |
442 |
pan.add(lblTxt, BorderLayout.CENTER); |
443 |
JCheckBox checkFutureUpdates = new JCheckBox( |
444 |
bundle.getString("checkNewPackagesOnStartup.text")); |
445 |
checkFutureUpdates.setSelected(SettingsManager.getInstance() |
446 |
.get("notifynewpackages", true)); |
447 |
checkFutureUpdates.addItemListener(new ItemListener() { |
448 |
@Override |
449 |
public void itemStateChanged(ItemEvent evt) { |
450 |
SettingsManager.getInstance().put("notifynewpackages", |
451 |
evt.getStateChange() == ItemEvent.SELECTED); |
452 |
} |
453 |
}); |
454 |
pan.add(checkFutureUpdates, BorderLayout.SOUTH); |
455 |
|
456 |
JOptionPane.showMessageDialog(this, pan, |
457 |
bundle.getString("newPackages.title"), |
458 |
JOptionPane.INFORMATION_MESSAGE); |
459 |
} |
460 |
} |
461 |
} |
462 |
|
463 |
@SuppressWarnings("unused") |
464 |
private void showTips() { |
465 |
if (SettingsManager.getInstance().get("showTips", true)) { |
466 |
HTMLLinkLabel text = new HTMLLinkLabel(); |
467 |
text.setCssAttribute("h2", CSS.Attribute.MARGIN_TOP, "0"); |
468 |
text.setCssAttribute("h3", CSS.Attribute.MARGIN_TOP, "0"); |
469 |
text.setCssAttribute("ul", CSS.Attribute.MARGIN_TOP, "0"); |
470 |
text.setCssAttribute("ul", CSS.Attribute.MARGIN_LEFT, "20"); |
471 |
text.setCssAttribute("ul li", CSS.Attribute.MARGIN_TOP, "10"); |
472 |
text.setCssAttribute("ul li", CSS.Attribute.PADDING_LEFT, "10"); |
473 |
text.setText(bundle.getString("startupTips.text")); |
474 |
JOptionPane.showMessageDialog(this, text, |
475 |
bundle.getString("startupTips.title"), |
476 |
JOptionPane.INFORMATION_MESSAGE); |
477 |
} |
478 |
} |
479 |
|
480 |
@SuppressWarnings("unused") |
481 |
private void focus() { |
482 |
SwingUtilities.invokeLater(new Runnable() { |
483 |
|
484 |
@Override |
485 |
public void run() { |
486 |
toFront(); |
487 |
repaint(); |
488 |
} |
489 |
}); |
490 |
|
491 |
} |
492 |
|
493 |
@SuppressWarnings("unused") |
494 |
private void showCorePackagesDialog() { |
495 |
new CorePackagesDialog().setVisible(true); |
496 |
} |
497 |
|
498 |
private void showSettings() { |
499 |
new SettingsDialog().setVisible(true); |
500 |
} |
501 |
|
502 |
private void showAbout() { |
503 |
new AboutDialog().setVisible(true); |
504 |
} |
505 |
|
506 |
@SuppressWarnings("unused") |
507 |
private void showHelp() { |
508 |
try { |
509 |
Desktop.getDesktop().browse(new URI("http://wiki.oni2.net/AEI")); |
510 |
} catch (IOException e) { |
511 |
e.printStackTrace(); |
512 |
} catch (URISyntaxException e) { |
513 |
e.printStackTrace(); |
514 |
} |
515 |
} |
516 |
|
517 |
@SuppressWarnings("unused") |
518 |
private void showReport() { |
519 |
new ReporterDialog().setVisible(true); |
520 |
} |
521 |
|
522 |
private JFileChooser getConfigOpenSaveDialog(boolean save) { |
523 |
JFileChooser fc = new JFileChooser(); |
524 |
fc.setCurrentDirectory(Paths.getEditionBasePath()); |
525 |
if (save) |
526 |
fc.setDialogType(JFileChooser.SAVE_DIALOG); |
527 |
else |
528 |
fc.setDialogType(JFileChooser.OPEN_DIALOG); |
529 |
fc.setFileSelectionMode(JFileChooser.FILES_ONLY); |
530 |
fc.setFileFilter(new FileFilter() { |
531 |
@Override |
532 |
public String getDescription() { |
533 |
return "XML files"; |
534 |
} |
535 |
|
536 |
@Override |
537 |
public boolean accept(File arg0) { |
538 |
return (arg0.isDirectory()) |
539 |
|| (arg0.getName().toLowerCase().endsWith(".xml")); |
540 |
} |
541 |
}); |
542 |
fc.setMultiSelectionEnabled(false); |
543 |
return fc; |
544 |
} |
545 |
|
546 |
@SuppressWarnings("unused") |
547 |
private void loadConfig() { |
548 |
JFileChooser fc = getConfigOpenSaveDialog(false); |
549 |
int res = fc.showOpenDialog(this); |
550 |
if (res == JFileChooser.APPROVE_OPTION) { |
551 |
if (fc.getSelectedFile().exists()) |
552 |
tblMods.reloadSelection(fc.getSelectedFile()); |
553 |
} |
554 |
} |
555 |
|
556 |
@SuppressWarnings("unused") |
557 |
private void saveConfig() { |
558 |
JFileChooser fc = getConfigOpenSaveDialog(true); |
559 |
int res = fc.showSaveDialog(this); |
560 |
if (res == JFileChooser.APPROVE_OPTION) { |
561 |
File f = fc.getSelectedFile(); |
562 |
if (!f.getName().endsWith(".xml")) |
563 |
f = new File(f.getParentFile(), f.getName() + ".xml"); |
564 |
PackageManager.getInstance().saveModSelection(f, |
565 |
tblMods.getSelectedMods()); |
566 |
} |
567 |
} |
568 |
|
569 |
@SuppressWarnings("unused") |
570 |
private void copyConfig() { |
571 |
StringBuffer b = new StringBuffer(); |
572 |
b.append("[code]"); |
573 |
for (Package p : PackageManager.getInstance().getInstalledMods()) |
574 |
b.append(String.format("%s %s%n", p.getPackageNumberString(), |
575 |
p.getName())); |
576 |
b.append("[/code]"); |
577 |
|
578 |
StringSelection selection = new StringSelection(b.toString()); |
579 |
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard(); |
580 |
clipboard.setContents(selection, selection); |
581 |
} |
582 |
|
583 |
@SuppressWarnings("unused") |
584 |
private boolean reglobalizeVerify() { |
585 |
int res = JOptionPane.showConfirmDialog(this, |
586 |
bundle.getString("rebuildCore.text"), |
587 |
bundle.getString("rebuildCore.title"), |
588 |
JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE); |
589 |
return res == JOptionPane.YES_OPTION; |
590 |
} |
591 |
|
592 |
@DoInBackground(progressMessage = "initializingEdition.title", cancelable = false, indeterminateProgress = false) |
593 |
private void reglobalize(final BackgroundEvent evt) { |
594 |
Initializer.initializeEdition(new InstallProgressListener() { |
595 |
@Override |
596 |
public void installProgressUpdate(int done, int total, String step) { |
597 |
evt.setProgressEnd(total); |
598 |
evt.setProgressValue(done); |
599 |
evt.setProgressMessage(step); |
600 |
} |
601 |
}); |
602 |
} |
603 |
|
604 |
private void refreshLocalMods() { |
605 |
PackageManager.getInstance().updateLocalData(); |
606 |
tblMods.reloadData(); |
607 |
initModTypeBox(); |
608 |
} |
609 |
|
610 |
@SuppressWarnings("unused") |
611 |
private void tools() { |
612 |
new ToolManager().setVisible(true); |
613 |
} |
614 |
|
615 |
@SuppressWarnings("unused") |
616 |
private void refreshToolsMenu() { |
617 |
for (JMenuItem i : toolsMenuItems) { |
618 |
toolsMenu.remove(i); |
619 |
} |
620 |
toolsMenuItems.clear(); |
621 |
for (final Package m : PackageManager.getInstance().getInstalledTools()) { |
622 |
File exe = m.getExeFile(); |
623 |
if (exe != null && exe.exists()) { |
624 |
JMenuItem item = new JMenuItem(); |
625 |
ImageIcon ico = null; |
626 |
if (m.getIconFile() != null && m.getIconFile().exists()) { |
627 |
ico = new ImageIcon(m.getIconFile().getPath()); |
628 |
} else { |
629 |
URL icon = AEInstaller2.class |
630 |
.getResource("images/transparent.png"); |
631 |
ico = new ImageIcon(icon); |
632 |
} |
633 |
ico = ImageResizer.resizeImage(ico, 32, 32); |
634 |
item.setAction(new AbstractAction(m.getName(), ico) { |
635 |
private static final long serialVersionUID = 1L; |
636 |
|
637 |
@Override |
638 |
public void actionPerformed(ActionEvent evt) { |
639 |
try { |
640 |
ApplicationInvoker.execute(m.getExeType(), |
641 |
m.getWorkingDir(), m.getExeFile(), null, |
642 |
false); |
643 |
} catch (ERuntimeNotInstalledException e) { |
644 |
JOptionPane.showMessageDialog(null, |
645 |
bundle.getString("exeNotFound.text"), |
646 |
bundle.getString("exeNotFound.title"), |
647 |
JOptionPane.ERROR_MESSAGE); |
648 |
e.printStackTrace(); |
649 |
} catch (FileNotFoundException e) { |
650 |
if (e.getMessage().contains("JRE")) |
651 |
JOptionPane.showMessageDialog(null, |
652 |
bundle.getString("jreNotFound.text"), |
653 |
bundle.getString("jreNotFound.title"), |
654 |
JOptionPane.ERROR_MESSAGE); |
655 |
if (e.getMessage().contains(".NET")) |
656 |
JOptionPane.showMessageDialog( |
657 |
null, |
658 |
bundle.getString("dotNetNotFound.text"), |
659 |
bundle.getString("dotNetNotFound.title"), |
660 |
JOptionPane.ERROR_MESSAGE); |
661 |
if (e.getMessage().contains("Wine")) |
662 |
JOptionPane.showMessageDialog(null, |
663 |
bundle.getString("wineNotFound.text"), |
664 |
bundle.getString("wineNotFound.title"), |
665 |
JOptionPane.ERROR_MESSAGE); |
666 |
e.printStackTrace(); |
667 |
} |
668 |
} |
669 |
}); |
670 |
toolsMenuItems.add(item); |
671 |
toolsMenu.add(item); |
672 |
} |
673 |
} |
674 |
} |
675 |
|
676 |
private void revertSelection() { |
677 |
tblMods.revertSelection(); |
678 |
} |
679 |
|
680 |
@SuppressWarnings("unused") |
681 |
private void unSelectAll() { |
682 |
tblMods.unSelectAll(); |
683 |
} |
684 |
|
685 |
@SuppressWarnings("unused") |
686 |
private void checkCorePackages() { |
687 |
if (!RuntimeOptions.isOfflineMode()) { |
688 |
TreeSet<Package> tools = new TreeSet<Package>(); |
689 |
for (Package m : PackageManager.getInstance().getCoreTools()) { |
690 |
if (m.isNewerAvailable()) { |
691 |
execCoreUpdates.add(m); |
692 |
tools.add(m); |
693 |
} else if (!m.isInstalled()) |
694 |
tools.add(m); |
695 |
} |
696 |
for (Package m : PackageManager.getInstance().getCoreMods()) { |
697 |
if (m.isNewerAvailable()) { |
698 |
execCoreUpdates.add(m); |
699 |
} |
700 |
} |
701 |
if (execCoreUpdates.size() > 0) { |
702 |
Downloader dl = new Downloader(execCoreUpdates, null, true, this); |
703 |
try { |
704 |
dl.setVisible(true); |
705 |
} finally { |
706 |
dl.dispose(); |
707 |
} |
708 |
} |
709 |
|
710 |
ToolsManager.installTools(tools, true); |
711 |
ToolsManager.installTools(tools, false); |
712 |
} |
713 |
ToolsManager.verifyToolsIntegrity(); |
714 |
if (ToolInstallationList.getInstance().getModifiedTools().size() > 0) |
715 |
System.out.println("Locally modified tools: " |
716 |
+ ToolInstallationList.getInstance().getModifiedTools() |
717 |
.toString()); |
718 |
} |
719 |
|
720 |
@SuppressWarnings("unused") |
721 |
private void infoCorePackages() { |
722 |
if (execCoreUpdates.size() > 0) { |
723 |
String packages = ""; |
724 |
for (Package m : execCoreUpdates) { |
725 |
packages += String.format("\n - %s (%s)", m.getName(), |
726 |
m.getVersion()); |
727 |
} |
728 |
JOptionPane.showMessageDialog(this, String.format( |
729 |
bundle.getString("corePackagesUpdated.text"), packages), |
730 |
bundle.getString("corePackagesUpdated.title"), |
731 |
JOptionPane.INFORMATION_MESSAGE); |
732 |
} |
733 |
} |
734 |
|
735 |
@SuppressWarnings("unused") |
736 |
private void install() { |
737 |
TreeSet<Package> mods = new TreeSet<Package>(); |
738 |
mods.addAll(PackageManager.getInstance().getCoreMods()); |
739 |
mods.addAll(tblMods.getSelectedMods()); |
740 |
|
741 |
installDeps = new TreeSet<Package>(); |
742 |
|
743 |
installState = EInstallState.CHECKING; |
744 |
|
745 |
while (installState == EInstallState.CHECKING) { |
746 |
TreeSet<Package> toDownload = new TreeSet<Package>(); |
747 |
for (Package m : mods) { |
748 |
if (!m.isLocalAvailable()) |
749 |
toDownload.add(m); |
750 |
} |
751 |
|
752 |
if (toDownload.size() > 0 && RuntimeOptions.isOfflineMode()) { |
753 |
installState = EInstallState.OFFLINE; |
754 |
break; |
755 |
} |
756 |
|
757 |
if (toDownload.size() > 0) { |
758 |
Downloader dl = new Downloader(toDownload, installDeps, false, this); |
759 |
try { |
760 |
dl.setVisible(true); |
761 |
if (!dl.isFinished()) { |
762 |
installState = EInstallState.ABORTED; |
763 |
break; |
764 |
} |
765 |
} finally { |
766 |
dl.dispose(); |
767 |
} |
768 |
} |
769 |
|
770 |
HashMap<Package, HashSet<Package>> dependencies = PackageManager |
771 |
.getInstance().checkDependencies(mods); |
772 |
if (dependencies.size() > 0) { |
773 |
for (HashSet<Package> hm : dependencies.values()) { |
774 |
installDeps.addAll(hm); |
775 |
} |
776 |
|
777 |
int size = 0; |
778 |
String depsLocalString = ""; |
779 |
String depsDownloadString = ""; |
780 |
for (Package m : dependencies.keySet()) { |
781 |
for (Package mDep : dependencies.get(m)) { |
782 |
if (!mods.contains(mDep)) { |
783 |
mods.add(mDep); |
784 |
if (!mDep.isLocalAvailable()) { |
785 |
size += mDep.getZipSize(); |
786 |
if (depsDownloadString.length() > 0) |
787 |
depsDownloadString += "\n"; |
788 |
depsDownloadString += " - " + mDep.getName(); |
789 |
} else { |
790 |
if (depsLocalString.length() > 0) |
791 |
depsLocalString += "\n"; |
792 |
depsLocalString += " - " + mDep.getName(); |
793 |
} |
794 |
} |
795 |
} |
796 |
} |
797 |
|
798 |
if (depsLocalString.length() == 0) |
799 |
depsLocalString = bundle |
800 |
.getString("installDependencies.none"); |
801 |
if (depsDownloadString.length() == 0) |
802 |
depsDownloadString = bundle |
803 |
.getString("installDependencies.none"); |
804 |
|
805 |
if (!SettingsManager.getInstance().get( |
806 |
"notifyDepsAfterInstall", false)) { |
807 |
int res = JOptionPane.showConfirmDialog(this, String |
808 |
.format(bundle |
809 |
.getString("installDependencies.text"), |
810 |
depsLocalString, depsDownloadString, |
811 |
SizeFormatter.format(size, 3)), bundle |
812 |
.getString("installDependencies.title"), |
813 |
JOptionPane.YES_NO_OPTION, |
814 |
JOptionPane.INFORMATION_MESSAGE); |
815 |
|
816 |
if (res == JOptionPane.NO_OPTION) { |
817 |
installState = EInstallState.ABORTED; |
818 |
break; |
819 |
} |
820 |
} |
821 |
} else { |
822 |
HashMap<Package, HashSet<Package>> incompatibilities = PackageManager |
823 |
.getInstance().checkIncompabitilites(mods); |
824 |
if (incompatibilities.size() > 0) { |
825 |
installState = EInstallState.INCOMPATIBLE; |
826 |
|
827 |
String incompatString = ""; |
828 |
for (Package m : incompatibilities.keySet()) { |
829 |
if (incompatString.length() > 0) |
830 |
incompatString += "\n"; |
831 |
incompatString += m.getName() + ": "; |
832 |
String confMods = ""; |
833 |
for (Package mConf : incompatibilities.get(m)) { |
834 |
if (confMods.length() > 0) |
835 |
confMods += ", "; |
836 |
confMods += mConf.getName(); |
837 |
} |
838 |
incompatString += confMods; |
839 |
} |
840 |
|
841 |
JOptionPane.showMessageDialog(this, String.format( |
842 |
bundle.getString("installIncompatibilities.text"), |
843 |
incompatString), bundle |
844 |
.getString("installIncompatibilities.title"), |
845 |
JOptionPane.ERROR_MESSAGE); |
846 |
break; |
847 |
} else { |
848 |
installState = EInstallState.READY; |
849 |
} |
850 |
} |
851 |
} |
852 |
|
853 |
if (installState == EInstallState.READY) { |
854 |
installMods = new TreeSet<Package>(); |
855 |
TreeSet<Package> actuallyTools = new TreeSet<Package>(); |
856 |
|
857 |
for (Package m : mods) { |
858 |
if (m.isTool()) |
859 |
actuallyTools.add(m); |
860 |
else |
861 |
installMods.add(m); |
862 |
} |
863 |
|
864 |
if (actuallyTools.size() > 0) { |
865 |
ToolsManager.installTools(actuallyTools, false); |
866 |
} |
867 |
} |
868 |
} |
869 |
|
870 |
@DoInBackground(progressMessage = "installing.title", cancelable = false, indeterminateProgress = false) |
871 |
private void installExec(final BackgroundEvent evt) { |
872 |
if (installState == EInstallState.READY) { |
873 |
Installer.install(installMods, new InstallProgressListener() { |
874 |
@Override |
875 |
public void installProgressUpdate(int done, int total, |
876 |
String step) { |
877 |
evt.setProgressEnd(total); |
878 |
evt.setProgressValue(done); |
879 |
evt.setProgressMessage(step); |
880 |
} |
881 |
}); |
882 |
installState = EInstallState.DONE; |
883 |
} |
884 |
installMods = null; |
885 |
} |
886 |
|
887 |
@SuppressWarnings("unused") |
888 |
private void installDone() { |
889 |
switch (installState) { |
890 |
case DONE: |
891 |
revertSelection(); |
892 |
if (installDeps.size() > 0 |
893 |
&& SettingsManager.getInstance().get( |
894 |
"notifyDepsAfterInstall", false)) { |
895 |
String installedDeps = ""; |
896 |
for (Package m : installDeps) { |
897 |
if (installedDeps.length() > 0) |
898 |
installedDeps += "\n"; |
899 |
installedDeps += " - " + m.getName(); |
900 |
} |
901 |
JOptionPane.showMessageDialog(this, String.format( |
902 |
bundle.getString("installDoneDeps.text"), |
903 |
installedDeps), bundle |
904 |
.getString("installDone.title"), |
905 |
JOptionPane.INFORMATION_MESSAGE); |
906 |
} else { |
907 |
JOptionPane.showMessageDialog(this, |
908 |
bundle.getString("installDone.text"), |
909 |
bundle.getString("installDone.title"), |
910 |
JOptionPane.INFORMATION_MESSAGE); |
911 |
} |
912 |
break; |
913 |
case OFFLINE: |
914 |
JOptionPane.showMessageDialog( |
915 |
this, |
916 |
SwingJavaBuilder.getConfig().getResource( |
917 |
"offlineMode.text"), |
918 |
SwingJavaBuilder.getConfig().getResource( |
919 |
"offlineMode.title"), |
920 |
JOptionPane.WARNING_MESSAGE); |
921 |
break; |
922 |
default: |
923 |
break; |
924 |
} |
925 |
installDeps = null; |
926 |
} |
927 |
|
928 |
@Override |
929 |
public void modSelectionChanged(ModTable source, Package m) { |
930 |
pkgInfo.updateInfo(m); |
931 |
} |
932 |
|
933 |
@SuppressWarnings("unused") |
934 |
private void clearFilter() { |
935 |
txtShowFilter.setText(""); |
936 |
updateTableFilter(); |
937 |
} |
938 |
|
939 |
private void updateTableFilter() { |
940 |
Object o = cmbModTypes.getSelectedItem(); |
941 |
net.oni2.aeinstaller.backend.packages.Type t = null; |
942 |
if (o instanceof net.oni2.aeinstaller.backend.packages.Type) |
943 |
t = (net.oni2.aeinstaller.backend.packages.Type) o; |
944 |
int downloadState = 0; |
945 |
if (radOnline.isSelected()) |
946 |
downloadState = 1; |
947 |
if (radLocal.isSelected()) |
948 |
downloadState = 2; |
949 |
if (radInstalled.isSelected()) |
950 |
downloadState = 3; |
951 |
tblMods.setFilter(t, downloadState, txtShowFilter.getText(), |
952 |
(EApplyFilterTo) cmbShowFilterTo.getSelectedItem()); |
953 |
} |
954 |
|
955 |
@Override |
956 |
public void modInstallSelectionChanged(int newSize, int newCount) { |
957 |
lblSelectedModsVal.setText(String.valueOf(newCount)); |
958 |
lblDownloadSizeVal.setText(SizeFormatter.format(newSize, 2)); |
959 |
} |
960 |
|
961 |
@SuppressWarnings("unused") |
962 |
private void checkInitialize() { |
963 |
if (!Installer.isEditionInitialized()) { |
964 |
if (!OniSplit.isOniSplitInstalled()) { |
965 |
JOptionPane.showMessageDialog(this, |
966 |
bundle.getString("noOniSplit.text"), |
967 |
bundle.getString("noOniSplit.title"), |
968 |
JOptionPane.ERROR_MESSAGE); |
969 |
exit(); |
970 |
} else { |
971 |
int res = JOptionPane |
972 |
.showConfirmDialog(this, |
973 |
bundle.getString("askInitialize.text"), |
974 |
bundle.getString("askInitialize.title"), |
975 |
JOptionPane.YES_NO_OPTION, |
976 |
JOptionPane.QUESTION_MESSAGE); |
977 |
if (res == JOptionPane.NO_OPTION) { |
978 |
saveLocalData(); |
979 |
exit(); |
980 |
} |
981 |
} |
982 |
} |
983 |
} |
984 |
|
985 |
@DoInBackground(progressMessage = "initializingEdition.title", cancelable = false, indeterminateProgress = false) |
986 |
private void initialize(final BackgroundEvent evt) { |
987 |
if (!Installer.isEditionInitialized()) { |
988 |
Initializer.initializeEdition(new InstallProgressListener() { |
989 |
@Override |
990 |
public void installProgressUpdate(int done, int total, |
991 |
String step) { |
992 |
evt.setProgressEnd(total); |
993 |
evt.setProgressValue(done); |
994 |
evt.setProgressMessage(step); |
995 |
} |
996 |
}); |
997 |
} |
998 |
} |
999 |
|
1000 |
private void oni(boolean windowed) { |
1001 |
if (!Paths.getEditionGDF().isDirectory()) { |
1002 |
JOptionPane.showMessageDialog(this, |
1003 |
bundle.getString("notInstalled.text"), |
1004 |
bundle.getString("notInstalled.title"), |
1005 |
JOptionPane.WARNING_MESSAGE); |
1006 |
} else { |
1007 |
try { |
1008 |
OniLauncher.launch(windowed); |
1009 |
} catch (FileNotFoundException e) { |
1010 |
JOptionPane.showMessageDialog(this, |
1011 |
bundle.getString("oniExeNotFound.text"), |
1012 |
bundle.getString("oniExeNotFound.title"), |
1013 |
JOptionPane.ERROR_MESSAGE); |
1014 |
e.printStackTrace(); |
1015 |
} catch (ERuntimeNotInstalledException e) { |
1016 |
JOptionPane.showMessageDialog(this, |
1017 |
bundle.getString("wineNotFound.text"), |
1018 |
bundle.getString("wineNotFound.title"), |
1019 |
JOptionPane.ERROR_MESSAGE); |
1020 |
e.printStackTrace(); |
1021 |
} |
1022 |
} |
1023 |
} |
1024 |
|
1025 |
@SuppressWarnings("unused") |
1026 |
private void oniFull() { |
1027 |
oni(false); |
1028 |
} |
1029 |
|
1030 |
@SuppressWarnings("unused") |
1031 |
private void oniWin() { |
1032 |
oni(true); |
1033 |
} |
1034 |
|
1035 |
@SuppressWarnings("unused") |
1036 |
private void openEditionFolder() { |
1037 |
try { |
1038 |
Desktop.getDesktop().open(Paths.getEditionBasePath()); |
1039 |
} catch (Exception e) { |
1040 |
e.printStackTrace(); |
1041 |
} |
1042 |
} |
1043 |
|
1044 |
private boolean componentBelongsToWindow(Component c) { |
1045 |
while (c != null) { |
1046 |
if (c == this) |
1047 |
return true; |
1048 |
c = c.getParent(); |
1049 |
} |
1050 |
return false; |
1051 |
} |
1052 |
|
1053 |
@Override |
1054 |
public boolean dispatchKeyEvent(KeyEvent e) { |
1055 |
if (e.getID() == KeyEvent.KEY_PRESSED) { |
1056 |
switch (e.getKeyCode()) { |
1057 |
case KeyEvent.VK_F5: |
1058 |
if (componentBelongsToWindow(e.getComponent())) |
1059 |
refreshLocalMods(); |
1060 |
return true; |
1061 |
} |
1062 |
} |
1063 |
return false; |
1064 |
} |
1065 |
|
1066 |
@Override |
1067 |
public void handleAbout(ApplicationEvent event) { |
1068 |
event.setHandled(true); |
1069 |
showAbout(); |
1070 |
} |
1071 |
|
1072 |
@Override |
1073 |
public void handleOpenApplication(ApplicationEvent event) { |
1074 |
} |
1075 |
|
1076 |
@Override |
1077 |
public void handleOpenFile(ApplicationEvent event) { |
1078 |
} |
1079 |
|
1080 |
@Override |
1081 |
public void handlePreferences(ApplicationEvent event) { |
1082 |
showSettings(); |
1083 |
} |
1084 |
|
1085 |
@Override |
1086 |
public void handlePrintFile(ApplicationEvent event) { |
1087 |
} |
1088 |
|
1089 |
@Override |
1090 |
public void handleQuit(ApplicationEvent event) { |
1091 |
event.setHandled(true); |
1092 |
saveLocalData(); |
1093 |
exit(); |
1094 |
} |
1095 |
|
1096 |
@Override |
1097 |
public void handleReOpenApplication(ApplicationEvent event) { |
1098 |
} |
1099 |
|
1100 |
} |