Skip to content

Commit 61c8e57

Browse files
committed
Feat[bta_profile]: add the ability to install nightlies
1 parent 2401262 commit 61c8e57

File tree

3 files changed

+31
-12
lines changed

3 files changed

+31
-12
lines changed

app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/modloaders/BTAUtils.java

+26-12
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
import java.util.ListIterator;
1717

1818
public class BTAUtils {
19-
private static final String BTA_CLIENT_URL = "https://downloads.betterthanadventure.net/bta-client/release/%s/client.jar";
20-
private static final String BTA_ICON_URL = "https://downloads.betterthanadventure.net/bta-client/release/%s/auto/%s.png";
19+
private static final String BTA_CLIENT_URL = "https://downloads.betterthanadventure.net/bta-client/%s/%s/client.jar";
20+
private static final String BTA_ICON_URL = "https://downloads.betterthanadventure.net/bta-client/%s/%s/auto/%s.png";
2121
private static final List<String> BTA_TESTED_VERSIONS = new ArrayList<>();
2222
static {
2323
BTA_TESTED_VERSIONS.add("v7.3");
@@ -27,26 +27,33 @@ public class BTAUtils {
2727
BTA_TESTED_VERSIONS.add("v7.1");
2828
}
2929

30-
private static String getIconUrl(String version) {
31-
String versionUnderscore = version.replace('.','_');
32-
return String.format(BTA_ICON_URL, version, versionUnderscore);
30+
private static String getIconUrl(String version, String buildType) {
31+
String iconName = version.replace('.','_');
32+
if(buildType.equals("nightly")) iconName = "v"+iconName;
33+
return String.format(BTA_ICON_URL, buildType, version, iconName);
3334
}
3435

35-
private static List<BTAVersion> createVersionList(List<String> versionStrings) {
36+
private static List<BTAVersion> createVersionList(List<String> versionStrings, String buildType) {
3637
ListIterator<String> iterator = versionStrings.listIterator(versionStrings.size());
3738
ArrayList<BTAVersion> btaVersions = new ArrayList<>(versionStrings.size());
3839
while(iterator.hasPrevious()) {
3940
String version = iterator.previous();
41+
if(version == null) continue;
4042
btaVersions.add(new BTAVersion(
4143
version,
42-
String.format(BTA_CLIENT_URL, version),
43-
getIconUrl(version)
44+
String.format(BTA_CLIENT_URL, buildType, version),
45+
getIconUrl(version, buildType)
4446
));
4547
}
4648
btaVersions.trimToSize();
4749
return btaVersions;
4850
}
4951

52+
private static List<BTAVersion> processNightliesJson(String nightliesInfo) throws JsonParseException {
53+
BTAVersionsManifest manifest = Tools.GLOBAL_GSON.fromJson(nightliesInfo, BTAVersionsManifest.class);
54+
return createVersionList(manifest.versions, "nightly");
55+
}
56+
5057
private static BTAVersionList processReleasesJson(String releasesInfo) throws JsonParseException {
5158
BTAVersionsManifest manifest = Tools.GLOBAL_GSON.fromJson(releasesInfo, BTAVersionsManifest.class);
5259
List<String> stringVersions = manifest.versions;
@@ -62,16 +69,21 @@ private static BTAVersionList processReleasesJson(String releasesInfo) throws Js
6269
}
6370

6471
return new BTAVersionList(
65-
createVersionList(testedVersions),
66-
createVersionList(untestedVersions)
72+
createVersionList(testedVersions, "release"),
73+
createVersionList(untestedVersions, "release"),
74+
null
6775
);
6876
}
6977

7078
public static BTAVersionList downloadVersionList() throws IOException {
7179
try {
72-
return DownloadUtils.downloadStringCached(
80+
BTAVersionList releases = DownloadUtils.downloadStringCached(
7381
"https://downloads.betterthanadventure.net/bta-client/release/versions.json",
7482
"bta_releases", BTAUtils::processReleasesJson);
83+
List<BTAVersion> nightlies = DownloadUtils.downloadStringCached(
84+
"https://downloads.betterthanadventure.net/bta-client/nightly/versions.json",
85+
"bta_nightlies", BTAUtils::processNightliesJson);
86+
return new BTAVersionList(releases.testedVersions, releases.untestedVersions, nightlies);
7587
}catch (DownloadUtils.ParseException e) {
7688
Log.e("BTAUtils", "Failed to process json", e);
7789
return null;
@@ -100,10 +112,12 @@ public BTAVersion(String versionName, String downloadUrl, String iconUrl) {
100112
public static class BTAVersionList {
101113
public final List<BTAVersion> testedVersions;
102114
public final List<BTAVersion> untestedVersions;
115+
public final List<BTAVersion> nightlyVersions;
103116

104-
public BTAVersionList(List<BTAVersion> mTestedVersions, List<BTAVersion> mUntestedVersions) {
117+
public BTAVersionList(List<BTAVersion> mTestedVersions, List<BTAVersion> mUntestedVersions, List<BTAVersion> nightlyVersions) {
105118
this.testedVersions = mTestedVersions;
106119
this.untestedVersions = mUntestedVersions;
120+
this.nightlyVersions = nightlyVersions;
107121
}
108122
}
109123
}

app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/modloaders/BTAVersionListAdapter.java

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ public BTAVersionListAdapter(BTAUtils.BTAVersionList versionList, LayoutInflater
3131
mGroupNames.add(context.getString(R.string.bta_installer_untested_versions));
3232
mGroups.add(versionList.untestedVersions);
3333
}
34+
if(!versionList.nightlyVersions.isEmpty()) {
35+
mGroupNames.add(context.getString(R.string.bta_installer_nightly_versions));
36+
mGroups.add(versionList.nightlyVersions);
37+
}
3438
mGroupNames.trimToSize();
3539
mGroups.trimToSize();
3640
}

app_pojavlauncher/src/main/res/values/strings.xml

+1
Original file line numberDiff line numberDiff line change
@@ -428,4 +428,5 @@
428428
<string name="select_bta_version">Select \"Better than Adventure!\" version</string>
429429
<string name="bta_installer_available_versions">Supported BTA versions</string>
430430
<string name="bta_installer_untested_versions">Untested BTA versions</string>
431+
<string name="bta_installer_nightly_versions">Nightly BTA versions</string>
431432
</resources>

0 commit comments

Comments
 (0)