Skip to content

Commit 45938bd

Browse files
authored
Merge pull request #2 from nexia-cts/dev
add installing fabric support
2 parents ed51370 + a479383 commit 45938bd

12 files changed

+349
-24
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,8 @@ bin/
3737
.vscode/
3838

3939
### Mac OS ###
40-
.DS_Store
40+
.DS_Store
41+
42+
43+
### cache ###
44+
cache/

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sourceCompatibility = JavaVersion.VERSION_1_8
77
targetCompatibility = JavaVersion.VERSION_1_8
88

99
group = 'com.nexia'
10-
version = '1.0.1'
10+
version = '1.0.2'
1111

1212
repositories {
1313
mavenCentral()

src/main/java/com/nexia/installer/InstallerGUI.java

+19-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.nexia.installer;
22

33
import com.nexia.installer.util.InstallerHelper;
4+
import com.nexia.installer.util.fabric.FabricInstallerHelper;
45

56
import javax.swing.*;
67
import java.awt.*;
@@ -11,13 +12,18 @@
1112
public class InstallerGUI extends JFrame {
1213
public static InstallerGUI instance;
1314

15+
public JPanel vanilla;
16+
17+
public JPanel fabric;
18+
19+
public JTabbedPane pane;
20+
1421
public InstallerGUI() {
15-
InstallerHelper helper = new InstallerHelper();
16-
JPanel panel = helper.setPanel(this);
22+
this.vanilla = new InstallerHelper().setPanel(this);
23+
this.fabric = new FabricInstallerHelper().setPanel(this);
1724

1825
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
1926

20-
add(panel);
2127
instance = this;
2228
}
2329

@@ -43,14 +49,23 @@ public static void load() throws UnsupportedLookAndFeelException, ClassNotFoundE
4349
}
4450

4551
InstallerGUI gui = new InstallerGUI();
52+
53+
gui.pane = new JTabbedPane(JTabbedPane.TOP);
54+
55+
gui.pane.addTab(Main.BUNDLE.getString("installer.tab.vanilla"), gui.vanilla);
56+
gui.pane.addTab(Main.BUNDLE.getString("installer.tab.fabric"), gui.fabric);
57+
58+
gui.setContentPane(gui.pane);
59+
60+
4661
gui.updateSize(true);
4762
gui.setTitle(Main.BUNDLE.getString("installer.title"));
4863
gui.setIconImage(Main.icon);
4964
gui.setLocationRelativeTo(null);
5065
gui.setVisible(true);
5166
}
5267

