little fps boost (thanks cire)
This commit is contained in:
parent
ed610f5f5d
commit
4238c706dd
107
build.gradle
107
build.gradle
|
@ -1,26 +1,28 @@
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
google()
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'io.github.zebalu:teavm-gradle-plugin:1.0.0'
|
// classpath 'io.github.zebalu:teavm-gradle-plugin:1.0.0'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'java'
|
plugins {
|
||||||
apply plugin: 'eclipse'
|
id 'java'
|
||||||
apply plugin: 'io.github.zebalu.teavm-gradle-plugin'
|
id 'eclipse'
|
||||||
|
id "org.teavm" version "0.8.1"
|
||||||
|
}
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = JavaVersion.VERSION_11
|
||||||
targetCompatibility = 1.8
|
targetCompatibility = JavaVersion.VERSION_11
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
main {
|
main {
|
||||||
java {
|
java {
|
||||||
srcDir 'src/main/java'
|
srcDir 'src/main/java'
|
||||||
srcDir 'src/teavm/java'
|
srcDir 'src/teavm'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -30,57 +32,58 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** we use 0.6.1 due to performance issues on 7.0.0 */
|
// https://mvnrepository.com/artifact/org.teavm/teavm-platform
|
||||||
implementation 'org.teavm:teavm-platform:0.6.1'
|
implementation 'org.teavm:teavm-platform:0.8.1'
|
||||||
implementation('org.teavm:teavm-classlib:0.6.1') {
|
// https://mvnrepository.com/artifact/org.teavm/teavm-classlib
|
||||||
exclude group: 'com.google.code.gson', module: 'gson'
|
implementation 'org.teavm:teavm-classlib:0.8.1'
|
||||||
}
|
// https://mvnrepository.com/artifact/org.teavm/teavm-interop
|
||||||
|
implementation 'org.teavm:teavm-interop:0.8.1'
|
||||||
|
// https://mvnrepository.com/artifact/org.teavm/teavm-jso
|
||||||
|
implementation 'org.teavm:teavm-jso:0.8.1'
|
||||||
|
// https://mvnrepository.com/artifact/org.teavm/teavm-jso-apis
|
||||||
|
implementation 'org.teavm:teavm-jso-apis:0.8.1'
|
||||||
|
// https://mvnrepository.com/artifact/org.teavm/teavm-junit
|
||||||
|
testImplementation 'org.teavm:teavm-junit:0.8.1'
|
||||||
|
// https://mvnrepository.com/artifact/org.teavm/teavm-jso-impl
|
||||||
|
implementation 'org.teavm:teavm-jso-impl:0.8.1'
|
||||||
|
// https://mvnrepository.com/artifact/com.jcraft/jzlib
|
||||||
|
implementation 'com.jcraft:jzlib:1.1.3'
|
||||||
}
|
}
|
||||||
|
|
||||||
teavm {
|
teavm.js {
|
||||||
|
properties = null;
|
||||||
|
debugInformation = false;
|
||||||
|
sourceMap = true;
|
||||||
|
obfuscated = false;
|
||||||
|
|
||||||
compileScopes = null;
|
/** Where to save the result */
|
||||||
minifying = true;
|
outputDir = file("javascript");
|
||||||
maxTopLevelNames = 10000;
|
|
||||||
properties = null;
|
|
||||||
debugInformationGenerated = false;
|
|
||||||
sourceMapsGenerated = true;
|
|
||||||
sourceFilesCopied = false;
|
|
||||||
incremental = false;
|
|
||||||
transformers = null;
|
|
||||||
|
|
||||||
/** Where to save the result */
|
/** How to name the result file. */
|
||||||
targetDirectory = file("javascript");
|
targetFileName = "classes.js";
|
||||||
|
|
||||||
/** The directory to monitor to decide if compile is up-to-date or not */
|
/** Which class holds your public static void main(Strin[] args) method */
|
||||||
sourceDirectory = file("src");
|
mainClass = 'net.lax1dude.eaglercraft.v1_8.internal.teavm.MainClass';
|
||||||
|
|
||||||
/** How to name the result file. */
|
/** This will be the name of your main method after compilation. */
|
||||||
targetFileName = "classes.js";
|
entryPointName = 'main';
|
||||||
|
|
||||||
/** Which class holds your public static void main(Strin[] args) method */
|
preservedClasses = Arrays.asList('net.minecraft.client.Minecraft');
|
||||||
mainClass = 'net.lax1dude.eaglercraft.v1_8.internal.teavm.MainClass';
|
// optimization = BALANCED; //org.teavm.vm.TeaVMOptimizationLevel.SIMPLE;
|
||||||
|
fastGlobalAnalysis = false;
|
||||||
|
// targetType = "JAVASCRIPT"; //org.teavm.tooling.TeaVMTargetType.JAVASCRIPT;
|
||||||
|
// cacheDirectory = null;
|
||||||
|
// wasmVersion = "V_0x1"; //org.teavm.backend.wasm.render.WasmBinaryVersion.V_0x1;
|
||||||
|
// minHeapSize = 4;
|
||||||
|
// maxHeapSize = 128;
|
||||||
|
outOfProcess = false;
|
||||||
|
processMemory = 512;
|
||||||
|
// longjmpSupported = true;
|
||||||
|
// heapDump = false;
|
||||||
|
|
||||||
/** This will be the name of your main method after compilation. */
|
/** Add name of configurations here where to look for jarfiles. */
|
||||||
entryPointName = 'main';
|
// includeJarsFrom = [];
|
||||||
|
|
||||||
classesToPreserve = null;
|
/** By default teavmc taskd epends on javaCompile task, unless this varaibale is true. */
|
||||||
stopOnErrors = false;
|
// skipJavaCompile = false;
|
||||||
optimizationLevel = "ADVANCED"; //org.teavm.vm.TeaVMOptimizationLevel.SIMPLE;
|
|
||||||
fastGlobalAnalysis = false;
|
|
||||||
targetType = "JAVASCRIPT"; //org.teavm.tooling.TeaVMTargetType.JAVASCRIPT;
|
|
||||||
cacheDirectory = null;
|
|
||||||
wasmVersion = "V_0x1"; //org.teavm.backend.wasm.render.WasmBinaryVersion.V_0x1;
|
|
||||||
minHeapSize = 256;
|
|
||||||
maxHeapSize = 256;
|
|
||||||
outOfProcess = false;
|
|
||||||
processMemory = 2048;
|
|
||||||
longjmpSupported = true;
|
|
||||||
heapDump = false;
|
|
||||||
|
|
||||||
/** Add name of configurations here where to look for jarfiles. */
|
|
||||||
includeJarsFrom = [];
|
|
||||||
|
|
||||||
/** By default teavmc taskd epends on javaCompile task, unless this varaibale is true. */
|
|
||||||
skipJavaCompile = false;
|
|
||||||
}
|
}
|
770406
javascript/js/classes.js
Normal file
770406
javascript/js/classes.js
Normal file
File diff suppressed because it is too large
Load Diff
1
javascript/js/classes.js.map
Normal file
1
javascript/js/classes.js.map
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user