forked from IrisShaders/Iris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
261 lines (213 loc) · 8.19 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
import org.ajoberstar.grgit.Grgit
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
object Constants {
// https://fabricmc.net/develop/
const val MINECRAFT_VERSION: String = "1.20.4"
const val FABRIC_LOADER_VERSION: String = "0.15.6"
const val FABRIC_API_VERSION: String = "0.96.0+1.20.4"
// https://semver.org/
const val MOD_VERSION: String = "1.7.2"
const val CUSTOM_SODIUM: Boolean = false
const val CUSTOM_SODIUM_NAME: String = ""
const val IS_SHARED_BETA: Boolean = false
const val ACTIVATE_RENDERDOC: Boolean = false
const val BETA_TAG: String = "DH Support"
const val BETA_VERSION = 4
const val SODIUM_VERSION: String = "mc1.20.4-0.5.8"
}
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = uri("https://api.modrinth.com/maven")
}
}
filter {
includeGroup("maven.modrinth")
}
}
maven("https://maven.covers1624.net/")
}
plugins {
// Unlike most projects, we choose to pin the specific version of Loom.
// This prevents a lot of issues where the build script can fail randomly because the Fabric Maven server
// is not reachable for some reason, and it makes builds much more reproducible. Observation also shows that it
// really helps to improve startup times on slow connections.
id("fabric-loom") version "1.5.7"
id("org.ajoberstar.grgit") version "5.2.2"
id("com.github.gmazzo.buildconfig") version "5.3.5"
}
base {
archivesName = "iris"
group = "net.irisshaders"
version = createVersionString()
}
loom {
runs {
create("clientWithQuickplay") {
client()
isIdeConfigGenerated = true
programArgs("--launch_target", "net.fabricmc.loader.impl.launch.knot.KnotClient")
mainClass.set("net.covers1624.devlogin.DevLogin")
projectDir.resolve("run").resolve("mods").resolve(Constants.MINECRAFT_VERSION).mkdirs()
vmArgs("-Dfabric.modsFolder=" + projectDir.resolve("run").resolve("mods").resolve(Constants.MINECRAFT_VERSION).absolutePath)
programArgs("--quickPlaySingleplayer", "World For " + Constants.MINECRAFT_VERSION)
if (Constants.ACTIVATE_RENDERDOC && DefaultNativePlatform.getCurrentOperatingSystem().isLinux) {
environmentVariable("LD_PRELOAD", "/usr/lib/librenderdoc.so")
}
}
}
mixin {
useLegacyMixinAp = false
}
accessWidenerPath = file("src/main/resources/iris.accesswidener")
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
sourceSets {
val main = getByName("main")
val test = getByName("test")
val headers = create("headers")
create("desktop")
val vendored = create("vendored")
val sodiumCompatibility = create("sodiumCompatibility")
headers.apply {
java {
compileClasspath += main.compileClasspath
}
}
test.apply {
java {
compileClasspath += main.compileClasspath
compileClasspath += main.output
}
}
vendored.apply {
java {
compileClasspath += main.compileClasspath
}
}
sodiumCompatibility.apply {
java {
compileClasspath += main.compileClasspath
compileClasspath += main.output
}
}
main.apply {
java {
compileClasspath += headers.output
compileClasspath += vendored.output
runtimeClasspath += vendored.output
runtimeClasspath += sodiumCompatibility.output
}
}
}
buildConfig {
className("BuildConfig") // forces the class name. Defaults to 'BuildConfig'
packageName("net.irisshaders.iris") // forces the package. Defaults to '${project.group}'
useJavaOutput()
buildConfigField("IS_SHARED_BETA", Constants.IS_SHARED_BETA)
buildConfigField("ACTIVATE_RENDERDOC", Constants.ACTIVATE_RENDERDOC)
buildConfigField("BETA_TAG", Constants.BETA_TAG)
buildConfigField("BETA_VERSION", Constants.BETA_VERSION)
sourceSets.getByName("desktop") {
buildConfigField("IS_SHARED_BETA", Constants.IS_SHARED_BETA)
}
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
dependencies {
minecraft(group = "com.mojang", name = "minecraft", version = Constants.MINECRAFT_VERSION)
mappings(loom.officialMojangMappings())
modImplementation(group = "net.fabricmc", name = "fabric-loader", version = Constants.FABRIC_LOADER_VERSION)
localRuntime("net.covers1624:DevLogin:0.1.0.5")
include("org.antlr:antlr4-runtime:4.13.1")
modImplementation("org.antlr:antlr4-runtime:4.13.1")
include("io.github.douira:glsl-transformer:2.0.1")
modImplementation("io.github.douira:glsl-transformer:2.0.1")
include("org.anarres:jcpp:1.4.14")
modImplementation("org.anarres:jcpp:1.4.14")
if (Constants.CUSTOM_SODIUM) {
modImplementation(files(projectDir.resolve("custom_sodium").resolve(Constants.CUSTOM_SODIUM_NAME)))
} else {
modImplementation("maven.modrinth", "sodium", Constants.SODIUM_VERSION)
}
// Sodium dependencies
modRuntimeOnly(fabricApi.module("fabric-rendering-fluids-v1", Constants.FABRIC_API_VERSION))
modRuntimeOnly(fabricApi.module("fabric-rendering-data-attachment-v1", Constants.FABRIC_API_VERSION))
modRuntimeOnly(fabricApi.module("fabric-resource-loader-v0", Constants.FABRIC_API_VERSION))
modRuntimeOnly(fabricApi.module("fabric-block-view-api-v2", Constants.FABRIC_API_VERSION))
modCompileOnly(files(projectDir.resolve("DHApi.jar")))
fun addEmbeddedFabricModule(name: String) {
val module = fabricApi.module(name, Constants.FABRIC_API_VERSION)
modImplementation(module)
include(module)
}
// Fabric API modules
addEmbeddedFabricModule("fabric-api-base")
addEmbeddedFabricModule("fabric-key-binding-api-v1")
}
tasks {
runClient {
if (Constants.ACTIVATE_RENDERDOC && DefaultNativePlatform.getCurrentOperatingSystem().isLinux) {
environment("LD_PRELOAD", "/usr/lib/librenderdoc.so")
}
}
getByName<JavaCompile>("compileDesktopJava") {
sourceCompatibility = JavaVersion.VERSION_1_8.toString()
targetCompatibility = JavaVersion.VERSION_1_8.toString()
}
jar {
from("${rootProject.projectDir}/LICENSE")
duplicatesStrategy = DuplicatesStrategy.INCLUDE
val sodiumCompatibility = sourceSets.getByName("sodiumCompatibility")
from(sodiumCompatibility.output)
val vendored = sourceSets.getByName("vendored")
from(vendored.output)
val desktop = sourceSets.getByName("desktop")
from(desktop.output)
manifest.attributes["Main-Class"] = "net.irisshaders.iris.LaunchWarn"
}
processResources {
inputs.property("version", project.version)
filesMatching("fabric.mod.json") {
expand(mapOf("version" to project.version))
}
}
}
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
fun createVersionString(): String {
val builder = StringBuilder()
val isReleaseBuild = System.getProperty("build.release") != null
val buildId = System.getenv("GITHUB_RUN_NUMBER")
if (isReleaseBuild) {
builder.append(Constants.MOD_VERSION)
} else {
builder.append(Constants.MOD_VERSION.substringBefore('-'))
builder.append("-snapshot")
}
builder.append("+mc").append(Constants.MINECRAFT_VERSION)
if (!isReleaseBuild) {
val open = Grgit.open {
dir = rootDir
}
if (buildId != null) {
builder.append("-build.${buildId}")
} else if (open == null) {
builder.append("-local")
} else {
builder.append("-" + open.head().abbreviatedId + (if (!open.status().isClean) "-dirty" else ""))
}
}
return builder.toString()
}