Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ios fix (#466) applied manually to existing DeviceOrientationControls #657

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aframe/build/aframe-ar-new-location-only.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion aframe/build/aframe-ar-new-location-only.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion aframe/build/aframe-ar-nft.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion aframe/build/aframe-ar-nft.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion aframe/build/aframe-ar.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion aframe/build/aframe-ar.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion three.js/build/ar-threex-location-only.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion three.js/build/ar-threex-location-only.mjs

Large diffs are not rendered by default.

138 changes: 99 additions & 39 deletions three.js/src/location-based/js/device-orientation-controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

import { Euler, EventDispatcher, MathUtils, Quaternion, Vector3 } from "three";

const isIOS = navigator.userAgent.match(/iPhone|iPad|iPod/i);

const _zee = new Vector3(0, 0, 1);
const _euler = new Euler();
const _q0 = new Quaternion();
Expand Down Expand Up @@ -30,10 +32,11 @@ class DeviceOrientationControls extends EventDispatcher {

this.enabled = true;

this.deviceOrientation = {};
this.deviceOrientation = null;
this.screenOrientation = 0;

this.alphaOffset = 0; // radians
this.initialOffset = null; // used in fix provided in issue #466, iOS related

this.TWO_PI = 2 * Math.PI;
this.HALF_PI = 0.5 * Math.PI;
Expand All @@ -44,8 +47,25 @@ class DeviceOrientationControls extends EventDispatcher {

this.smoothingFactor = 1;

const onDeviceOrientationChangeEvent = function (event) {
scope.deviceOrientation = event;
const onDeviceOrientationChangeEvent = function ({
alpha,
beta,
gamma,
webkitCompassHeading,
}) {
if (isIOS) {
const ccwNorthHeading = 360 - webkitCompassHeading;
scope.alphaOffset = MathUtils.degToRad(ccwNorthHeading - alpha);
scope.deviceOrientation = { alpha, beta, gamma, webkitCompassHeading };
} else {
if (alpha < 0) alpha += 360;
scope.deviceOrientation = { alpha, beta, gamma };
}
window.dispatchEvent(
new CustomEvent("camera-rotation-change", {
detail: { cameraRotation: object.rotation },
}),
);
};

const onScreenOrientationChangeEvent = function () {
Expand Down Expand Up @@ -123,9 +143,11 @@ class DeviceOrientationControls extends EventDispatcher {
);

scope.enabled = false;
scope.initialOffset = false;
scope.deviceOrientation = null;
};

this.update = function () {
this.update = function ({ theta = 0 } = { theta: 0 }) {
if (scope.enabled === false) return;

const device = scope.deviceOrientation;
Expand All @@ -143,45 +165,64 @@ class DeviceOrientationControls extends EventDispatcher {
? MathUtils.degToRad(scope.screenOrientation)
: 0; // O

if (this.smoothingFactor < 1) {
if (this.lastOrientation) {
const k = this.smoothingFactor;
alpha = this._getSmoothedAngle(
if (isIOS) {
const currentQuaternion = new Quaternion();
setObjectQuaternion(currentQuaternion, alpha, beta, gamma, orient);
// Extract the Euler angles from the quaternion and add the heading angle to the Y-axis rotation of the Euler angles
// (If we replace only the alpha value of the quaternion without using Euler angles, the camera will rotate unexpectedly. This is because a quaternion does not represent rotation values individually but rather through a combination of rotation axes and weights.)
const currentEuler = new Euler().setFromQuaternion(
currentQuaternion,
"YXZ",
);
console.log(currentEuler.x, currentEuler.y, currentEuler.z);
// Replace the current alpha value of the Euler angles and reset the quaternion
currentEuler.y = MathUtils.degToRad(
360 - device.webkitCompassHeading,
);
currentQuaternion.setFromEuler(currentEuler);
scope.object.quaternion.copy(currentQuaternion);
} else {
if (this.smoothingFactor < 1) {
if (this.lastOrientation) {
const k = this.smoothingFactor;
alpha = this._getSmoothedAngle(
alpha,
this.lastOrientation.alpha,
k,
);
beta = this._getSmoothedAngle(
beta + Math.PI,
this.lastOrientation.beta,
k,
);
gamma = this._getSmoothedAngle(
gamma + this.HALF_PI,
this.lastOrientation.gamma,
k,
Math.PI,
);
} else {
beta += Math.PI;
gamma += this.HALF_PI;
}

this.lastOrientation = {
alpha,
this.lastOrientation.alpha,
k,
);
beta = this._getSmoothedAngle(
beta + Math.PI,
this.lastOrientation.beta,
k,
);
gamma = this._getSmoothedAngle(
gamma + this.HALF_PI,
this.lastOrientation.gamma,
k,
Math.PI,
);
} else {
beta += Math.PI;
gamma += this.HALF_PI;
beta,
gamma,
};
}

this.lastOrientation = {
alpha: alpha,
beta: beta,
gamma: gamma,
};
setObjectQuaternion(
scope.object.quaternion,
alpha + theta,
this.smoothingFactor < 1 ? beta - Math.PI : beta,
this.smoothingFactor < 1 ? gamma - this.HALF_PI : gamma,
orient,
);
}

setObjectQuaternion(
scope.object.quaternion,
alpha,
this.smoothingFactor < 1 ? beta - Math.PI : beta,
this.smoothingFactor < 1 ? gamma - this.HALF_PI : gamma,
orient,
);

// NB - NOT present in IOS fixed version issue #466
// Is it needed?
if (8 * (1 - lastQuaternion.dot(scope.object.quaternion)) > EPS) {
lastQuaternion.copy(scope.object.quaternion);
scope.dispatchEvent(_changeEvent);
Expand Down Expand Up @@ -218,10 +259,29 @@ class DeviceOrientationControls extends EventDispatcher {
return newangle;
};

// Provided in fix on issue #466 - iOS related
this.updateAlphaOffset = function () {
scope.initialOffset = false;
};

this.dispose = function () {
scope.disconnect();
};

// provided with fix on issue #466
this.getAlpha = function () {
const { deviceOrientation: device } = scope;
return device && device.alpha
? MathUtils.degToRad(device.alpha) + scope.alphaOffset
: 0;
};

// provided with fix on issue #466
this.getBeta = function () {
const { deviceOrientation: device } = scope;
return device && device.beta ? MathUtils.degToRad(device.beta) : 0;
};

this.connect();
}
}
Expand Down