camera.ts 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. /**
  2. * Copyright (c) 2018-2023 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  6. */
  7. import { Mat4, Vec3, Vec4, EPSILON } from '../mol-math/linear-algebra';
  8. import { Viewport, cameraProject, cameraUnproject } from './camera/util';
  9. import { CameraTransitionManager } from './camera/transition';
  10. import { BehaviorSubject } from 'rxjs';
  11. import { Scene } from '../mol-gl/scene';
  12. import { assertUnreachable } from '../mol-util/type-helpers';
  13. export { ICamera, Camera };
  14. interface ICamera {
  15. readonly viewport: Viewport,
  16. readonly view: Mat4,
  17. readonly projection: Mat4,
  18. readonly projectionView: Mat4,
  19. readonly inverseProjectionView: Mat4,
  20. readonly state: Readonly<Camera.Snapshot>,
  21. readonly viewOffset: Camera.ViewOffset,
  22. readonly far: number,
  23. readonly near: number,
  24. readonly fogFar: number,
  25. readonly fogNear: number,
  26. }
  27. const tmpPos1 = Vec3();
  28. const tmpPos2 = Vec3();
  29. const tmpClip = Vec4();
  30. class Camera implements ICamera {
  31. readonly view: Mat4 = Mat4.identity();
  32. readonly projection: Mat4 = Mat4.identity();
  33. readonly projectionView: Mat4 = Mat4.identity();
  34. readonly inverseProjectionView: Mat4 = Mat4.identity();
  35. private pixelScale: number;
  36. get pixelRatio() {
  37. const dpr = (typeof window !== 'undefined') ? window.devicePixelRatio : 1;
  38. return dpr * this.pixelScale;
  39. }
  40. readonly viewport: Viewport;
  41. readonly state: Readonly<Camera.Snapshot> = Camera.createDefaultSnapshot();
  42. readonly viewOffset = Camera.ViewOffset();
  43. near = 1;
  44. far = 10000;
  45. fogNear = 5000;
  46. fogFar = 10000;
  47. zoom = 1;
  48. readonly transition: CameraTransitionManager = new CameraTransitionManager(this);
  49. readonly stateChanged = new BehaviorSubject<Partial<Camera.Snapshot>>(this.state);
  50. get position() { return this.state.position; }
  51. set position(v: Vec3) { Vec3.copy(this.state.position, v); }
  52. get up() { return this.state.up; }
  53. set up(v: Vec3) { Vec3.copy(this.state.up, v); }
  54. get target() { return this.state.target; }
  55. set target(v: Vec3) { Vec3.copy(this.state.target, v); }
  56. private prevProjection = Mat4.identity();
  57. private prevView = Mat4.identity();
  58. private deltaDirection = Vec3();
  59. private newPosition = Vec3();
  60. update() {
  61. const snapshot = this.state as Camera.Snapshot;
  62. if (snapshot.radiusMax === 0) {
  63. return false;
  64. }
  65. const height = 2 * Math.tan(snapshot.fov / 2) * Vec3.distance(snapshot.position, snapshot.target);
  66. this.zoom = this.viewport.height / height;
  67. updateClip(this);
  68. switch (this.state.mode) {
  69. case 'orthographic': updateOrtho(this); break;
  70. case 'perspective': updatePers(this); break;
  71. default: assertUnreachable(this.state.mode);
  72. }
  73. const changed = !Mat4.areEqual(this.projection, this.prevProjection, EPSILON) || !Mat4.areEqual(this.view, this.prevView, EPSILON);
  74. if (changed) {
  75. Mat4.mul(this.projectionView, this.projection, this.view);
  76. if (!Mat4.tryInvert(this.inverseProjectionView, this.projectionView)) {
  77. Mat4.copy(this.view, this.prevView);
  78. Mat4.copy(this.projection, this.prevProjection);
  79. Mat4.mul(this.projectionView, this.projection, this.view);
  80. return false;
  81. }
  82. Mat4.copy(this.prevView, this.view);
  83. Mat4.copy(this.prevProjection, this.projection);
  84. }
  85. return changed;
  86. }
  87. setState(snapshot: Partial<Camera.Snapshot>, durationMs?: number) {
  88. this.transition.apply(snapshot, durationMs);
  89. this.stateChanged.next(snapshot);
  90. }
  91. getSnapshot() {
  92. return Camera.copySnapshot(Camera.createDefaultSnapshot(), this.state);
  93. }
  94. getTargetDistance(radius: number) {
  95. return Camera.targetDistance(radius, this.state.mode, this.state.fov, this.viewport.width, this.viewport.height);
  96. }
  97. getFocus(target: Vec3, radius: number, up?: Vec3, dir?: Vec3, snapshot?: Partial<Camera.Snapshot>): Partial<Camera.Snapshot> {
  98. const r = Math.max(radius, 0.01);
  99. const targetDistance = this.getTargetDistance(r);
  100. Vec3.sub(this.deltaDirection, snapshot?.target ?? this.target, snapshot?.position ?? this.position);
  101. if (dir) Vec3.matchDirection(this.deltaDirection, dir, this.deltaDirection);
  102. Vec3.setMagnitude(this.deltaDirection, this.deltaDirection, targetDistance);
  103. Vec3.sub(this.newPosition, target, this.deltaDirection);
  104. const state = Camera.copySnapshot(Camera.createDefaultSnapshot(), this.state);
  105. state.target = Vec3.clone(target);
  106. state.radius = r;
  107. state.position = Vec3.clone(this.newPosition);
  108. if (up) Vec3.matchDirection(state.up, up, state.up);
  109. return state;
  110. }
  111. getCenter(target: Vec3, radius?: number): Partial<Camera.Snapshot> {
  112. Vec3.sub(this.deltaDirection, this.target, this.position);
  113. Vec3.sub(this.newPosition, target, this.deltaDirection);
  114. const state = Camera.copySnapshot(Camera.createDefaultSnapshot(), this.state);
  115. state.target = Vec3.clone(target);
  116. state.position = Vec3.clone(this.newPosition);
  117. if (radius) state.radius = Math.max(radius, 0.01);
  118. return state;
  119. }
  120. getInvariantFocus(target: Vec3, radius: number, up: Vec3, dir: Vec3): Partial<Camera.Snapshot> {
  121. const r = Math.max(radius, 0.01);
  122. const targetDistance = this.getTargetDistance(r);
  123. Vec3.copy(this.deltaDirection, dir);
  124. Vec3.setMagnitude(this.deltaDirection, this.deltaDirection, targetDistance);
  125. Vec3.sub(this.newPosition, target, this.deltaDirection);
  126. const state = Camera.copySnapshot(Camera.createDefaultSnapshot(), this.state);
  127. state.target = Vec3.clone(target);
  128. state.radius = r;
  129. state.position = Vec3.clone(this.newPosition);
  130. Vec3.copy(state.up, up);
  131. return state;
  132. }
  133. focus(target: Vec3, radius: number, durationMs?: number, up?: Vec3, dir?: Vec3) {
  134. if (radius > 0) {
  135. this.setState(this.getFocus(target, radius, up, dir), durationMs);
  136. }
  137. }
  138. center(target: Vec3, durationMs?: number) {
  139. this.setState(this.getCenter(target), durationMs);
  140. }
  141. /** Transform point into 2D window coordinates. */
  142. project(out: Vec4, point: Vec3) {
  143. return cameraProject(out, point, this.viewport, this.projectionView);
  144. }
  145. /**
  146. * Transform point from screen space to 3D coordinates.
  147. * The point must have `x` and `y` set to 2D window coordinates
  148. * and `z` between 0 (near) and 1 (far); the optional `w` is not used.
  149. */
  150. unproject(out: Vec3, point: Vec3 | Vec4) {
  151. return cameraUnproject(out, point, this.viewport, this.inverseProjectionView);
  152. }
  153. /** World space pixel size at given `point` */
  154. getPixelSize(point: Vec3) {
  155. // project -> unproject of `point` does not exactly return the same
  156. // to get a sufficiently accurate measure we unproject the original
  157. // clip position in addition to the one shifted by one pixel
  158. this.project(tmpClip, point);
  159. this.unproject(tmpPos1, tmpClip);
  160. tmpClip[0] += 1;
  161. this.unproject(tmpPos2, tmpClip);
  162. return Vec3.distance(tmpPos1, tmpPos2);
  163. }
  164. constructor(state?: Partial<Camera.Snapshot>, viewport = Viewport.create(0, 0, 128, 128), props: Partial<{ pixelScale: number }> = {}) {
  165. this.viewport = viewport;
  166. this.pixelScale = props.pixelScale || 1;
  167. Camera.copySnapshot(this.state, state);
  168. }
  169. }
  170. namespace Camera {
  171. export type Mode = 'perspective' | 'orthographic'
  172. export type SnapshotProvider = Partial<Snapshot> | ((scene: Scene, camera: Camera) => Partial<Snapshot>)
  173. /**
  174. * Sets an offseted view in a larger frustum. This is useful for
  175. * - multi-window or multi-monitor/multi-machine setups
  176. * - jittering the camera position for sampling
  177. */
  178. export interface ViewOffset {
  179. enabled: boolean,
  180. fullWidth: number,
  181. fullHeight: number,
  182. offsetX: number,
  183. offsetY: number,
  184. width: number,
  185. height: number
  186. }
  187. export function ViewOffset(): ViewOffset {
  188. return {
  189. enabled: false,
  190. fullWidth: 1, fullHeight: 1,
  191. offsetX: 0, offsetY: 0,
  192. width: 1, height: 1
  193. };
  194. }
  195. export function setViewOffset(out: ViewOffset, fullWidth: number, fullHeight: number, offsetX: number, offsetY: number, width: number, height: number) {
  196. out.fullWidth = fullWidth;
  197. out.fullHeight = fullHeight;
  198. out.offsetX = offsetX;
  199. out.offsetY = offsetY;
  200. out.width = width;
  201. out.height = height;
  202. }
  203. export function copyViewOffset(out: ViewOffset, view: ViewOffset) {
  204. out.enabled = view.enabled;
  205. out.fullWidth = view.fullWidth;
  206. out.fullHeight = view.fullHeight;
  207. out.offsetX = view.offsetX;
  208. out.offsetY = view.offsetY;
  209. out.width = view.width;
  210. out.height = view.height;
  211. }
  212. export function targetDistance(radius: number, mode: Mode, fov: number, width: number, height: number) {
  213. const r = Math.max(radius, 0.01);
  214. const aspect = width / height;
  215. const aspectFactor = (height < width ? 1 : aspect);
  216. if (mode === 'orthographic')
  217. return Math.abs((r / aspectFactor) / Math.tan(fov / 2));
  218. else
  219. return Math.abs((r / aspectFactor) / Math.sin(fov / 2));
  220. }
  221. export function createDefaultSnapshot(): Snapshot {
  222. return {
  223. mode: 'perspective',
  224. fov: Math.PI / 4,
  225. position: Vec3.create(0, 0, 100),
  226. up: Vec3.create(0, 1, 0),
  227. target: Vec3.create(0, 0, 0),
  228. radius: 0,
  229. radiusMax: 10,
  230. fog: 50,
  231. clipFar: true,
  232. minNear: 5,
  233. minFar: 0,
  234. };
  235. }
  236. export interface Snapshot {
  237. mode: Mode
  238. fov: number
  239. position: Vec3
  240. up: Vec3
  241. target: Vec3
  242. radius: number
  243. radiusMax: number
  244. fog: number
  245. clipFar: boolean
  246. minNear: number
  247. minFar: number
  248. }
  249. export function copySnapshot(out: Snapshot, source?: Partial<Snapshot>) {
  250. if (!source) return out;
  251. if (typeof source.mode !== 'undefined') out.mode = source.mode;
  252. if (typeof source.fov !== 'undefined') out.fov = source.fov;
  253. if (typeof source.position !== 'undefined') Vec3.copy(out.position, source.position);
  254. if (typeof source.up !== 'undefined') Vec3.copy(out.up, source.up);
  255. if (typeof source.target !== 'undefined') Vec3.copy(out.target, source.target);
  256. if (typeof source.radius !== 'undefined') out.radius = source.radius;
  257. if (typeof source.radiusMax !== 'undefined') out.radiusMax = source.radiusMax;
  258. if (typeof source.fog !== 'undefined') out.fog = source.fog;
  259. if (typeof source.clipFar !== 'undefined') out.clipFar = source.clipFar;
  260. if (typeof source.minNear !== 'undefined') out.minNear = source.minNear;
  261. if (typeof source.minFar !== 'undefined') out.minFar = source.minFar;
  262. return out;
  263. }
  264. export function areSnapshotsEqual(a: Snapshot, b: Snapshot) {
  265. return a.mode === b.mode
  266. && a.fov === b.fov
  267. && a.radius === b.radius
  268. && a.radiusMax === b.radiusMax
  269. && a.fog === b.fog
  270. && a.clipFar === b.clipFar
  271. && a.minNear === b.minNear
  272. && a.minFar === b.minFar
  273. && Vec3.exactEquals(a.position, b.position)
  274. && Vec3.exactEquals(a.up, b.up)
  275. && Vec3.exactEquals(a.target, b.target);
  276. }
  277. }
  278. function updateOrtho(camera: Camera) {
  279. const { viewport, zoom, near, far, viewOffset } = camera;
  280. const fullLeft = -viewport.width / 2;
  281. const fullRight = viewport.width / 2;
  282. const fullTop = viewport.height / 2;
  283. const fullBottom = -viewport.height / 2;
  284. const dx = (fullRight - fullLeft) / (2 * zoom);
  285. const dy = (fullTop - fullBottom) / (2 * zoom);
  286. const cx = (fullRight + fullLeft) / 2;
  287. const cy = (fullTop + fullBottom) / 2;
  288. let left = cx - dx;
  289. let right = cx + dx;
  290. let top = cy + dy;
  291. let bottom = cy - dy;
  292. if (viewOffset.enabled) {
  293. const zoomW = zoom / (viewOffset.width / viewOffset.fullWidth);
  294. const zoomH = zoom / (viewOffset.height / viewOffset.fullHeight);
  295. const scaleW = (fullRight - fullLeft) / viewOffset.width;
  296. const scaleH = (fullTop - fullBottom) / viewOffset.height;
  297. left += scaleW * (viewOffset.offsetX / zoomW);
  298. right = left + scaleW * (viewOffset.width / zoomW);
  299. top -= scaleH * (viewOffset.offsetY / zoomH);
  300. bottom = top - scaleH * (viewOffset.height / zoomH);
  301. }
  302. // build projection matrix
  303. Mat4.ortho(camera.projection, left, right, top, bottom, near, far);
  304. // build view matrix
  305. Mat4.lookAt(camera.view, camera.position, camera.target, camera.up);
  306. }
  307. function updatePers(camera: Camera) {
  308. const aspect = camera.viewport.width / camera.viewport.height;
  309. const { near, far, viewOffset } = camera;
  310. let top = near * Math.tan(0.5 * camera.state.fov);
  311. let height = 2 * top;
  312. let width = aspect * height;
  313. let left = -0.5 * width;
  314. if (viewOffset.enabled) {
  315. left += viewOffset.offsetX * width / viewOffset.fullWidth;
  316. top -= viewOffset.offsetY * height / viewOffset.fullHeight;
  317. width *= viewOffset.width / viewOffset.fullWidth;
  318. height *= viewOffset.height / viewOffset.fullHeight;
  319. }
  320. // build projection matrix
  321. Mat4.perspective(camera.projection, left, left + width, top, top - height, near, far);
  322. // build view matrix
  323. Mat4.lookAt(camera.view, camera.position, camera.target, camera.up);
  324. }
  325. function updateClip(camera: Camera) {
  326. let { radius, radiusMax, mode, fog, clipFar, minNear, minFar } = camera.state;
  327. if (radius < 0.01) radius = 0.01;
  328. const normalizedFar = Math.max(clipFar ? radius : radiusMax, minFar);
  329. const cameraDistance = Vec3.distance(camera.position, camera.target);
  330. let near = cameraDistance - radius;
  331. let far = cameraDistance + normalizedFar;
  332. if (mode === 'perspective') {
  333. // set at least to 5 to avoid slow sphere impostor rendering
  334. near = Math.max(Math.min(radiusMax, minNear), near);
  335. far = Math.max(minNear, far);
  336. } else {
  337. // not too close to 0 as it causes issues with outline rendering
  338. near = Math.max(Math.min(radiusMax, minNear), near);
  339. far = Math.max(minNear, far);
  340. }
  341. if (near === far) {
  342. // make sure near and far are not identical to avoid Infinity in the projection matrix
  343. far = near + 0.01;
  344. }
  345. const fogNearFactor = -(50 - fog) / 50;
  346. const fogNear = cameraDistance - (normalizedFar * fogNearFactor);
  347. const fogFar = far;
  348. camera.near = near;
  349. camera.far = far;
  350. camera.fogNear = fogNear;
  351. camera.fogFar = fogFar;
  352. }