53-
public void updateSize(boolean updateMinimum) {
68+
private void updateSize(boolean updateMinimum) {
5469
if (updateMinimum) setMinimumSize(null);
5570
setPreferredSize(null);
5671
pack();

src/main/java/com/nexia/installer/Main.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,13 @@ public ResourceBundle newBundle(String baseName, Locale locale, String format, C
3636

3737
public static void main(String[] args) throws UnsupportedLookAndFeelException, ClassNotFoundException, InstantiationException, IllegalAccessException {
3838

39+
os = OS.LINUX;
40+
3941
if(System.getProperty("os.name").startsWith("Windows")){
4042
os = OS.WINDOWS;
4143
System.setProperty("javax.net.ssl.trustStoreType", "WINDOWS-ROOT");
4244
}
4345

44-
if(System.getProperty("os.name").startsWith("lin"))
45-
os = OS.LINUX;
46-
4746
if(System.getProperty("os.name").startsWith("mac"))
4847
os = OS.MAC;
4948

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package com.nexia.installer.util;
2+
3+
import java.io.*;
4+
import java.net.HttpURLConnection;
5+
import java.net.URL;
6+
7+
public class HttpAPI {
8+
9+
public static String userAgent = "Mozilla/5.0 (compatible; combat-test-installer; +https://github.com/nexia-cts/combat-test-installer)";
10+
11+
public static String get(String url) {
12+
try {
13+
URL apiUrl = new URL(url);
14+
15+
HttpURLConnection connection = (HttpURLConnection) apiUrl.openConnection();
16+
17+
connection.setRequestProperty("User-Agent", userAgent);
18+
connection.setRequestMethod("GET");
19+
20+
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
21+
String line;
22+
StringBuilder response = new StringBuilder();
23+
while ((line = reader.readLine()) != null) {
24+
response.append(line);
25+
}
26+
27+
reader.close();
28+
connection.disconnect();
29+
30+
return response.toString();
31+
} catch (Exception ignored) { return null; }
32+
}
33+
}

src/main/java/com/nexia/installer/util/InstallerHelper.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public JPanel setPanel(InstallerGUI gui) {
5555
buttonInstall.addActionListener(e -> {
5656
buttonInstall.setEnabled(false);
5757
try {
58-
install();
58+
launch();
5959
} catch (IOException ex) {
6060
throw new RuntimeException(ex);
6161
}
@@ -107,7 +107,7 @@ public void addRow(Container parent, GridBagConstraints c, boolean last, String
107107
c.gridx = 0;
108108
}
109109

110-
private void install() throws IOException {
110+
public void launch() throws IOException {
111111

112112
String stringGameVersion = (String) gameVersionComboBox.getSelectedItem();
113113
VersionHandler.GameVersion gameVersion = VersionHandler.identifyGameVersion(stringGameVersion);

src/main/java/com/nexia/installer/util/InstallerUtils.java

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
package com.nexia.installer.util;
22

3+
import com.nexia.installer.InstallerGUI;
34
import com.nexia.installer.Main;
45
import com.nexia.installer.game.VersionHandler;
56

67
import javax.swing.*;
7-
import java.awt.*;
88
import java.io.File;
9-
import java.io.IOException;
109
import java.net.URI;
11-
import java.net.URISyntaxException;
1210
import java.nio.file.Files;
1311
import java.nio.file.Path;
1412
import java.nio.file.Paths;
@@ -115,7 +113,7 @@ public static void install(Path mcDir, VersionHandler.GameVersion gameVersion) {
115113
}).start();
116114
}
117115

118-
private static ProfileInstaller.LauncherType showLauncherTypeSelection() {
116+
public static ProfileInstaller.LauncherType showLauncherTypeSelection() {
119117
Object[] options = { Main.BUNDLE.getString("installer.prompt.launcher.type.xbox"), Main.BUNDLE.getString("installer.prompt.launcher.type.win32")};
120118

121119
int result = JOptionPane.showOptionDialog(null,
@@ -135,7 +133,7 @@ private static ProfileInstaller.LauncherType showLauncherTypeSelection() {
135133
return result == JOptionPane.YES_OPTION ? ProfileInstaller.LauncherType.MICROSOFT_STORE : ProfileInstaller.LauncherType.WIN32;
136134
}
137135

138-
private static void showDone(VersionHandler.GameVersion gameVersion) throws URISyntaxException, IOException {
136+
private static void showDone(VersionHandler.GameVersion gameVersion) {
139137
Object[] options = {"OK", "Install Fabric"};
140138
int result = JOptionPane.showOptionDialog(null,
141139
MessageFormat.format(Main.BUNDLE.getString("installer.prompt.install.done"), gameVersion.getVersion()),
@@ -147,6 +145,6 @@ private static void showDone(VersionHandler.GameVersion gameVersion) throws URIS
147145
options[0]
148146
);
149147

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"));
148+
if(result == JOptionPane.NO_OPTION) InstallerGUI.instance.pane.setSelectedComponent(InstallerGUI.instance.fabric);
151149
}
152150
}

src/main/java/com/nexia/installer/util/ProfileInstaller.java

+7-3
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,17 @@ private static Json createProfile(String name) {
8181
}
8282

8383
public enum LauncherType {
84-
WIN32("launcher_profiles.json"),
85-
MICROSOFT_STORE("launcher_profiles_microsoft_store.json");
84+
WIN32("win32", "launcher_profiles.json"),
85+
MICROSOFT_STORE("microsoft_store", "launcher_profiles_microsoft_store.json");
8686

8787
public final String profileJsonName;
8888

89-
LauncherType(String profileJsonName) {
89+
public final String name;
90+
91+
LauncherType(String name, String profileJsonName) {
92+
this.name = name;
9093
this.profileJsonName = profileJsonName;
9194
}
95+
9296
}
9397
}

src/main/java/com/nexia/installer/util/Utils.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class Utils {
2525
public static void extractZip(Path file, Path path) throws IOException {
2626
ZipInputStream zipIn = new ZipInputStream(Files.newInputStream(Paths.get(file.toString())));
2727
ZipEntry entry = zipIn.getNextEntry();
28-
String filePath = "";
28+
String filePath;
2929
// iterates over entries in the zip file
3030
while (entry != null) {
3131
filePath = path + File.separator + entry.getName();
@@ -136,9 +136,7 @@ public static String getProfileIcon() {
136136

137137
return "data:image/png;base64," + Base64.getEncoder().encodeToString(Arrays.copyOf(ret, offset));
138138
} catch (IOException e) {
139-
e.printStackTrace();
139+
return "furnace"; // Fallback to furnace icon if we cant load Nexia icon.
140140
}
141-
142-
return "furnace"; // Fallback to furnace icon if we cant load CTS icon.
143141
}
144142
}

0 commit comments

Comments
 (0)