2018-10-08 05:26:46 +05:30
|
|
|
import java.util.jar.JarEntry
|
|
|
|
import java.util.jar.JarFile
|
|
|
|
import java.util.jar.JarOutputStream
|
|
|
|
|
2018-08-08 08:46:53 +05:30
|
|
|
/*
|
|
|
|
* This file is part of Baritone.
|
|
|
|
*
|
|
|
|
* Baritone is free software: you can redistribute it and/or modify
|
2018-09-18 03:41:40 +05:30
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
2018-08-08 08:46:53 +05:30
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2018-08-08 09:45:22 +05:30
|
|
|
* Baritone is distributed in the hope that it will be useful,
|
2018-08-08 08:46:53 +05:30
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2018-09-18 03:41:40 +05:30
|
|
|
* GNU Lesser General Public License for more details.
|
2018-08-08 08:46:53 +05:30
|
|
|
*
|
2018-09-18 03:41:40 +05:30
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
2018-08-08 08:46:53 +05:30
|
|
|
* along with Baritone. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-08-01 22:39:39 +05:30
|
|
|
group 'baritone'
|
2018-10-06 04:12:02 +05:30
|
|
|
version '0.0.6'
|
2018-08-01 22:39:39 +05:30
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
name = 'forge'
|
|
|
|
url = 'http://files.minecraftforge.net/maven'
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = 'SpongePowered'
|
|
|
|
url = 'http://repo.spongepowered.org/maven'
|
|
|
|
}
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
|
|
|
|
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
2018-09-05 04:38:29 +05:30
|
|
|
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
|
|
|
|
apply plugin: 'org.spongepowered.mixin'
|
2018-08-01 22:39:39 +05:30
|
|
|
|
|
|
|
sourceCompatibility = targetCompatibility = '1.8'
|
|
|
|
compileJava {
|
|
|
|
sourceCompatibility = targetCompatibility = '1.8'
|
|
|
|
}
|
|
|
|
|
2018-09-05 05:18:00 +05:30
|
|
|
sourceSets {
|
|
|
|
launch {
|
|
|
|
compileClasspath += main.compileClasspath + main.runtimeClasspath + main.output
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-01 22:39:39 +05:30
|
|
|
minecraft {
|
|
|
|
version = '1.12.2'
|
|
|
|
mappings = 'snapshot_20180731'
|
2018-08-01 23:35:04 +05:30
|
|
|
tweakClass = 'baritone.launch.BaritoneTweaker'
|
2018-08-01 22:39:39 +05:30
|
|
|
runDir = 'run'
|
2018-08-01 23:35:04 +05:30
|
|
|
makeObfSourceJar = false
|
2018-08-01 22:39:39 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
|
|
|
|
maven {
|
|
|
|
name = 'spongepowered-repo'
|
|
|
|
url = 'http://repo.spongepowered.org/maven/'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-09-05 05:18:00 +05:30
|
|
|
runtime launchCompile('org.spongepowered:mixin:0.7.11-SNAPSHOT') {
|
2018-08-01 22:39:39 +05:30
|
|
|
// Mixin includes a lot of dependencies that are too up-to-date
|
|
|
|
exclude module: 'launchwrapper'
|
|
|
|
exclude module: 'guava'
|
|
|
|
exclude module: 'gson'
|
|
|
|
exclude module: 'commons-io'
|
|
|
|
exclude module: 'log4j-core'
|
|
|
|
}
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
}
|
2018-08-26 12:15:33 +05:30
|
|
|
|
|
|
|
mixin {
|
|
|
|
defaultObfuscationEnv notch
|
2018-09-05 05:20:53 +05:30
|
|
|
add sourceSets.launch, 'mixins.baritone.refmap.json'
|
2018-08-26 12:15:33 +05:30
|
|
|
}
|
2018-09-05 05:18:00 +05:30
|
|
|
|
|
|
|
jar {
|
2018-09-11 23:59:54 +05:30
|
|
|
from sourceSets.launch.output, sourceSets.api.output
|
2018-10-08 04:37:35 +05:30
|
|
|
preserveFileTimestamps = false
|
|
|
|
reproducibleFileOrder = true
|
2018-09-05 05:18:00 +05:30
|
|
|
}
|
2018-10-08 05:26:46 +05:30
|
|
|
|
|
|
|
build {
|
|
|
|
// while "jar" supports preserveFileTimestamps false
|
|
|
|
// reobfJar doesn't, it just sets all the last modified times to that instant where it runs the reobfuscator
|
|
|
|
// so we have to set all those last modified times back to zero
|
|
|
|
doLast {
|
|
|
|
JarFile jf = new JarFile("build/libs/baritone-" + version + ".jar")
|
|
|
|
JarOutputStream jos = new JarOutputStream(new FileOutputStream(new File("build/libs/baritone-unoptimized-" + version + ".jar")))
|
|
|
|
|
|
|
|
|
|
|
|
jf.entries().unique { it.name }.sort { it.name }.each {
|
|
|
|
cloneAndCopyEntry(jf, it, jos, 0)
|
|
|
|
}
|
|
|
|
jos.finish()
|
|
|
|
jf.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cloneAndCopyEntry(JarFile originalFile, JarEntry original, JarOutputStream jos, long newTimestamp) {
|
|
|
|
JarEntry clone = new JarEntry(original)
|
|
|
|
clone.time = newTimestamp
|
|
|
|
def entryIs = originalFile.getInputStream(original)
|
|
|
|
jos.putNextEntry(clone)
|
|
|
|
copyBinaryData(entryIs, jos)
|
|
|
|
}
|
|
|
|
|
|
|
|
void copyBinaryData(InputStream is, JarOutputStream jos) {
|
|
|
|
byte[] buffer = new byte[1024]
|
|
|
|
int len = 0
|
|
|
|
while ((len = is.read(buffer)) != -1) {
|
|
|
|
jos.write(buffer, 0, len)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gradle.taskGraph.whenReady { taskGraph ->
|
|
|
|
println "Found task graph: " + taskGraph
|
|
|
|
println "Found " + taskGraph.allTasks.size() + " tasks."
|
|
|
|
taskGraph.allTasks.forEach { task ->
|
|
|
|
println task
|
|
|
|
task.dependsOn.forEach { dep ->
|
|
|
|
println " - " + dep
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|