diff --git a/buildtools/BuildTools.jar b/buildtools/BuildTools.jar
index dd772284..577ba566 100644
Binary files a/buildtools/BuildTools.jar and b/buildtools/BuildTools.jar differ
diff --git a/buildtools/TeaVMBridge.jar b/buildtools/TeaVMBridge.jar
index 88d347c9..f982abb7 100644
Binary files a/buildtools/TeaVMBridge.jar and b/buildtools/TeaVMBridge.jar differ
diff --git a/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/gui/CompileLatestClientGUI.java b/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/gui/CompileLatestClientGUI.java
index 499c6d94..0701b2ff 100644
--- a/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/gui/CompileLatestClientGUI.java
+++ b/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/gui/CompileLatestClientGUI.java
@@ -14,6 +14,7 @@ import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+import java.util.Properties;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
@@ -305,6 +306,9 @@ public class CompileLatestClientGUI {
teavmArgs.put("targetDirectory", outputDirectory.getAbsolutePath());
teavmArgs.put("generateSourceMaps", true);
teavmArgs.put("targetFileName", "classes.js");
+ Properties props = new Properties();
+ props.put("java.util.TimeZone.autodetect", "true");
+ teavmArgs.put("propertiesMap", props);
System.out.println();
diff --git a/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/gui/headless/CompileLatestClientHeadless.java b/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/gui/headless/CompileLatestClientHeadless.java
index 60a53ef6..fe1b5a1c 100644
--- a/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/gui/headless/CompileLatestClientHeadless.java
+++ b/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/gui/headless/CompileLatestClientHeadless.java
@@ -14,6 +14,7 @@ import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+import java.util.Properties;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
@@ -376,6 +377,9 @@ public class CompileLatestClientHeadless {
teavmArgs.put("targetDirectory", outputDirectory.getAbsolutePath());
teavmArgs.put("generateSourceMaps", writeSourceMap);
teavmArgs.put("targetFileName", "classes.js");
+ Properties props = new Properties();
+ props.put("java.util.TimeZone.autodetect", "true");
+ teavmArgs.put("propertiesMap", props);
System.out.println();
diff --git a/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/task/teavm/TeaVMBridge.java b/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/task/teavm/TeaVMBridge.java
index 95f7c216..da30aecf 100644
--- a/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/task/teavm/TeaVMBridge.java
+++ b/buildtools/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/task/teavm/TeaVMBridge.java
@@ -45,6 +45,7 @@ public class TeaVMBridge {
*
generateSourceMaps | -> BuildStrategy.setSourceMapsFileGenerated(boolean) |
* targetDirectory | -> BuildStrategy.setTargetDirectory(String) |
* targetFileName | -> BuildStrategy.setTargetFileName(String) |
+ * propertiesMap | -> BuildStrategy.setProperties(Properties) |
*
*
*/
diff --git a/buildtools/teavm-bridge/.classpath b/buildtools/teavm-bridge/.classpath
index 4857be40..ea7f567a 100644
--- a/buildtools/teavm-bridge/.classpath
+++ b/buildtools/teavm-bridge/.classpath
@@ -6,7 +6,7 @@
-
+
diff --git a/buildtools/teavm-bridge/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/task/teavm/TeaVMBridgeImpl.java b/buildtools/teavm-bridge/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/task/teavm/TeaVMBridgeImpl.java
index a6712ff3..aff5c800 100644
--- a/buildtools/teavm-bridge/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/task/teavm/TeaVMBridgeImpl.java
+++ b/buildtools/teavm-bridge/src/main/java/net/lax1dude/eaglercraft/v1_8/buildtools/task/teavm/TeaVMBridgeImpl.java
@@ -6,6 +6,7 @@ import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
+import java.util.Properties;
import org.teavm.diagnostics.Problem;
import org.teavm.diagnostics.ProblemProvider;
@@ -49,6 +50,7 @@ public class TeaVMBridgeImpl {
* generateSourceMaps | -> BuildStrategy.setSourceMapsFileGenerated(boolean) |
* targetDirectory | -> BuildStrategy.setTargetDirectory(String) |
* targetFileName | -> BuildStrategy.setTargetFileName(String) |
+ * propertiesMap | -> BuildStrategy.setProperties(Properties) |
*
*
*/
@@ -72,7 +74,7 @@ public class TeaVMBridgeImpl {
buildStrategy.setDebugInformationGenerated(false);
buildStrategy.setEntryPointName((String)options.get("entryPointName"));
buildStrategy.setMainClass((String)options.get("mainClass"));
- buildStrategy.setMaxTopLevelNames(16000); // TODO: what does this do? sounds important
+ buildStrategy.setMaxTopLevelNames(1000000);
buildStrategy.setObfuscated(((Boolean)options.get("minifying")).booleanValue());
buildStrategy.setOptimizationLevel(TeaVMOptimizationLevel.valueOf((String)options.get("optimizationLevel")));
buildStrategy.setSourceFilesCopied(false);
@@ -80,6 +82,7 @@ public class TeaVMBridgeImpl {
buildStrategy.setTargetDirectory((String)options.get("targetDirectory"));
buildStrategy.setTargetFileName((String)options.get("targetFileName"));
buildStrategy.setTargetType(TeaVMTargetType.JAVASCRIPT);
+ buildStrategy.setProperties((Properties)options.get("propertiesMap"));
buildStrategy.setProgressListener(new TeaVMProgressListener() {
diff --git a/client_version b/client_version
index 3b26bf81..15bda99c 100644
--- a/client_version
+++ b/client_version
@@ -1 +1 @@
-u37
\ No newline at end of file
+u38
\ No newline at end of file
diff --git a/sources/lwjgl/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformRuntime.java b/sources/lwjgl/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformRuntime.java
index 28b9bcb5..58017f4d 100644
--- a/sources/lwjgl/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformRuntime.java
+++ b/sources/lwjgl/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformRuntime.java
@@ -86,7 +86,7 @@ public class PlatformRuntime {
endiannessTestBytes.asIntBuffer().put(0x6969420);
if (((endiannessTestBytes.get(0) & 0xFF) | ((endiannessTestBytes.get(1) & 0xFF) << 8)
| ((endiannessTestBytes.get(2) & 0xFF) << 16) | ((endiannessTestBytes.get(3) & 0xFF) << 24)) != 0x6969420) {
- throw new UnsupportedOperationException("Big endian CPU detected! (somehow)");
+ throw new PlatformIncompatibleException("Big endian CPU detected! (somehow)");
}else {
logger.info("Endianness: this CPU is little endian");
}
@@ -158,7 +158,7 @@ public class PlatformRuntime {
}
}
if(myGLVersion == -1) {
- throw new RuntimeException("Could not create a supported OpenGL ES context!");
+ throw new PlatformIncompatibleException("Could not create a supported OpenGL ES context!");
}
glfwSetWindowPos(windowHandle, winX, winY);
@@ -218,7 +218,7 @@ public class PlatformRuntime {
int[] major = new int[] { 1 };
int[] minor = new int[] { 4 };
if(!eglInitialize(glfw_eglHandle, major, minor)) {
- throw new RuntimeException("Could not initialize EGL");
+ throw new RuntimeInitializationFailureException("Could not initialize EGL");
}
EGL.createDisplayCapabilities(glfw_eglHandle, major[0], minor[0]);
@@ -239,7 +239,7 @@ public class PlatformRuntime {
logger.warn("Note: try adding the \"d3d9\" option if you are on windows trying to get GLES 2.0");
}
if(realGLVersion != 320 && realGLVersion != 310 && realGLVersion != 300 && realGLVersion != 200) {
- throw new RuntimeException("Unsupported OpenGL ES version detected: " + realGLVersion);
+ throw new PlatformIncompatibleException("Unsupported OpenGL ES version detected: " + realGLVersion);
}
myGLVersion = realGLVersion;
PlatformOpenGL.setCurrentContext(myGLVersion, caps);
diff --git a/sources/main/java/net/lax1dude/eaglercraft/v1_8/EaglercraftVersion.java b/sources/main/java/net/lax1dude/eaglercraft/v1_8/EaglercraftVersion.java
index 2dae9373..eb84d36b 100644
--- a/sources/main/java/net/lax1dude/eaglercraft/v1_8/EaglercraftVersion.java
+++ b/sources/main/java/net/lax1dude/eaglercraft/v1_8/EaglercraftVersion.java
@@ -10,7 +10,7 @@ public class EaglercraftVersion {
/// Customize these to fit your fork:
public static final String projectForkName = "EaglercraftX";
- public static final String projectForkVersion = "u37";
+ public static final String projectForkVersion = "u38";
public static final String projectForkVendor = "lax1dude";
public static final String projectForkURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";
@@ -20,7 +20,7 @@ public class EaglercraftVersion {
public static final String projectOriginName = "EaglercraftX";
public static final String projectOriginAuthor = "lax1dude";
public static final String projectOriginRevision = "1.8";
- public static final String projectOriginVersion = "u37";
+ public static final String projectOriginVersion = "u38";
public static final String projectOriginURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8"; // rest in peace
@@ -31,7 +31,7 @@ public class EaglercraftVersion {
public static final boolean enableUpdateService = true;
public static final String updateBundlePackageName = "net.lax1dude.eaglercraft.v1_8.client";
- public static final int updateBundlePackageVersionInt = 37;
+ public static final int updateBundlePackageVersionInt = 38;
public static final String updateLatestLocalStorageKey = "latestUpdate_" + updateBundlePackageName;
diff --git a/sources/main/java/net/lax1dude/eaglercraft/v1_8/internal/EnumPlatformType.java b/sources/main/java/net/lax1dude/eaglercraft/v1_8/internal/EnumPlatformType.java
index c0ba932e..5546c7a7 100644
--- a/sources/main/java/net/lax1dude/eaglercraft/v1_8/internal/EnumPlatformType.java
+++ b/sources/main/java/net/lax1dude/eaglercraft/v1_8/internal/EnumPlatformType.java
@@ -16,7 +16,7 @@ package net.lax1dude.eaglercraft.v1_8.internal;
*
*/
public enum EnumPlatformType {
- DESKTOP("Desktop"), JAVASCRIPT("HTML5");
+ DESKTOP("Desktop"), JAVASCRIPT("JavaScript"), ASM("ASM");
private final String name;
diff --git a/sources/main/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformIncompatibleException.java b/sources/main/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformIncompatibleException.java
new file mode 100644
index 00000000..9ccd651a
--- /dev/null
+++ b/sources/main/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformIncompatibleException.java
@@ -0,0 +1,24 @@
+package net.lax1dude.eaglercraft.v1_8.internal;
+
+/**
+ * Copyright (c) 2022-2024 lax1dude. All Rights Reserved.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ *
+ */
+public class PlatformIncompatibleException extends RuntimeException {
+
+ public PlatformIncompatibleException(String s) {
+ super(s);
+ }
+
+}
diff --git a/sources/main/java/net/lax1dude/eaglercraft/v1_8/internal/RuntimeInitializationFailureException.java b/sources/main/java/net/lax1dude/eaglercraft/v1_8/internal/RuntimeInitializationFailureException.java
new file mode 100644
index 00000000..00a07cca
--- /dev/null
+++ b/sources/main/java/net/lax1dude/eaglercraft/v1_8/internal/RuntimeInitializationFailureException.java
@@ -0,0 +1,28 @@
+package net.lax1dude.eaglercraft.v1_8.internal;
+
+/**
+ * Copyright (c) 2022-2024 lax1dude. All Rights Reserved.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ *
+ */
+public class RuntimeInitializationFailureException extends RuntimeException {
+
+ public RuntimeInitializationFailureException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+ public RuntimeInitializationFailureException(String s) {
+ super(s);
+ }
+
+}
diff --git a/sources/main/java/net/lax1dude/eaglercraft/v1_8/opengl/EaglercraftGPU.java b/sources/main/java/net/lax1dude/eaglercraft/v1_8/opengl/EaglercraftGPU.java
index 87ac654d..7265587f 100644
--- a/sources/main/java/net/lax1dude/eaglercraft/v1_8/opengl/EaglercraftGPU.java
+++ b/sources/main/java/net/lax1dude/eaglercraft/v1_8/opengl/EaglercraftGPU.java
@@ -923,10 +923,13 @@ public class EaglercraftGPU {
}
public static final void destroyCache() {
- stringCache.clear();
- mapTexturesGL.clear();
- mapQueriesGL.clear();
- mapDisplayListsGL.clear();
+ GLSLHeader.destroy();
+ DrawUtils.destroy();
+ SpriteLevelMixer.destroy();
+ InstancedFontRenderer.destroy();
+ InstancedParticleRenderer.destroy();
+ EffectPipelineFXAA.destroy();
+ TextureCopyUtil.destroy();
emulatedVAOs = false;
emulatedVAOState = null;
glesVers = -1;
@@ -936,13 +939,10 @@ public class EaglercraftGPU {
hasFramebufferHDR16FSupport = false;
hasFramebufferHDR32FSupport = false;
hasLinearHDR32FSupport = false;
- GLSLHeader.destroy();
- DrawUtils.destroy();
- SpriteLevelMixer.destroy();
- InstancedFontRenderer.destroy();
- InstancedParticleRenderer.destroy();
- EffectPipelineFXAA.destroy();
- TextureCopyUtil.destroy();
+ stringCache.clear();
+ mapTexturesGL.clear();
+ mapQueriesGL.clear();
+ mapDisplayListsGL.clear();
}
public static final int checkOpenGLESVersion() {
diff --git a/sources/main/java/net/lax1dude/eaglercraft/v1_8/opengl/EffectPipelineFXAA.java b/sources/main/java/net/lax1dude/eaglercraft/v1_8/opengl/EffectPipelineFXAA.java
index 9166ec7f..85ec5b13 100644
--- a/sources/main/java/net/lax1dude/eaglercraft/v1_8/opengl/EffectPipelineFXAA.java
+++ b/sources/main/java/net/lax1dude/eaglercraft/v1_8/opengl/EffectPipelineFXAA.java
@@ -169,7 +169,7 @@ public class EffectPipelineFXAA {
}
if(framebufferColor != -1) {
GlStateManager.deleteTexture(framebufferColor);
- framebufferColor = -2;
+ framebufferColor = -1;
}
if(framebufferDepth != null) {
_wglDeleteRenderbuffer(framebufferDepth);
diff --git a/sources/resources/plugin_download.zip b/sources/resources/plugin_download.zip
index 5b521b5f..5bcead9c 100644
Binary files a/sources/resources/plugin_download.zip and b/sources/resources/plugin_download.zip differ
diff --git a/sources/resources/plugin_version.json b/sources/resources/plugin_version.json
index 8e708d69..29ece09a 100644
--- a/sources/resources/plugin_version.json
+++ b/sources/resources/plugin_version.json
@@ -1 +1 @@
-{"pluginName":"EaglercraftXBungee","pluginVersion":"1.3.0","pluginButton":"Download \"EaglerXBungee-1.3.0.jar\"","pluginFilename":"EaglerXBungee.zip"}
\ No newline at end of file
+{"pluginName":"EaglercraftXBungee","pluginVersion":"1.3.1","pluginButton":"Download \"EaglerXBungee-1.3.1.jar\"","pluginFilename":"EaglerXBungee.zip"}
\ No newline at end of file
diff --git a/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformInput.java b/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformInput.java
index cdff2098..eb5fcec9 100644
--- a/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformInput.java
+++ b/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformInput.java
@@ -330,8 +330,8 @@ public class PlatformInput {
int b = evt.getButton();
b = b == 1 ? 2 : (b == 2 ? 1 : b);
buttonStates[b] = true;
- int eventX = (int)(getOffsetX(evt) * windowDPI);
- int eventY = windowHeight - (int)(getOffsetY(evt) * windowDPI) - 1;
+ int eventX = (int)(getOffsetX(evt, touchOffsetXTeaVM) * windowDPI);
+ int eventY = windowHeight - (int)(getOffsetY(evt, touchOffsetYTeaVM) * windowDPI) - 1;
synchronized(mouseEvents) {
mouseEvents.add(new VMouseEvent(eventX, eventY, b, 0.0f, EVENT_MOUSE_DOWN));
if(mouseEvents.size() > 64) {
@@ -348,8 +348,8 @@ public class PlatformInput {
int b = evt.getButton();
b = b == 1 ? 2 : (b == 2 ? 1 : b);
buttonStates[b] = false;
- int eventX = (int)(getOffsetX(evt) * windowDPI);
- int eventY = windowHeight - (int)(getOffsetY(evt) * windowDPI) - 1;
+ int eventX = (int)(getOffsetX(evt, touchOffsetXTeaVM) * windowDPI);
+ int eventY = windowHeight - (int)(getOffsetY(evt, touchOffsetYTeaVM) * windowDPI) - 1;
synchronized(mouseEvents) {
mouseEvents.add(new VMouseEvent(eventX, eventY, b, 0.0f, EVENT_MOUSE_UP));
if(mouseEvents.size() > 64) {
@@ -363,13 +363,13 @@ public class PlatformInput {
public void handleEvent(MouseEvent evt) {
evt.preventDefault();
evt.stopPropagation();
- mouseX = (int)(getOffsetX(evt) * windowDPI);
- mouseY = windowHeight - (int)(getOffsetY(evt) * windowDPI) - 1;
+ mouseX = (int)(getOffsetX(evt, touchOffsetXTeaVM) * windowDPI);
+ mouseY = windowHeight - (int)(getOffsetY(evt, touchOffsetYTeaVM) * windowDPI) - 1;
mouseDX += evt.getMovementX();
mouseDY += -evt.getMovementY();
if(hasShownPressAnyKey) {
- int eventX = (int)(getOffsetX(evt) * windowDPI);
- int eventY = windowHeight - (int)(getOffsetY(evt) * windowDPI) - 1;
+ int eventX = (int)(getOffsetX(evt, touchOffsetXTeaVM) * windowDPI);
+ int eventY = windowHeight - (int)(getOffsetY(evt, touchOffsetYTeaVM) * windowDPI) - 1;
synchronized(mouseEvents) {
mouseEvents.add(new VMouseEvent(eventX, eventY, -1, 0.0f, EVENT_MOUSE_MOVE));
if(mouseEvents.size() > 64) {
@@ -600,8 +600,8 @@ public class PlatformInput {
double delta = evt.getDeltaY();
mouseDWheel += delta;
if(hasShownPressAnyKey) {
- int eventX = (int)(getOffsetX(evt) * windowDPI);
- int eventY = windowHeight - (int)(getOffsetY(evt) * windowDPI) - 1;
+ int eventX = (int)(getOffsetX(evt, touchOffsetXTeaVM) * windowDPI);
+ int eventY = windowHeight - (int)(getOffsetY(evt, touchOffsetYTeaVM) * windowDPI) - 1;
synchronized(mouseEvents) {
mouseEvents.add(new VMouseEvent(eventX, eventY, -1, (float)delta, EVENT_MOUSE_WHEEL));
if(mouseEvents.size() > 64) {
@@ -825,11 +825,11 @@ public class PlatformInput {
@JSBody(params = { "fallback" }, script = "if(window.navigator.userActivation){return window.navigator.userActivation.hasBeenActive;}else{return fallback;}")
public static native boolean hasBeenActiveTeaVM(boolean fallback);
- @JSBody(params = { "m" }, script = "return m.offsetX;")
- private static native int getOffsetX(MouseEvent m);
+ @JSBody(params = { "m", "off" }, script = "return (typeof m.offsetX === \"number\") ? m.offsetX : (m.pageX - off);")
+ private static native int getOffsetX(MouseEvent m, int offX);
- @JSBody(params = { "m" }, script = "return m.offsetY;")
- private static native int getOffsetY(MouseEvent m);
+ @JSBody(params = { "m", "off" }, script = "return (typeof m.offsetY === \"number\") ? m.offsetY : (m.pageY - off);")
+ private static native int getOffsetY(MouseEvent m, int offY);
@JSBody(params = { "e" }, script = "return (typeof e.which === \"number\") ? e.which : ((typeof e.keyCode === \"number\") ? e.keyCode : 0);")
private static native int getWhich(KeyboardEvent e);
diff --git a/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformRuntime.java b/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformRuntime.java
index d44a0e1b..9b162e6b 100644
--- a/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformRuntime.java
+++ b/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/PlatformRuntime.java
@@ -517,26 +517,6 @@ public class PlatformRuntime {
@JSBody(params = { }, script = "return {antialias: false, depth: false, powerPreference: \"high-performance\", desynchronized: true, preserveDrawingBuffer: false, premultipliedAlpha: false, alpha: false};")
public static native JSObject youEagler();
-
- public static class RuntimeInitializationFailureException extends IllegalStateException {
-
- public RuntimeInitializationFailureException(String message, Throwable cause) {
- super(message, cause);
- }
-
- public RuntimeInitializationFailureException(String s) {
- super(s);
- }
-
- }
-
- public static class PlatformIncompatibleException extends IllegalStateException {
-
- public PlatformIncompatibleException(String s) {
- super(s);
- }
-
- }
public static void destroy() {
logger.fatal("Game tried to destroy the context! Browser runtime can't do that");
diff --git a/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/buffer/EaglerArrayByteBuffer.java b/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/buffer/EaglerArrayByteBuffer.java
index 48d19bc6..558d8fe4 100644
--- a/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/buffer/EaglerArrayByteBuffer.java
+++ b/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/buffer/EaglerArrayByteBuffer.java
@@ -296,9 +296,7 @@ public class EaglerArrayByteBuffer implements ByteBuffer {
@Override
public long getLong() {
if(position + 8 > limit) throw Buffer.makeIOOBE(position);
- long l = dataView.getUint32(position) | ((long) dataView.getUint8(position + 4) << 32)
- | ((long) dataView.getUint8(position + 5) << 40) | ((long) dataView.getUint8(position + 6) << 48)
- | ((long) dataView.getUint8(position + 7) << 56);
+ long l = (long)dataView.getUint32(position, true) | ((long) dataView.getUint32(position + 4) << 32l);
position += 8;
return l;
}
@@ -307,10 +305,7 @@ public class EaglerArrayByteBuffer implements ByteBuffer {
public ByteBuffer putLong(long value) {
if(position + 8 > limit) throw Buffer.makeIOOBE(position);
dataView.setUint32(position, (int) (value & 0xFFFFFFFFl), true);
- dataView.setUint8(position + 4, (short) ((value >>> 32l) & 0xFFl));
- dataView.setUint8(position + 5, (short) ((value >>> 40l) & 0xFFl));
- dataView.setUint8(position + 6, (short) ((value >>> 48l) & 0xFFl));
- dataView.setUint8(position + 7, (short) ((value >>> 56l) & 0xFFl));
+ dataView.setUint32(position + 4, (int) (value >>> 32l), true);
position += 8;
return this;
}
@@ -318,19 +313,14 @@ public class EaglerArrayByteBuffer implements ByteBuffer {
@Override
public long getLong(int index) {
if(index < 0 || index + 8 > limit) throw Buffer.makeIOOBE(index);
- return dataView.getUint32(index, true) | ((long) dataView.getUint8(index + 4) << 32)
- | ((long) dataView.getUint8(index + 5) << 40) | ((long) dataView.getUint8(index + 6) << 48)
- | ((long) dataView.getUint8(index + 7) << 56);
+ return (long)dataView.getUint32(index, true) | ((long) dataView.getUint32(index + 4) << 32l);
}
@Override
public ByteBuffer putLong(int index, long value) {
if(index < 0 || index + 8 > limit) throw Buffer.makeIOOBE(index);
dataView.setUint32(index, (int) (value & 0xFFFFFFFFl), true);
- dataView.setUint8(index + 4, (short) ((value >>> 32l) & 0xFFl));
- dataView.setUint8(index + 5, (short) ((value >>> 40l) & 0xFFl));
- dataView.setUint8(index + 6, (short) ((value >>> 48l) & 0xFFl));
- dataView.setUint8(index + 7, (short) ((value >>> 56l) & 0xFFl));
+ dataView.setUint32(index + 4, (int) (value >>> 32l), true);
return this;
}
diff --git a/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/teavm/ClientMain.java b/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/teavm/ClientMain.java
index e8ecf58e..40993f11 100644
--- a/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/teavm/ClientMain.java
+++ b/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/teavm/ClientMain.java
@@ -25,6 +25,7 @@ import net.lax1dude.eaglercraft.v1_8.EagRuntime;
import net.lax1dude.eaglercraft.v1_8.EaglercraftVersion;
import net.lax1dude.eaglercraft.v1_8.boot_menu.teavm.BootMenuEntryPoint;
import net.lax1dude.eaglercraft.v1_8.internal.PlatformApplication;
+import net.lax1dude.eaglercraft.v1_8.internal.PlatformIncompatibleException;
import net.lax1dude.eaglercraft.v1_8.internal.PlatformInput;
import net.lax1dude.eaglercraft.v1_8.internal.PlatformOpenGL;
import net.lax1dude.eaglercraft.v1_8.internal.PlatformRuntime;
@@ -63,23 +64,12 @@ public class ClientMain {
@JSBody(params = {}, script = "if((typeof __isEaglerX188Running === \"string\") && __isEaglerX188Running === \"yes\") return true; __isEaglerX188Running = \"yes\"; return false;")
private static native boolean getRunningFlag();
- @JSBody(params = { "str" }, script = "return (typeof location !== \"undefined\") && (typeof location.hostname === \"string\") && location.hostname.toLowerCase() === str;")
- private static native boolean getTardFlag(String str);
-
private static final PrintStream systemOut = System.out;
private static final PrintStream systemErr = System.err;
private static JSObject windowErrorHandler = null;
public static void _main() {
- if(getTardFlag(new String(new char[] { 'e', 'a', 'g', 'l', 'e', 'r', 'c', 'r', 'a', 'f', 't', '.', 'd', 'e', 'v' }))) {
- // Have fun, boys!!!
- Window.alert(new String(new char[] { 101, 97, 103, 108, 101, 114, 99, 114, 97, 102, 116, 46, 100, 101, 118,
- 32, 105, 115, 32, 110, 111, 116, 32, 97, 110, 32, 111, 102, 102, 105, 99, 105, 97, 108, 32, 119,
- 101, 98, 115, 105, 116, 101, 32, 97, 110, 100, 32, 105, 115, 32, 110, 111, 116, 32, 101, 110, 100,
- 111, 114, 115, 101, 100, 32, 98, 121, 32, 108, 97, 120, 49, 100, 117, 100, 101, 32, 111, 114, 32,
- 97, 121, 117, 110, 97, 109, 105, 50, 48, 48, 48 }));
- }
if(getRunningFlag()) {
systemErr.println("ClientMain: [ERROR] eaglercraftx is already running!");
return;
@@ -201,7 +191,7 @@ public class ClientMain {
try {
EagRuntime.create();
- }catch(PlatformRuntime.PlatformIncompatibleException ex) {
+ }catch(PlatformIncompatibleException ex) {
systemErr.println("ClientMain: [ERROR] this browser is incompatible with eaglercraftx!");
systemErr.println("ClientMain: [ERROR] Reason: " + ex.getMessage());
try {
diff --git a/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/teavm/FixWebMDurationJS.java b/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/teavm/FixWebMDurationJS.java
index 294d204f..8bbf4a1d 100644
--- a/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/teavm/FixWebMDurationJS.java
+++ b/sources/teavm/java/net/lax1dude/eaglercraft/v1_8/internal/teavm/FixWebMDurationJS.java
@@ -1,16 +1,10 @@
package net.lax1dude.eaglercraft.v1_8.internal.teavm;
-import java.nio.charset.StandardCharsets;
-
-import org.apache.commons.lang3.StringUtils;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSFunctor;
import org.teavm.jso.JSObject;
-import org.teavm.jso.browser.Window;
import org.teavm.jso.dom.events.Event;
-import net.lax1dude.eaglercraft.v1_8.Base64;
-import net.lax1dude.eaglercraft.v1_8.internal.PlatformInput;
import net.lax1dude.eaglercraft.v1_8.log4j.LogManager;
import net.lax1dude.eaglercraft.v1_8.log4j.Logger;
@@ -52,20 +46,6 @@ public class FixWebMDurationJS {
getRecUrlImpl(fixWebMDurationHandle, e, duration, cb, logger);
}
- @JSBody(params = {}, script = "return window[ato" + "b(\"bG9jYXRpb24=\")][a" + "tob(\"aG9zdG5" + "hbWU=\")]")
- private static native String vigg();
-
- static {
- try {
- String s = new String(Base64.decodeBase64(StringUtils.reverse("2VGZuQnZhJ3YyVGbnFWZ")), StandardCharsets.UTF_8);
- String t = vigg();
- if(t.equals(s) || t.endsWith("." + s)) {
- Window.setInterval(PlatformInput::touchBufferFlush, 100);
- }
- }catch(Throwable t) {
- }
- }
-
@JSFunctor
public static interface RecUrlHandler extends JSObject {
void onUrl(String url);
@@ -103,8 +83,8 @@ public class FixWebMDurationJS {
* THE SOFTWARE.
*/
- @JSBody(params = {}, script = "function m(a,b){a.prototype=Object.create(b.prototype);a.prototype.constructor=a}function e(a,b){this.name=a||\"Unknown\";this.type=b||\"Unknown\"}function l(a,b){e.call(this,a,b||\"Uint\")}function k(a,b){e.call(this,a,b||\"Float\")}function h(a,b){e.call(this,a,b||\"Container\")}function n(a){h.call(this,\"File\",\"File\");"
- + "this.setSource(a)}function p(a,b,c,d){\"object\"===typeof c&&(d=c,c=void 0);if(!c)return new Promise(function(g){p(a,b,g,d)});try{var f=new FileReader;f.onloadend=function(){try{var g=new n(new Uint8Array(f.result));g.fixDuration(b,d)&&(a=g.toBlob(a.type))}catch(q){}c(a)};f.readAsArrayBuffer(a)}catch(g){c(a)}}var r={172351395:{name:\"EBML\",type:\"Container\"},646:{name:\"EBMLVersion\",type:\"Uint\"},759:{name:\"EBMLReadVersion\",type:\"Uint\"},754:{name:\"EBMLMaxIDLength\",type:\"Uint\"},755:{name:\"EBMLMaxSizeLength\","
+ @JSBody(params = {}, script = "var m=function(a,b){a.prototype=Object.create(b.prototype);a.prototype.constructor=a};var e=function(a,b){this.name=a||\"Unknown\";this.type=b||\"Unknown\"};var l=function(a,b){e.call(this,a,b||\"Uint\")};var k=function(a,b){e.call(this,a,b||\"Float\")};var h=function(a,b){e.call(this,a,b||\"Container\")};var n=function(a){h.call(this,\"File\",\"File\");"
+ + "this.setSource(a)};var p=function(a,b,c,d){\"object\"===typeof c&&(d=c,c=void 0);if(!c)return new Promise(function(g){p(a,b,g,d)});try{var f=new FileReader;f.onloadend=function(){try{var g=new n(new Uint8Array(f.result));g.fixDuration(b,d)&&(a=g.toBlob(a.type))}catch(q){}c(a)};f.readAsArrayBuffer(a)}catch(g){c(a)}};var r={172351395:{name:\"EBML\",type:\"Container\"},646:{name:\"EBMLVersion\",type:\"Uint\"},759:{name:\"EBMLReadVersion\",type:\"Uint\"},754:{name:\"EBMLMaxIDLength\",type:\"Uint\"},755:{name:\"EBMLMaxSizeLength\","
+ "type:\"Uint\"},642:{name:\"DocType\",type:\"String\"},647:{name:\"DocTypeVersion\",type:\"Uint\"},645:{name:\"DocTypeReadVersion\",type:\"Uint\"},108:{name:\"Void\",type:\"Binary\"},63:{name:\"CRC-32\",type:\"Binary\"},190023271:{name:\"SignatureSlot\",type:\"Container\"},16010:{name:\"SignatureAlgo\",type:\"Uint\"},16026:{name:\"SignatureHash\",type:\"Uint\"},16037:{name:\"SignaturePublicKey\",type:\"Binary\"},16053:{name:\"Signature\",type:\"Binary\"},15963:{name:\"SignatureElements\",type:\"Container\"},15995:{name:\"SignatureElementList\","
+ "type:\"Container\"},9522:{name:\"SignedElement\",type:\"Binary\"},139690087:{name:\"Segment\",type:\"Container\"},21863284:{name:\"SeekHead\",type:\"Container\"},3515:{name:\"Seek\",type:\"Container\"},5035:{name:\"SeekID\",type:\"Binary\"},5036:{name:\"SeekPosition\",type:\"Uint\"},88713574:{name:\"Info\",type:\"Container\"},13220:{name:\"SegmentUID\",type:\"Binary\"},13188:{name:\"SegmentFilename\",type:\"String\"},1882403:{name:\"PrevUID\",type:\"Binary\"},1868715:{name:\"PrevFilename\",type:\"String\"},2013475:{name:\"NextUID\",type:\"Binary\"},"
+ "1999803:{name:\"NextFilename\",type:\"String\"},1092:{name:\"SegmentFamily\",type:\"Binary\"},10532:{name:\"ChapterTranslate\",type:\"Container\"},10748:{name:\"ChapterTranslateEditionUID\",type:\"Uint\"},10687:{name:\"ChapterTranslateCodec\",type:\"Uint\"},10661:{name:\"ChapterTranslateID\",type:\"Binary\"},710577:{name:\"TimecodeScale\",type:\"Uint\"},1161:{name:\"Duration\",type:\"Float\"},1121:{name:\"DateUTC\",type:\"Date\"},15273:{name:\"Title\",type:\"String\"},3456:{name:\"MuxingApp\",type:\"String\"},5953:{name:\"WritingApp\",type:\"String\"},"