/home/lindsay/xeolabs/xeogl-next/xeogl/examples/js/animation/cameraPath.js
API Docs for:

File: /home/lindsay/xeolabs/xeogl-next/xeogl/examples/js/animation/cameraPath.js

  1. /**
  2. A **CameraPath** defines a spline curve along which the {{#crossLink "Scene"}}{{/crossLink}}'s {{#crossLink "Camera"}}{{/crossLink}} can be animated.
  3.  
  4. * See {{#crossLink "CameraPathAnimation"}}{{/crossLink}} for usage.
  5.  
  6. @class CameraPath
  7. @module xeogl
  8. @submodule animation
  9. @constructor
  10. @param [scene] {Scene} Parent {{#crossLink "Scene"}}{{/crossLink}}.
  11. @param [cfg] {*} Configuration
  12. @param [cfg.id] {String} Optional ID, unique among all components in the parent {{#crossLink "Scene"}}{{/crossLink}}, generated automatically when omitted.
  13. @param [cfg.meta] {String:Object} Optional map of user-defined metadata to attach to this CameraPath.
  14. @param [cfg.eyeCurve] {String|SplineCurve} ID or instance of a {{#crossLink "SplineCurve"}}{{/crossLink}} to animate the {{#crossLink "Camera/eye:property"}}Camera's eye{{/crossLink}} property along.
  15. @param [cfg.lookCurve] {String|SplineCurve} ID or instance of a {{#crossLink "SplineCurve"}}{{/crossLink}} to animate the {{#crossLink "Camera/look:property"}}Camera's look{{/crossLink}} property along.
  16. @extends Component
  17. */
  18. {
  19. const tempVec3a = xeogl.math.vec3();
  20.  
  21. xeogl.CameraPath = class xeoglCameraPath extends xeogl.Component {
  22.  
  23. /**
  24. JavaScript class name for this Component.
  25.  
  26. For example: "xeogl.AmbientLight", "xeogl.MetallicMaterial" etc.
  27.  
  28. @property type
  29. @type String
  30. @final
  31. */
  32. get type() {
  33. return "xeogl.CameraPath";
  34. }
  35.  
  36. init(cfg) {
  37.  
  38. super.init(cfg);
  39.  
  40. this._frames = [];
  41.  
  42. this._eyeCurve = new xeogl.SplineCurve(this);
  43. this._lookCurve = new xeogl.SplineCurve(this);
  44. this._upCurve = new xeogl.SplineCurve(this);
  45.  
  46. if (cfg.frames) {
  47. this.addFrames(cfg.frames);
  48. }
  49. }
  50.  
  51. /**
  52. The frames set on the constructor and added with {{#crossLink "CameraPath/addFrame:method"}}{{/crossLink}}.
  53.  
  54. @property frames
  55. @type {[]}
  56. @final
  57. */
  58. get frames() {
  59. return this._frames;
  60. }
  61.  
  62. /**
  63. The {{#crossLink "SplineCurve"}}{{/crossLink}} which defines the path along which a
  64. {{#crossLink "Camera/property:eye"}}Camera's eye position{{/crossLink}} travels.
  65.  
  66. This property is read-only and is internally created and destroyed by this CameraPath.
  67.  
  68. @property eyeCurve
  69. @type {SplineCurve}
  70. @final
  71. */
  72. get eyeCurve() {
  73. return this._eyeCurve;
  74. }
  75.  
  76. /**
  77. The {{#crossLink "SplineCurve"}}{{/crossLink}} which defines the path along which a
  78. {{#crossLink "Camera/property:eye"}}Camera's look position{{/crossLink}} travels.
  79.  
  80. This property is read-only and is internally created and destroyed by this CameraPath.
  81.  
  82. @property lookCurve
  83. @type {SplineCurve}
  84. @final
  85. */
  86. get lookCurve() {
  87. return this._lookCurve;
  88. }
  89.  
  90. /**
  91. The {{#crossLink "SplineCurve"}}{{/crossLink}} which defines the path along which a
  92. {{#crossLink "Camera/property:up"}}Camera's up vector{{/crossLink}} travels.
  93.  
  94. This property is read-only and is internally created and destroyed by this CameraPath.
  95.  
  96. @property upCurve
  97. @type {SplineCurve}
  98. @final
  99. */
  100. get upCurve() {
  101. return this._upCurve;
  102. }
  103.  
  104. /**
  105. Adds a frame to this CameraPath, given as the current position of a {{#crossLink "Camera"}}{{/crossLink}}.
  106.  
  107. @param {Number} t Time instant for the new frame.
  108. @param {Camera} camera The {{#crossLink "Camera"}}{{/crossLink}}.
  109. */
  110. saveFrame(t) {
  111. const camera = this.scene.camera;
  112. this.addFrame(t, camera.eye, camera.look, camera.up);
  113. }
  114.  
  115. /**
  116. Adds a frame to this CameraPath, specified as values for eye, look and up vectors at a given time instant.
  117.  
  118. @param {Number} t Time instant for the new frame;
  119. @param {Float32Array} eye A three-element vector specifying the eye position for the new frame.
  120. @param {Float32Array} look A three-element vector specifying the look position for the new frame.
  121. @param {Float32Array} up A three-element vector specifying the up vector for the new frame.
  122. */
  123. addFrame(t, eye, look, up) {
  124. const frame = {
  125. t: t,
  126. eye: eye.slice(0),
  127. look: look.slice(0),
  128. up: up.slice(0)
  129. };
  130. this._frames.push(frame);
  131. this._eyeCurve.points.push(frame.eye);
  132. this._lookCurve.points.push(frame.look);
  133. this._upCurve.points.push(frame.up);
  134. }
  135.  
  136. /**
  137. Adds multiple frames to this CameraPath, each frame specified as a set of values for eye, look and up
  138. vectors at a given time instant.
  139.  
  140. @param {Array} frames An array of frames.
  141. */
  142. addFrames(frames) {
  143. let frame;
  144. for (let i = 0, len = frames.length; i < len; i++) {
  145. frame = frames[i];
  146. this.addFrame(frame.t || 0, frame.eye, frame.look, frame.up);
  147. }
  148. }
  149.  
  150. /**
  151. Sets the position of the {{#crossLink "Scene"}}{{/crossLink}}'s {{#crossLink "Camera"}}{{/crossLink}} to a position interpolated within this CameraPath
  152. at the given time instant.
  153.  
  154. @param {Number} t Time instant.
  155. */
  156. loadFrame(t) {
  157.  
  158. const camera = this.scene.camera;
  159.  
  160. t = t < 0.0 ? 0.0 : (t > 1.0 ? 1.0 : t);
  161.  
  162. camera.eye = this._eyeCurve.getPoint(t, tempVec3a);
  163. camera.look = this._lookCurve.getPoint(t, tempVec3a);
  164. camera.up = this._upCurve.getPoint(t, tempVec3a);
  165. }
  166.  
  167. /**
  168. Gets eye, look and up vectors on this CameraPath at a given instant.
  169.  
  170. @param {Number} t Time instant.
  171. @param {Float32Array} eye The eye position to update.
  172. @param {Float32Array} look The look position to update.
  173. @param {Float32Array} up The up vector to update.
  174. */
  175. sampleFrame(t, eye, look, up) {
  176. t = t < 0.0 ? 0.0 : (t > 1.0 ? 1.0 : t);
  177. this._eyeCurve.getPoint(t, eye);
  178. this._lookCurve.getPoint(t, look);
  179. this._upCurve.getPoint(t, up);
  180. }
  181.  
  182. /**
  183. Removes all frames from this CameraPath.
  184. */
  185. clearFrames() {
  186. this._frames = [];
  187. this._eyeCurve.points = [];
  188. this._lookCurve.points = [];
  189. this._upCurve.points = [];
  190. }
  191. };
  192. }