2023-12-06 04:35:33 +01:00
|
|
|
import io.papermc.paperweight.tasks.BaseTask
|
|
|
|
import io.papermc.paperweight.util.*
|
2021-12-31 23:28:13 +01:00
|
|
|
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
|
|
|
|
import org.gradle.api.tasks.testing.logging.TestLogEvent
|
2023-12-06 04:35:33 +01:00
|
|
|
import java.io.ByteArrayOutputStream
|
|
|
|
import java.nio.file.Path
|
2023-12-06 05:46:41 +01:00
|
|
|
import java.util.regex.Pattern
|
2023-12-06 04:35:33 +01:00
|
|
|
import kotlin.io.path.*
|
2021-12-30 22:52:30 +01:00
|
|
|
|
2021-06-11 09:45:34 +02:00
|
|
|
plugins {
|
|
|
|
java
|
2021-08-18 00:11:04 +02:00
|
|
|
`maven-publish`
|
2023-04-26 19:07:13 +02:00
|
|
|
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
|
2023-11-22 06:27:50 +01:00
|
|
|
id("io.papermc.paperweight.core") version "1.5.10"
|
2021-06-11 09:45:34 +02:00
|
|
|
}
|
|
|
|
|
2021-08-01 09:55:02 +02:00
|
|
|
allprojects {
|
2021-06-11 09:45:34 +02:00
|
|
|
apply(plugin = "java")
|
2021-08-18 00:11:04 +02:00
|
|
|
apply(plugin = "maven-publish")
|
2021-06-11 09:45:34 +02:00
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2021-11-22 09:26:14 +01:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
2021-06-11 09:45:34 +02:00
|
|
|
}
|
|
|
|
}
|
2021-08-01 09:55:02 +02:00
|
|
|
}
|
|
|
|
|
2022-05-20 17:12:30 +02:00
|
|
|
val paperMavenPublicUrl = "https://repo.papermc.io/repository/maven-public/"
|
2022-04-14 04:58:48 +02:00
|
|
|
|
2021-08-01 09:55:02 +02:00
|
|
|
subprojects {
|
2021-06-21 17:27:46 +02:00
|
|
|
tasks.withType<JavaCompile> {
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
2021-11-22 09:26:14 +01:00
|
|
|
options.release.set(17)
|
2021-06-11 09:45:34 +02:00
|
|
|
}
|
2021-06-21 17:27:46 +02:00
|
|
|
tasks.withType<Javadoc> {
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
}
|
|
|
|
tasks.withType<ProcessResources> {
|
|
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
|
|
}
|
2021-12-30 22:52:30 +01:00
|
|
|
tasks.withType<Test> {
|
|
|
|
testLogging {
|
|
|
|
showStackTraces = true
|
|
|
|
exceptionFormat = TestExceptionFormat.FULL
|
|
|
|
events(TestLogEvent.STANDARD_OUT)
|
|
|
|
}
|
|
|
|
}
|
2021-06-11 09:45:34 +02:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2022-04-14 04:58:48 +02:00
|
|
|
maven(paperMavenPublicUrl)
|
2021-06-11 09:45:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-07 18:36:19 +02:00
|
|
|
val spigotDecompiler: Configuration by configurations.creating
|
|
|
|
|
2021-06-11 09:45:34 +02:00
|
|
|
repositories {
|
2021-06-13 05:18:50 +02:00
|
|
|
mavenCentral()
|
2022-04-14 04:58:48 +02:00
|
|
|
maven(paperMavenPublicUrl) {
|
2022-04-07 18:36:19 +02:00
|
|
|
content {
|
|
|
|
onlyForConfigurations(
|
|
|
|
configurations.paperclip.name,
|
|
|
|
spigotDecompiler.name,
|
|
|
|
)
|
|
|
|
}
|
2021-06-11 09:45:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-12-05 18:20:55 +01:00
|
|
|
paramMappings("net.fabricmc:yarn:1.20.3+build.1:mergedv2")
|
2023-11-05 04:33:04 +01:00
|
|
|
remapper("net.fabricmc:tiny-remapper:0.8.10:fat")
|
2023-03-04 20:01:07 +01:00
|
|
|
decompiler("net.minecraftforge:forgeflower:2.0.627.2")
|
2022-06-07 18:52:56 +02:00
|
|
|
spigotDecompiler("io.papermc:patched-spigot-fernflower:0.1+build.6")
|
2023-03-20 06:18:33 +01:00
|
|
|
paperclip("io.papermc:paperclip:3.0.3")
|
2021-06-11 09:45:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
paperweight {
|
2021-06-15 06:17:16 +02:00
|
|
|
minecraftVersion.set(providers.gradleProperty("mcVersion"))
|
2021-11-26 07:08:46 +01:00
|
|
|
serverProject.set(project(":paper-server"))
|
2021-06-11 09:45:34 +02:00
|
|
|
|
2022-04-14 04:58:48 +02:00
|
|
|
paramMappingsRepo.set(paperMavenPublicUrl)
|
|
|
|
remapRepo.set(paperMavenPublicUrl)
|
|
|
|
decompileRepo.set(paperMavenPublicUrl)
|
2021-11-05 01:23:06 +01:00
|
|
|
|
2022-04-07 18:36:19 +02:00
|
|
|
craftBukkit {
|
|
|
|
fernFlowerJar.set(layout.file(spigotDecompiler.elements.map { it.single().asFile }))
|
|
|
|
}
|
|
|
|
|
2021-06-11 09:45:34 +02:00
|
|
|
paper {
|
2021-06-20 09:47:14 +02:00
|
|
|
spigotApiPatchDir.set(layout.projectDirectory.dir("patches/api"))
|
|
|
|
spigotServerPatchDir.set(layout.projectDirectory.dir("patches/server"))
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-06-20 09:47:14 +02:00
|
|
|
mappingsPatch.set(layout.projectDirectory.file("build-data/mappings-patch.tiny"))
|
|
|
|
reobfMappingsPatch.set(layout.projectDirectory.file("build-data/reobf-mappings-patch.tiny"))
|
2021-06-11 09:45:34 +02:00
|
|
|
|
2021-06-27 05:11:45 +02:00
|
|
|
reobfPackagesToFix.addAll(
|
|
|
|
"co.aikar.timings",
|
|
|
|
"com.destroystokyo.paper",
|
|
|
|
"com.mojang",
|
|
|
|
"io.papermc.paper",
|
2021-12-02 08:21:14 +01:00
|
|
|
"ca.spottedleaf",
|
2021-06-27 05:11:45 +02:00
|
|
|
"net.kyori.adventure.bossbar",
|
|
|
|
"net.minecraft",
|
|
|
|
"org.bukkit.craftbukkit",
|
2021-12-02 08:21:14 +01:00
|
|
|
"org.spigotmc",
|
2021-06-27 05:11:45 +02:00
|
|
|
)
|
2021-06-11 09:45:34 +02:00
|
|
|
}
|
|
|
|
}
|
2021-06-19 01:38:26 +02:00
|
|
|
|
2021-08-18 00:11:04 +02:00
|
|
|
tasks.generateDevelopmentBundle {
|
|
|
|
apiCoordinates.set("io.papermc.paper:paper-api")
|
|
|
|
mojangApiCoordinates.set("io.papermc.paper:paper-mojangapi")
|
2021-11-05 01:23:06 +01:00
|
|
|
libraryRepositories.addAll(
|
|
|
|
"https://repo.maven.apache.org/maven2/",
|
2022-04-22 04:27:56 +02:00
|
|
|
paperMavenPublicUrl,
|
2021-08-18 00:11:04 +02:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
2022-02-21 21:44:17 +01:00
|
|
|
if (project.providers.gradleProperty("publishDevBundle").isPresent) {
|
2021-08-18 00:11:04 +02:00
|
|
|
publications.create<MavenPublication>("devBundle") {
|
|
|
|
artifact(tasks.generateDevelopmentBundle) {
|
|
|
|
artifactId = "dev-bundle"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
publishing {
|
|
|
|
repositories {
|
2022-05-20 17:12:30 +02:00
|
|
|
maven("https://repo.papermc.io/repository/maven-snapshots/") {
|
2021-08-18 00:11:04 +02:00
|
|
|
name = "paperSnapshots"
|
|
|
|
credentials(PasswordCredentials::class)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-19 01:38:26 +02:00
|
|
|
tasks.register("printMinecraftVersion") {
|
|
|
|
doLast {
|
2021-06-20 09:47:14 +02:00
|
|
|
println(providers.gradleProperty("mcVersion").get().trim())
|
2021-06-19 01:38:26 +02:00
|
|
|
}
|
|
|
|
}
|
2022-03-04 10:41:03 +01:00
|
|
|
|
|
|
|
tasks.register("printPaperVersion") {
|
|
|
|
doLast {
|
|
|
|
println(project.version)
|
|
|
|
}
|
|
|
|
}
|
2023-12-06 04:35:33 +01:00
|
|
|
|
|
|
|
// see gradle.properties
|
|
|
|
if (providers.gradleProperty("updatingMinecraft").getOrElse("false").toBoolean()) {
|
|
|
|
tasks.collectAtsFromPatches {
|
|
|
|
extraPatchDir.set(layout.projectDirectory.dir("patches/unapplied/server"))
|
|
|
|
}
|
|
|
|
tasks.withType<io.papermc.paperweight.tasks.RebuildGitPatches>().configureEach {
|
|
|
|
filterPatches.set(false)
|
|
|
|
}
|
|
|
|
tasks.register("continueServerUpdate", RebasePatches::class) {
|
|
|
|
projectDir = project.projectDir
|
|
|
|
appliedPatches = file("patches/server")
|
|
|
|
unappliedPatches = file("patches/unapplied/server")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@UntrackedTask(because = "Does not make sense to track state")
|
|
|
|
abstract class RebasePatches : BaseTask() {
|
|
|
|
@get:Internal
|
|
|
|
abstract val projectDir: DirectoryProperty
|
|
|
|
|
|
|
|
@get:InputFiles
|
|
|
|
abstract val appliedPatches: DirectoryProperty
|
|
|
|
|
|
|
|
@get:InputFiles
|
|
|
|
abstract val unappliedPatches: DirectoryProperty
|
|
|
|
|
|
|
|
private fun unapplied(): List<Path> =
|
|
|
|
unappliedPatches.path.listDirectoryEntries("*.patch").sortedBy { it.name }
|
|
|
|
|
2023-12-06 05:46:41 +01:00
|
|
|
private fun appliedLoc(patch: Path): Path = appliedPatches.path.resolve(unappliedPatches.path.relativize(patch))
|
|
|
|
|
|
|
|
companion object {
|
|
|
|
val regex = Pattern.compile("Patch failed at ([0-9]{4}) (.*)")
|
|
|
|
const val subjectPrefix = "Subject: [PATCH] "
|
|
|
|
}
|
|
|
|
|
2023-12-06 04:35:33 +01:00
|
|
|
@TaskAction
|
|
|
|
fun run() {
|
2023-12-06 05:46:41 +01:00
|
|
|
val unapplied = unapplied()
|
|
|
|
for (patch in unapplied) {
|
|
|
|
patch.copyTo(appliedLoc(patch))
|
|
|
|
}
|
2023-12-06 04:35:33 +01:00
|
|
|
|
2023-12-06 05:46:41 +01:00
|
|
|
val out = ByteArrayOutputStream()
|
|
|
|
val proc = ProcessBuilder()
|
|
|
|
.directory(projectDir.path)
|
|
|
|
.command("./gradlew", "applyServerPatches")
|
|
|
|
.redirectErrorStream(true)
|
|
|
|
.start()
|
|
|
|
|
|
|
|
redirect(proc.inputStream, out)
|
|
|
|
|
|
|
|
val exit = proc.waitFor()
|
|
|
|
|
|
|
|
if (exit != 0) {
|
|
|
|
val outStr = String(out.toByteArray())
|
|
|
|
val matcher = regex.matcher(outStr)
|
|
|
|
if (!matcher.find()) error("Could not determine failure point")
|
|
|
|
val failedSubjectFragment = matcher.group(2)
|
|
|
|
val failed = unapplied.single { p ->
|
|
|
|
p.useLines { lines ->
|
|
|
|
val subjectLine = lines.single { it.startsWith(subjectPrefix) }
|
|
|
|
.substringAfter(subjectPrefix)
|
|
|
|
subjectLine.startsWith(failedSubjectFragment)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete successful & failure point from unapplied patches dir
|
|
|
|
for (path in unapplied) {
|
|
|
|
path.deleteIfExists()
|
|
|
|
if (path == failed) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2023-12-06 04:35:33 +01:00
|
|
|
|
2023-12-06 05:46:41 +01:00
|
|
|
// delete failed from patches dir
|
|
|
|
var started = false
|
|
|
|
for (path in unapplied) {
|
|
|
|
if (path == failed) {
|
|
|
|
started = true
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if (started) {
|
|
|
|
appliedLoc(path).deleteIfExists()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply again to reset the am session (so it ends on the failed patch, to allow us to rebuild after fixing it)
|
|
|
|
val apply2 = ProcessBuilder()
|
2023-12-06 04:35:33 +01:00
|
|
|
.directory(projectDir.path)
|
|
|
|
.command("./gradlew", "applyServerPatches")
|
|
|
|
.redirectErrorStream(true)
|
|
|
|
.start()
|
|
|
|
|
2023-12-06 05:46:41 +01:00
|
|
|
redirect(apply2.inputStream, System.out)
|
2023-12-06 04:35:33 +01:00
|
|
|
|
2023-12-06 05:46:41 +01:00
|
|
|
logger.lifecycle(outStr)
|
|
|
|
logger.lifecycle("Patch failed at $failed; See Git output above.")
|
|
|
|
} else {
|
|
|
|
unapplied.forEach { it.deleteIfExists() }
|
|
|
|
logger.lifecycle("All patches applied!")
|
2023-12-06 04:35:33 +01:00
|
|
|
}
|
2023-12-06 05:46:41 +01:00
|
|
|
|
|
|
|
val git = Git(projectDir.path)
|
|
|
|
git("add", appliedPatches.path.toString() + "/*").runSilently()
|
|
|
|
git("add", unappliedPatches.path.toString() + "/*").runSilently()
|
2023-12-06 04:35:33 +01:00
|
|
|
}
|
|
|
|
}
|