2018-12-14 06:01:51 +07:00
|
|
|
buildscript{
|
|
|
|
repositories{
|
2017-04-30 08:25:59 +07:00
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2017-12-20 08:51:46 +07:00
|
|
|
google()
|
2018-12-14 06:01:51 +07:00
|
|
|
maven{ url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
2017-04-30 08:25:59 +07:00
|
|
|
jcenter()
|
|
|
|
}
|
2018-12-14 06:01:51 +07:00
|
|
|
dependencies{
|
|
|
|
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.5'
|
2018-11-30 22:28:27 +07:00
|
|
|
classpath "com.badlogicgames.gdx:gdx-tools:1.9.9"
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
allprojects{
|
2017-04-30 08:25:59 +07:00
|
|
|
apply plugin: "idea"
|
|
|
|
|
2017-12-19 12:05:41 +07:00
|
|
|
version = 'release'
|
2018-02-22 07:50:27 +07:00
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
ext{
|
2018-11-21 23:00:50 +07:00
|
|
|
versionNumber = '4'
|
2018-09-04 23:10:48 +07:00
|
|
|
versionModifier = 'alpha'
|
2018-12-14 06:01:51 +07:00
|
|
|
if(!project.hasProperty("versionType")) versionType = 'official'
|
2018-02-09 11:41:07 +07:00
|
|
|
appName = 'Mindustry'
|
2018-11-17 11:36:11 +07:00
|
|
|
gdxVersion = '1.9.9'
|
2018-04-28 03:01:37 +07:00
|
|
|
roboVMVersion = '2.3.0'
|
2018-12-14 22:27:23 +07:00
|
|
|
uCoreVersion = '7ffeb2a9c754f4d31ca13e02dd857876b0707dc5'
|
2018-02-09 11:41:07 +07:00
|
|
|
|
|
|
|
getVersionString = {
|
|
|
|
String buildVersion = getBuildVersion()
|
2018-10-17 11:36:43 +07:00
|
|
|
return "$versionNumber-$versionModifier-$buildVersion"
|
2018-02-09 11:41:07 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
getBuildVersion = {
|
|
|
|
if(!project.hasProperty("buildversion")) return "custom build"
|
|
|
|
return project.getProperties()["buildversion"]
|
|
|
|
}
|
|
|
|
|
|
|
|
getPackage = {
|
|
|
|
return project.ext.mainClassName.substring(0, project.ext.mainClassName.indexOf("desktop") - 1)
|
|
|
|
}
|
2018-05-04 00:04:30 +07:00
|
|
|
|
2018-07-21 11:44:13 +07:00
|
|
|
generateLocales = {
|
2018-09-10 03:19:53 +07:00
|
|
|
def output = 'en\n'
|
2018-08-25 00:54:53 +07:00
|
|
|
def bundles = new File(project(':core').projectDir, 'assets/bundles/')
|
2018-12-14 06:01:51 +07:00
|
|
|
bundles.listFiles().each{ other ->
|
2018-10-06 22:56:39 +07:00
|
|
|
if(other.name == "bundle.properties") return
|
2018-09-10 03:19:53 +07:00
|
|
|
output += other.name.substring("bundle".length() + 1, other.name.lastIndexOf('.')) + "\n"
|
2018-07-21 11:44:13 +07:00
|
|
|
}
|
2018-10-06 22:56:39 +07:00
|
|
|
new File(project(':core').projectDir, 'assets/locales').text = output
|
2018-07-21 11:44:13 +07:00
|
|
|
}
|
|
|
|
|
2018-05-04 00:04:30 +07:00
|
|
|
writeVersion = {
|
2018-08-25 00:54:53 +07:00
|
|
|
def pfile = new File(project(':core').projectDir, 'assets/version.properties')
|
2018-05-04 00:04:30 +07:00
|
|
|
def props = new Properties()
|
|
|
|
|
|
|
|
try{
|
|
|
|
pfile.createNewFile()
|
2018-12-14 06:01:51 +07:00
|
|
|
}catch(Exception ignored){}
|
2018-05-04 00:04:30 +07:00
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
if(pfile.exists()){
|
2018-05-04 00:04:30 +07:00
|
|
|
|
|
|
|
props.load(new FileInputStream(pfile))
|
|
|
|
|
2018-09-04 23:10:48 +07:00
|
|
|
String buildid = getBuildVersion()
|
2018-05-04 00:04:30 +07:00
|
|
|
|
2018-09-04 23:10:48 +07:00
|
|
|
props["type"] = versionType
|
|
|
|
props["number"] = versionNumber
|
|
|
|
props["modifier"] = versionModifier
|
|
|
|
props["build"] = buildid
|
2018-05-04 00:04:30 +07:00
|
|
|
|
|
|
|
props.store(pfile.newWriter(), "Autogenerated file. Do not modify.")
|
|
|
|
}
|
|
|
|
}
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
repositories{
|
2017-04-30 08:25:59 +07:00
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2018-12-14 06:01:51 +07:00
|
|
|
maven{ url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
maven{ url "https://oss.sonatype.org/content/repositories/releases/" }
|
|
|
|
maven{ url 'https://jitpack.io' }
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
project(":desktop"){
|
2017-04-30 08:25:59 +07:00
|
|
|
apply plugin: "java"
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
dependencies{
|
2017-04-30 08:25:59 +07:00
|
|
|
compile project(":core")
|
2018-01-02 01:32:18 +07:00
|
|
|
compile project(":kryonet")
|
2018-09-26 10:27:19 +07:00
|
|
|
if(new File(projectDir.parent, '../debug').exists() && System.properties["release"] == null) compile project(":debug")
|
2018-09-11 06:33:12 +07:00
|
|
|
|
2017-04-30 08:25:59 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
|
|
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
2017-12-23 06:10:34 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-controllers-lwjgl3:$gdxVersion"
|
2018-11-07 00:55:13 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
|
2018-05-14 11:43:53 +07:00
|
|
|
compile 'com.github.MinnDevelopment:java-discord-rpc:v2.0.0'
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
project(":ios"){
|
2018-04-28 03:01:37 +07:00
|
|
|
apply plugin: "java"
|
|
|
|
apply plugin: "robovm"
|
|
|
|
|
2018-08-09 01:42:10 +07:00
|
|
|
task copyGen{
|
2018-12-14 06:01:51 +07:00
|
|
|
doLast{
|
|
|
|
copy{
|
|
|
|
from("../core/build/classes/java/main/io/anuke/mindustry/gen/"){
|
2018-12-01 05:48:09 +07:00
|
|
|
include "**/*.java"
|
|
|
|
}
|
2018-08-22 23:42:19 +07:00
|
|
|
|
2018-12-01 05:48:09 +07:00
|
|
|
into "../core/src/io/anuke/mindustry/gen"
|
|
|
|
}
|
2018-08-09 01:42:10 +07:00
|
|
|
}
|
|
|
|
|
2018-08-22 23:42:19 +07:00
|
|
|
doFirst{
|
2018-08-09 01:42:10 +07:00
|
|
|
delete{
|
2018-12-01 05:48:09 +07:00
|
|
|
delete "../core/src/io/anuke/mindustry/gen/"
|
2018-08-09 01:42:10 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-21 07:28:26 +07:00
|
|
|
task incrementConfig{
|
|
|
|
def vfile = file('robovm.properties')
|
|
|
|
|
|
|
|
def props = new Properties()
|
2018-11-21 23:00:50 +07:00
|
|
|
if(vfile.exists()){
|
|
|
|
props.load(new FileInputStream(vfile))
|
|
|
|
}
|
2018-11-21 07:28:26 +07:00
|
|
|
|
2018-11-21 23:00:50 +07:00
|
|
|
props['app.id'] = 'io.anuke.mindustry'
|
|
|
|
props['app.version'] = '4.0'
|
|
|
|
props['app.mainclass'] = 'io.anuke.mindustry.IOSLauncher'
|
|
|
|
props['app.executable'] = 'IOSLauncher'
|
|
|
|
props['app.name'] = 'Mindustry'
|
2018-12-14 06:01:51 +07:00
|
|
|
props['app.build'] = (!props.containsKey("app.build") ? 40 : props['app.build'].toInteger() + 1) + ""
|
2018-11-21 07:28:26 +07:00
|
|
|
props.store(vfile.newWriter(), null)
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn(incrementConfig)
|
2018-12-14 06:01:51 +07:00
|
|
|
if(file('robovm.properties').exists()){
|
|
|
|
build.dependsOn(copyGen)
|
|
|
|
}
|
2018-04-28 03:01:37 +07:00
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
dependencies{
|
2018-04-28 03:01:37 +07:00
|
|
|
compile project(":core")
|
2018-04-28 10:42:59 +07:00
|
|
|
implementation project(":kryonet")
|
|
|
|
|
2018-04-28 03:01:37 +07:00
|
|
|
compile "com.mobidevelop.robovm:robovm-rt:$roboVMVersion"
|
|
|
|
compile "com.mobidevelop.robovm:robovm-cocoatouch:$roboVMVersion"
|
|
|
|
compile "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
|
|
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
|
2018-11-07 00:55:13 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-ios"
|
2018-04-28 03:01:37 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
project(":core"){
|
2017-04-30 08:25:59 +07:00
|
|
|
apply plugin: "java"
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
task finish{
|
2018-07-21 11:44:13 +07:00
|
|
|
generateLocales()
|
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
dependencies{
|
2018-07-21 11:44:13 +07:00
|
|
|
build.finalizedBy(finish)
|
2018-05-12 21:30:23 +07:00
|
|
|
|
2018-07-27 01:19:58 +07:00
|
|
|
def comp = System.properties["release"] == null || System.properties["release"] == "false"
|
2018-07-27 02:17:23 +07:00
|
|
|
if(!comp) println("Note: Compiling release build.")
|
2017-12-25 08:50:00 +07:00
|
|
|
|
2018-12-20 23:49:32 +07:00
|
|
|
if(new File(projectDir.parent, '../Arc').exists() && comp){
|
2018-12-22 09:33:05 +07:00
|
|
|
println(project(":Arc:extensions").subprojects)
|
2018-12-20 23:49:32 +07:00
|
|
|
compile project(":Arc:core")
|
2018-12-22 09:33:05 +07:00
|
|
|
compile project(":Arc:extensions:freetype")
|
2017-12-22 04:45:25 +07:00
|
|
|
}else{
|
2018-12-20 23:49:32 +07:00
|
|
|
//TODO compile arc from jitpack
|
|
|
|
//compile 'com.github.Anuken.Arc:arc:-SNAPSHOT'
|
2017-12-22 04:45:25 +07:00
|
|
|
}
|
2017-12-25 08:50:00 +07:00
|
|
|
|
2018-12-20 23:49:32 +07:00
|
|
|
// if(new File(projectDir.parent, '../GDXGifRecorder').exists() && comp){
|
|
|
|
// compile project(":GDXGifRecorder")
|
|
|
|
// }
|
|
|
|
|
2018-05-12 21:30:23 +07:00
|
|
|
|
2018-12-20 23:49:32 +07:00
|
|
|
//compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
|
|
//compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
|
|
|
|
//compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
|
2018-10-29 01:26:58 +07:00
|
|
|
|
2018-10-29 05:34:18 +07:00
|
|
|
compileOnly project(":annotations")
|
2018-10-29 01:26:58 +07:00
|
|
|
annotationProcessor project(":annotations")
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
project(":server"){
|
2018-01-28 11:42:42 +07:00
|
|
|
apply plugin: "java"
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
configurations{
|
2018-08-18 05:05:28 +07:00
|
|
|
if(findProject(":android") != null){
|
|
|
|
compile.exclude module: android
|
|
|
|
}
|
2018-07-14 09:02:13 +07:00
|
|
|
}
|
2018-12-14 06:01:51 +07:00
|
|
|
|
|
|
|
dependencies{
|
2018-06-15 04:11:38 +07:00
|
|
|
|
2018-01-28 11:42:42 +07:00
|
|
|
compile project(":core")
|
|
|
|
compile project(":kryonet")
|
|
|
|
compile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
2018-01-28 13:21:33 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
2018-01-28 11:42:42 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-04 07:58:35 +07:00
|
|
|
project(":tests"){
|
|
|
|
apply plugin: "java"
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
dependencies{
|
2018-10-04 07:58:35 +07:00
|
|
|
testImplementation project(":core")
|
|
|
|
testImplementation('org.junit.jupiter:junit-jupiter-api:5.1.0')
|
|
|
|
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.1.0')
|
|
|
|
testImplementation "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
|
|
testImplementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
test{
|
2018-10-04 07:58:35 +07:00
|
|
|
useJUnitPlatform()
|
|
|
|
workingDir = new File("../core/assets")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
project(":tools"){
|
2018-06-16 05:06:05 +07:00
|
|
|
apply plugin: "java"
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
dependencies{
|
2018-06-16 05:06:05 +07:00
|
|
|
compile project(":core")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
project(":annotations"){
|
2018-05-12 21:30:23 +07:00
|
|
|
apply plugin: "java"
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
dependencies{
|
2018-05-14 06:41:50 +07:00
|
|
|
compile 'com.squareup:javapoet:1.11.0'
|
|
|
|
}
|
2018-05-12 21:30:23 +07:00
|
|
|
}
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
project(":kryonet"){
|
2018-01-02 01:32:18 +07:00
|
|
|
apply plugin: "java"
|
|
|
|
|
2018-12-14 06:01:51 +07:00
|
|
|
dependencies{
|
2018-01-02 01:32:18 +07:00
|
|
|
compile project(":core")
|
2018-09-09 04:07:25 +07:00
|
|
|
compile "org.lz4:lz4-java:1.4.1"
|
2018-09-10 04:44:10 +07:00
|
|
|
compile 'com.github.Anuken:kryonet:53b10247b1'
|
2018-08-31 08:39:27 +07:00
|
|
|
compile 'com.github.Anuken:WaifUPnP:05eb46bc577fd7674596946ba288c96c0cedd893'
|
2018-01-02 01:32:18 +07:00
|
|
|
}
|
2018-09-29 16:50:21 +07:00
|
|
|
}
|