2022-01-18 12:28:54 +08:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath("com.google.code.gson:gson:2.8.1")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-20 19:18:27 +08:00
|
|
|
val jfxVersion = "17.0.2"
|
2022-01-18 12:28:54 +08:00
|
|
|
|
|
|
|
data class Platform(
|
|
|
|
val name: String,
|
|
|
|
val classifier: String,
|
|
|
|
val groupId: String = "org.openjfx",
|
2022-01-20 13:39:10 +08:00
|
|
|
val version: String = jfxVersion,
|
2022-01-18 12:28:54 +08:00
|
|
|
val unsupportedModules: List<String> = listOf()
|
|
|
|
) {
|
|
|
|
val modules: List<String> = jfxModules.filter { it !in unsupportedModules }
|
|
|
|
|
|
|
|
fun fileUrl(
|
|
|
|
module: String, classifier: String, ext: String,
|
|
|
|
repo: String = "https://repo1.maven.org/maven2"
|
|
|
|
): java.net.URL =
|
|
|
|
java.net.URL(
|
2022-01-20 13:39:10 +08:00
|
|
|
"$repo/${groupId.replace('.', '/')}/javafx-$module/$version/javafx-$module-$version-$classifier.$ext"
|
2022-01-18 12:28:54 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-12-10 22:36:14 +08:00
|
|
|
val jfxModules = listOf("base", "graphics", "controls", "media", "web")
|
2022-01-18 12:28:54 +08:00
|
|
|
val jfxMirrorRepos = listOf("https://maven.aliyun.com/repository/central")
|
|
|
|
val jfxDependenciesFile = project("HMCL").buildDir.resolve("openjfx-dependencies.json")
|
|
|
|
val jfxPlatforms = listOf(
|
|
|
|
Platform("windows-x86", "win-x86"),
|
|
|
|
Platform("windows-x86_64", "win"),
|
2022-08-31 14:20:27 +08:00
|
|
|
Platform("windows-arm64", "win", groupId = "org.glavo.hmcl.openjfx", version = "18.0.2+1-arm64", unsupportedModules = listOf("media", "web")),
|
2022-01-18 12:28:54 +08:00
|
|
|
Platform("osx-x86_64", "mac"),
|
|
|
|
Platform("osx-arm64", "mac-aarch64"),
|
|
|
|
Platform("linux-x86_64", "linux"),
|
|
|
|
Platform("linux-arm32", "linux-arm32-monocle", unsupportedModules = listOf("media", "web")),
|
|
|
|
Platform("linux-arm64", "linux-aarch64"),
|
2022-09-02 11:37:09 +08:00
|
|
|
Platform("linux-loongarch64_ow", "linux", groupId = "org.glavo.hmcl.openjfx", version = "19-ea+10-loongson64", unsupportedModules = listOf("media", "web")),
|
2022-01-18 12:28:54 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
val jfxInClasspath =
|
|
|
|
try {
|
|
|
|
Class.forName("javafx.application.Application", false, this.javaClass.classLoader)
|
|
|
|
true
|
|
|
|
} catch (ignored: Throwable) {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!jfxInClasspath && JavaVersion.current() >= JavaVersion.VERSION_11) {
|
|
|
|
val os = System.getProperty("os.name").toLowerCase().let { osName ->
|
|
|
|
when {
|
2022-01-23 19:30:21 +08:00
|
|
|
osName.contains("win") -> "windows"
|
2022-01-18 12:28:54 +08:00
|
|
|
osName.contains("mac") -> "osx"
|
|
|
|
osName.contains("linux") || osName.contains("unix") -> "linux"
|
|
|
|
else -> null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val arch = when (System.getProperty("os.arch").toLowerCase()) {
|
|
|
|
"x86_64", "x86-64", "amd64", "ia32e", "em64t", "x64" -> "x86_64"
|
|
|
|
"x86", "x86_32", "x86-32", "i386", "i486", "i586", "i686", "i86pc", "ia32", "x32" -> "x86"
|
|
|
|
"arm64", "aarch64", "armv8", "armv9" -> "arm64"
|
|
|
|
else -> null
|
|
|
|
}
|
|
|
|
|
|
|
|
if (os != null && arch != null) {
|
2022-01-23 19:30:21 +08:00
|
|
|
val platform = jfxPlatforms.find { it.name == "$os-$arch" }
|
2022-01-18 12:28:54 +08:00
|
|
|
if (platform != null) {
|
|
|
|
val groupId = platform.groupId
|
2022-01-20 13:39:10 +08:00
|
|
|
val version = platform.version
|
2022-01-18 12:28:54 +08:00
|
|
|
val classifier = platform.classifier
|
|
|
|
rootProject.subprojects {
|
|
|
|
for (module in jfxModules) {
|
2022-08-28 23:57:47 +08:00
|
|
|
dependencies.add("implementation", "$groupId:javafx-$module:$version:$classifier")
|
2022-04-29 21:23:17 +08:00
|
|
|
dependencies.add("testImplementation", "$groupId:javafx-$module:$version:$classifier")
|
2022-01-18 12:28:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.tasks.create("generateOpenJFXDependencies") {
|
|
|
|
outputs.file(jfxDependenciesFile)
|
|
|
|
|
|
|
|
doLast {
|
|
|
|
val jfxDependencies = jfxPlatforms.associate { platform ->
|
|
|
|
platform.name to platform.modules.map { module ->
|
|
|
|
mapOf(
|
|
|
|
"module" to "javafx.$module",
|
|
|
|
"groupId" to platform.groupId,
|
|
|
|
"artifactId" to "javafx-$module",
|
2022-01-20 13:39:10 +08:00
|
|
|
"version" to platform.version,
|
2022-01-18 12:28:54 +08:00
|
|
|
"classifier" to platform.classifier,
|
|
|
|
"sha1" to platform.fileUrl(module, platform.classifier, "jar.sha1").readText()
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jfxDependenciesFile.parentFile.mkdirs()
|
|
|
|
jfxDependenciesFile.writeText(
|
|
|
|
com.google.gson.GsonBuilder().setPrettyPrinting().create().toJson(jfxDependencies)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that the mirror repository caches files
|
|
|
|
rootProject.tasks.create("preTouchOpenJFXDependencies") {
|
|
|
|
doLast {
|
|
|
|
for (repo in jfxMirrorRepos) {
|
|
|
|
for (platform in jfxPlatforms) {
|
|
|
|
for (module in platform.modules) {
|
2022-01-20 19:26:17 +08:00
|
|
|
val url = platform.fileUrl(module, platform.classifier, "jar", repo = repo)
|
|
|
|
logger.quiet("Getting $url")
|
2022-01-18 12:28:54 +08:00
|
|
|
try {
|
|
|
|
url.readBytes()
|
|
|
|
} catch (e: Throwable) {
|
|
|
|
logger.warn("An exception occurred while pre touching $url", e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|