4
4
import com .nexia .installer .game .VersionHandler ;
5
5
6
6
import javax .swing .*;
7
+ import java .awt .*;
7
8
import java .io .File ;
9
+ import java .io .IOException ;
8
10
import java .net .URI ;
11
+ import java .net .URISyntaxException ;
9
12
import java .nio .file .Files ;
10
13
import java .nio .file .Path ;
11
14
import java .nio .file .Paths ;
12
15
import java .nio .file .StandardCopyOption ;
13
- import java .nio .file .attribute .FileAttribute ;
14
- import java .nio .file .attribute .FileAttributeView ;
15
- import java .nio .file .attribute .PosixFilePermission ;
16
- import java .nio .file .attribute .PosixFilePermissions ;
16
+ import java .text .MessageFormat ;
17
17
import java .util .List ;
18
- import java .util .Set ;
19
18
20
19
public class InstallerUtils {
21
20
public static Path findDefaultInstallDir () {
@@ -73,20 +72,31 @@ public static void install(Path mcDir, VersionHandler.GameVersion gameVersion) {
73
72
74
73
String alternativeCodeName = gameVersion .getCodeName ().replaceAll ("\\ ." , "_" );
75
74
75
+ System .out .println ("Installing " + gameVersion .getVersion () + " (" + gameVersion .getCodeName () + ")" );
76
+
76
77
Path versionsDir = mcDir .resolve ("versions" );
77
- Path profileDir = versionsDir .resolve (alternativeCodeName );
78
- Path profileJson = profileDir .resolve (alternativeCodeName + ".json" );
78
+ Path profileDir = versionsDir .resolve (gameVersion . getCodeName () );
79
+ Path profileJson = profileDir .resolve (gameVersion . getCodeName () + ".json" );
79
80
80
- if (!Files .exists (profileDir )) {
81
- Files .createDirectory (profileDir );
82
- Files .createFile (profileJson );
83
- }
81
+ Path aProfileDir = versionsDir .resolve (alternativeCodeName );
82
+ Path aProfileJson = aProfileDir .resolve (alternativeCodeName + ".json" );
83
+
84
+ if (!Files .exists (profileDir )) Files .createDirectory (profileDir );
85
+ if (!Files .exists (profileJson )) Files .createFile (profileJson );
86
+
87
+ if (!Files .exists (aProfileDir )) Files .createDirectory (aProfileDir );
88
+ if (!Files .exists (aProfileJson )) Files .createFile (aProfileJson );
84
89
85
90
File zipFile = new File (versionsDir + "/" + gameVersion .getCodeName () + ".zip" );
86
91
87
92
Utils .downloadFile (URI .create (gameVersion .getDownload ().url ).toURL (), zipFile .toPath ());
88
93
Utils .extractZip (zipFile .toPath (), versionsDir );
89
94
95
+ Files .copy (aProfileJson , profileJson , StandardCopyOption .REPLACE_EXISTING );
96
+
97
+
98
+ aProfileJson .toFile ().delete ();
99
+ aProfileDir .toFile ().delete ();
90
100
zipFile .delete ();
91
101
92
102
if (InstallerHelper .createProfile .isSelected ()) {
@@ -96,6 +106,7 @@ public static void install(Path mcDir, VersionHandler.GameVersion gameVersion) {
96
106
97
107
profileInstaller .setupProfile (gameVersion .getCodeName (), gameVersion .getVersion (), launcherType );
98
108
}
109
+ showDone (gameVersion );
99
110
} catch (Exception e ) {
100
111
e .printStackTrace ();
101
112
} finally {
@@ -123,4 +134,19 @@ private static ProfileInstaller.LauncherType showLauncherTypeSelection() {
123
134
124
135
return result == JOptionPane .YES_OPTION ? ProfileInstaller .LauncherType .MICROSOFT_STORE : ProfileInstaller .LauncherType .WIN32 ;
125
136
}
137
+
138
+ private static void showDone (VersionHandler .GameVersion gameVersion ) throws URISyntaxException , IOException {
139
+ Object [] options = {"OK" , "Install Fabric" };
140
+ int result = JOptionPane .showOptionDialog (null ,
141
+ MessageFormat .format (Main .BUNDLE .getString ("installer.prompt.install.done" ), gameVersion .getVersion ()),
142
+ Main .BUNDLE .getString ("installer.title" ),
143
+ JOptionPane .YES_NO_OPTION ,
144
+ JOptionPane .INFORMATION_MESSAGE ,
145
+ null ,
146
+ options ,
147
+ options [0 ]
148
+ );
149
+
150
+ if (result == JOptionPane .NO_OPTION && Desktop .isDesktopSupported () && Desktop .getDesktop ().isSupported (Desktop .Action .BROWSE )) Desktop .getDesktop ().browse (new URI ("https://github.com/rizecookey/fabric-installer/releases" ));
151
+ }
126
152
}
0 commit comments