337853cdfa
The mod does compile and render, however distance LODs don't generate or render correctly and there are other problems as well.
218 lines
8.4 KiB
Groovy
218 lines
8.4 KiB
Groovy
buildscript {
|
|
repositories {
|
|
maven { url = 'https://files.minecraftforge.net/maven' }
|
|
jcenter()
|
|
mavenCentral()
|
|
// potential replacement in case of problems:
|
|
// https://dist.creeper.host/Sponge/maven
|
|
maven { url = 'https://repo.spongepowered.org/maven/' }
|
|
// used to download and compile dependencies from git repos
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
dependencies {
|
|
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
|
|
classpath group: 'org.spongepowered', name: 'mixingradle', version: '0.7-SNAPSHOT'
|
|
}
|
|
}
|
|
apply plugin: 'net.minecraftforge.gradle'
|
|
apply plugin: 'org.spongepowered.mixin'
|
|
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'maven-publish'
|
|
|
|
version = 'a1.3.1'
|
|
group = 'com.backsun.lod'
|
|
archivesBaseName = 'lod_1.16.5'
|
|
|
|
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
|
|
|
|
println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch'))
|
|
minecraft {
|
|
// The mappings can be changed at any time, and must be in the following format.
|
|
// snapshot_YYYYMMDD Snapshot are built nightly.
|
|
// stable_# Stables are built at the discretion of the MCP team.
|
|
// Use non-default mappings at your own risk. they may not always work.
|
|
// Simply re-run your setup task after changing the mappings to update your workspace.
|
|
mappings channel: 'official', version: '1.16.5'
|
|
|
|
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
|
|
|
|
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
|
|
|
|
// Default run configurations.
|
|
// These can be tweaked, removed, or duplicated as needed.
|
|
runs {
|
|
client {
|
|
workingDirectory project.file('run')
|
|
arg "-mixin.config=lod.mixins.json"
|
|
|
|
// Recommended logging data for a userdev environment
|
|
// The markers can be changed as needed.
|
|
// "SCAN": For mods scan.
|
|
// "REGISTRIES": For firing of registry events.
|
|
// "REGISTRYDUMP": For getting the contents of all registries.
|
|
property 'forge.logging.markers', 'REGISTRIES'
|
|
|
|
// Recommended logging level for the console
|
|
// You can set various levels here.
|
|
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
|
|
property 'forge.logging.console.level', 'debug'
|
|
|
|
mods {
|
|
examplemod {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
|
|
server {
|
|
workingDirectory project.file('run')
|
|
arg "-mixin.config=lod.mixins.json"
|
|
|
|
// Recommended logging data for a userdev environment
|
|
// The markers can be changed as needed.
|
|
// "SCAN": For mods scan.
|
|
// "REGISTRIES": For firing of registry events.
|
|
// "REGISTRYDUMP": For getting the contents of all registries.
|
|
property 'forge.logging.markers', 'REGISTRIES'
|
|
|
|
// Recommended logging level for the console
|
|
// You can set various levels here.
|
|
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
|
|
property 'forge.logging.console.level', 'debug'
|
|
|
|
mods {
|
|
examplemod {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
|
|
data {
|
|
workingDirectory project.file('run')
|
|
|
|
// Recommended logging data for a userdev environment
|
|
// The markers can be changed as needed.
|
|
// "SCAN": For mods scan.
|
|
// "REGISTRIES": For firing of registry events.
|
|
// "REGISTRYDUMP": For getting the contents of all registries.
|
|
property 'forge.logging.markers', 'REGISTRIES'
|
|
|
|
// Recommended logging level for the console
|
|
// You can set various levels here.
|
|
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
|
|
property 'forge.logging.console.level', 'debug'
|
|
|
|
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
|
|
args '--mod', 'lod', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
|
|
|
|
mods {
|
|
examplemod {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Include resources generated by data generators.
|
|
sourceSets.main.resources { srcDir 'src/generated/resources' }
|
|
|
|
// this is required so that we can use
|
|
// jitpack in the dependencies section below
|
|
repositories {
|
|
mavenCentral()
|
|
// used to download and compile dependencies from git repos
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
dependencies {
|
|
// Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed
|
|
// that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied.
|
|
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
|
|
minecraft 'net.minecraftforge:forge:1.16.5-36.1.0'
|
|
|
|
implementation ('com.github.KaptainWutax:BiomeUtils:-SNAPSHOT'){
|
|
transitive = false
|
|
}
|
|
implementation ('com.github.KaptainWutax:SeedUtils:-SNAPSHOT'){
|
|
transitive = false
|
|
}
|
|
implementation ('com.github.KaptainWutax:MCUtils:-SNAPSHOT'){
|
|
transitive = false
|
|
}
|
|
// not working
|
|
implementation ('com.github.KaptainWutax:NoiseUtils:-SNAPSHOT'){
|
|
transitive = false
|
|
}
|
|
|
|
// these were added to hopefully allow for cloning
|
|
// configuredFeatures to allow for safe
|
|
// multi threaded feature generation. Sadly I couldn't find
|
|
// a way to duplicate lambda functions (which features use)
|
|
// so for now I'm not sure what to do.
|
|
//implementation 'io.github.kostaskougios:cloning:1.10.3'
|
|
//
|
|
//implementation ('com.esotericsoftware:kryo:5.1.1') {
|
|
// exclude group: "org.objenesis"
|
|
//}
|
|
//implementation 'org.objenesis:objenesis:3.2'
|
|
|
|
|
|
// You may put jars on which you depend on in ./libs or you may define them like so..
|
|
// compile "some.group:artifact:version:classifier"
|
|
// compile "some.group:artifact:version"
|
|
|
|
// Real examples
|
|
// compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env
|
|
// compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env
|
|
|
|
// The 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime.
|
|
// provided 'com.mod-buildcraft:buildcraft:6.0.8:dev'
|
|
|
|
// These dependencies get remapped to your current MCP mappings
|
|
// deobf 'com.mod-buildcraft:buildcraft:6.0.8:dev'
|
|
|
|
// For more info...
|
|
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
|
|
// http://www.gradle.org/docs/current/userguide/dependency_management.html
|
|
|
|
}
|
|
|
|
// Example for how to get properties into the manifest for reading by the runtime..
|
|
jar {
|
|
manifest {
|
|
attributes([
|
|
"Specification-Title": "Level of Detail",
|
|
"Specification-Version": "1", // We are version 1 of ourselves
|
|
"Implementation-Title": project.name,
|
|
"Implementation-Version": "{version}",
|
|
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
|
|
"MixinConfigs": "lod.mixins.json",
|
|
])
|
|
}
|
|
}
|
|
|
|
// Example configuration to allow publishing using the maven-publish task
|
|
// This is the preferred method to reobfuscate your jar file
|
|
jar.finalizedBy('reobfJar')
|
|
// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing
|
|
//publish.dependsOn('reobfJar')
|
|
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
artifact jar
|
|
}
|
|
}
|
|
repositories {
|
|
maven {
|
|
url "file:///${project.projectDir}/mcmodsrepo"
|
|
}
|
|
}
|
|
}
|
|
|
|
mixin {
|
|
add sourceSets.main, "lod.refmap.json"
|
|
}
|