|
@@ -2,25 +2,30 @@ import { PluginUIContext } from '../../mol-plugin-ui/context';
|
|
import { Quat, Vec3 } from '../../mol-math/linear-algebra';
|
|
import { Quat, Vec3 } from '../../mol-math/linear-algebra';
|
|
import { PluginCommands } from '../../mol-plugin/commands';
|
|
import { PluginCommands } from '../../mol-plugin/commands';
|
|
import { Camera } from '../../mol-canvas3d/camera';
|
|
import { Camera } from '../../mol-canvas3d/camera';
|
|
|
|
+import { DebugUtil } from '../../apps/tm-viewer';
|
|
|
|
|
|
let initialSnapshot: Camera.Snapshot;
|
|
let initialSnapshot: Camera.Snapshot;
|
|
|
|
|
|
export function storeCameraSnapshot(plugin: PluginUIContext): void {
|
|
export function storeCameraSnapshot(plugin: PluginUIContext): void {
|
|
- initialSnapshot = plugin.canvas3d!.camera.getSnapshot();
|
|
|
|
- console.log('initialSnapshot stored:', initialSnapshot);
|
|
|
|
|
|
+ if (!initialSnapshot) {
|
|
|
|
+ initialSnapshot = plugin.canvas3d!.camera.getSnapshot();
|
|
|
|
+ DebugUtil.log('initialSnapshot stored:', initialSnapshot);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
export function loadInitialSnapshot(plugin: PluginUIContext): void {
|
|
export function loadInitialSnapshot(plugin: PluginUIContext): void {
|
|
if (!initialSnapshot) {
|
|
if (!initialSnapshot) {
|
|
- console.log('initialSnapshot is undefined');
|
|
|
|
|
|
+ DebugUtil.log('initialSnapshot is undefined');
|
|
} else {
|
|
} else {
|
|
- console.log('initialSnapshot:', initialSnapshot);
|
|
|
|
- //PluginCommands.Camera.Reset(plugin, { snapshot: initialSnapshot, durationMs: 10 });
|
|
|
|
- requestAnimationFrame(() => plugin.canvas3d?.requestCameraReset({ snapshot: initialSnapshot }));
|
|
|
|
|
|
+ DebugUtil.log('initialSnapshot:', initialSnapshot);
|
|
|
|
+ PluginCommands.Camera.Reset(plugin, { snapshot: initialSnapshot });
|
|
|
|
+ DebugUtil.log('before settimeout');
|
|
|
|
+ setTimeout(() => { DebugUtil.log('in settimeout') }, 2000);
|
|
|
|
+ DebugUtil.log('after settimeout');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-export function rotateCamera(plugin: PluginUIContext) {
|
|
|
|
|
|
+export async function rotateCamera(plugin: PluginUIContext) {
|
|
function rot90q(v: Vec3, axis: Vec3 = Vec3.create(1, 0, 0)): Vec3 {
|
|
function rot90q(v: Vec3, axis: Vec3 = Vec3.create(1, 0, 0)): Vec3 {
|
|
const q = Quat.setAxisAngle(Quat(), axis, -Math.PI/2);
|
|
const q = Quat.setAxisAngle(Quat(), axis, -Math.PI/2);
|
|
return Vec3.transformQuat(Vec3(), v, q);
|
|
return Vec3.transformQuat(Vec3(), v, q);
|
|
@@ -32,7 +37,6 @@ export function rotateCamera(plugin: PluginUIContext) {
|
|
return Vec3.add(Vec3(), v, u);
|
|
return Vec3.add(Vec3(), v, u);
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
const cam = plugin.canvas3d!.camera;
|
|
const cam = plugin.canvas3d!.camera;
|
|
const snapshot = cam.getSnapshot();
|
|
const snapshot = cam.getSnapshot();
|
|
const newSnapshot = {
|
|
const newSnapshot = {
|
|
@@ -42,6 +46,14 @@ export function rotateCamera(plugin: PluginUIContext) {
|
|
target: snapshot.target,
|
|
target: snapshot.target,
|
|
up: Vec3.negUnitZ
|
|
up: Vec3.negUnitZ
|
|
};
|
|
};
|
|
|
|
+ const duration = 100;
|
|
|
|
+ PluginCommands.Camera.Reset(plugin, { snapshot: newSnapshot, durationMs: duration }).then(() => {
|
|
|
|
+ DebugUtil.log('on reset fulfill');
|
|
|
|
+ setTimeout(()=> {
|
|
|
|
+ DebugUtil.log('In setTimeout');
|
|
|
|
+ requestAnimationFrame(() => plugin.canvas3d?.requestCameraReset());
|
|
|
|
+ }, duration * 1.5);
|
|
|
|
+ DebugUtil.log('after setTimeout');
|
|
|
|
+ });
|
|
|
|
|
|
- PluginCommands.Camera.Reset(plugin, { snapshot: newSnapshot, durationMs: 1000 });
|
|
|
|
}
|
|
}
|