6
6
7
7
import javax .swing .*;
8
8
import java .io .File ;
9
+ import java .io .IOException ;
9
10
import java .net .URI ;
10
11
import java .nio .file .*;
11
12
import java .text .MessageFormat ;
@@ -40,6 +41,40 @@ public static Path findDefaultInstallDir() {
40
41
return dir .toAbsolutePath ().normalize ();
41
42
}
42
43
44
+ public static void downloadVanilla (Path mcDir , VersionHandler .GameVersion gameVersion ) throws IOException {
45
+ String alternativeCodeName = gameVersion .getCodeName ().replaceAll ("\\ ." , "_" );
46
+
47
+ System .out .println ("Installing " + gameVersion .getVersion () + " (" + gameVersion .getCodeName () + ")" );
48
+
49
+ Path versionsDir = mcDir .resolve ("versions" );
50
+ if (!Files .exists (versionsDir )) Files .createDirectories (versionsDir );
51
+
52
+ Path profileDir = versionsDir .resolve (gameVersion .getCodeName ());
53
+ Path profileJson = profileDir .resolve (gameVersion .getCodeName () + ".json" );
54
+
55
+ Path aProfileDir = versionsDir .resolve (alternativeCodeName );
56
+ Path aProfileJson = aProfileDir .resolve (alternativeCodeName + ".json" );
57
+
58
+ if (!Files .exists (profileDir )) Files .createDirectory (profileDir );
59
+ if (!Files .exists (profileJson )) Files .createFile (profileJson );
60
+
61
+ if (!Files .exists (aProfileDir )) Files .createDirectory (aProfileDir );
62
+ if (!Files .exists (aProfileJson )) Files .createFile (aProfileJson );
63
+
64
+ File zipFile = new File (versionsDir + "/" + gameVersion .getCodeName () + ".zip" );
65
+
66
+ Utils .downloadFile (URI .create (gameVersion .getDownload ().url ).toURL (), zipFile .toPath ());
67
+ Utils .extractZip (zipFile .toPath (), versionsDir );
68
+
69
+ Files .copy (aProfileJson , profileJson , StandardCopyOption .REPLACE_EXISTING );
70
+
71
+ //System.out.println(Utils.sha1String(zipFile.toPath()).equalsIgnoreCase(gameVersion.getDownload().sha1));
72
+
73
+ aProfileJson .toFile ().delete ();
74
+ aProfileDir .toFile ().delete ();
75
+ zipFile .delete ();
76
+ }
77
+
43
78
public static void install (Path mcDir , VersionHandler .GameVersion gameVersion ) {
44
79
if (mcDir == null || gameVersion == null ) return ;
45
80
@@ -65,35 +100,7 @@ public static void install(Path mcDir, VersionHandler.GameVersion gameVersion) {
65
100
}
66
101
}
67
102
68
- String alternativeCodeName = gameVersion .getCodeName ().replaceAll ("\\ ." , "_" );
69
-
70
- System .out .println ("Installing " + gameVersion .getVersion () + " (" + gameVersion .getCodeName () + ")" );
71
-
72
- Path versionsDir = mcDir .resolve ("versions" );
73
- Path profileDir = versionsDir .resolve (gameVersion .getCodeName ());
74
- Path profileJson = profileDir .resolve (gameVersion .getCodeName () + ".json" );
75
-
76
- Path aProfileDir = versionsDir .resolve (alternativeCodeName );
77
- Path aProfileJson = aProfileDir .resolve (alternativeCodeName + ".json" );
78
-
79
- if (!Files .exists (profileDir )) Files .createDirectory (profileDir );
80
- if (!Files .exists (profileJson )) Files .createFile (profileJson );
81
-
82
- if (!Files .exists (aProfileDir )) Files .createDirectory (aProfileDir );
83
- if (!Files .exists (aProfileJson )) Files .createFile (aProfileJson );
84
-
85
- File zipFile = new File (versionsDir + "/" + gameVersion .getCodeName () + ".zip" );
86
-
87
- Utils .downloadFile (URI .create (gameVersion .getDownload ().url ).toURL (), zipFile .toPath ());
88
- Utils .extractZip (zipFile .toPath (), versionsDir );
89
-
90
- Files .copy (aProfileJson , profileJson , StandardCopyOption .REPLACE_EXISTING );
91
-
92
- //System.out.println(Utils.sha1String(zipFile.toPath()).equalsIgnoreCase(gameVersion.getDownload().sha1));
93
-
94
- aProfileJson .toFile ().delete ();
95
- aProfileDir .toFile ().delete ();
96
- zipFile .delete ();
103
+ downloadVanilla (mcDir , gameVersion );
97
104
98
105
if (InstallerHelper .createProfile .isSelected ()) {
99
106
if (launcherType == null ) {
0 commit comments