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

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

  1. /**
  2. A **CameraFollowAnimation** makes the {{#crossLink "Scene"}}{{/crossLink}}'s {{#crossLink "Camera"}}{{/crossLink}} dynamically follow a
  3. target component in order to keep it entirely in camera.
  4.  
  5. <a href="../../examples/#animation_camera_follow_entity"><img src="http://i.giphy.com/l0HlHcuzAjhMQ8YSY.gif"></img></a>
  6.  
  7. ## Overview
  8.  
  9. * A target can be an instance or ID of any {{#crossLink "Component"}}{{/crossLink}} subtype that provides a World-space AABB.
  10. * Can be configured to either fly or jump to each updated position of the target.
  11. * Can be configured to automatically adjust the distance between the {{#crossLink "Camera"}}{{/crossLink}}'s {{#crossLink "Lookat"}}{{/crossLink}}'s {{#crossLink "Lookat/eye:property"}}{{/crossLink}} and {{#crossLink "Lookat/look:property"}}{{/crossLink}} to keep the target fitted to the view volume.
  12.  
  13. ## Examples
  14.  
  15. * [Following an Mesh with the Camera](../../examples/#animation_camera_follow_entity)
  16. * [Following an Mesh with the Camera, keeping Mesh fitted to view volume](../../examples/#animation_camera_follow_entity_fitToView)
  17.  
  18. ## Usage
  19.  
  20. In the example below, we'll use a CameraFollowAnimation to automatically follow an {{#crossLink "Mesh"}}{{/crossLink}}. Our CameraFollowAnimation's
  21. {{#crossLink "CameraFollowAnimation/fit:property"}}{{/crossLink}} property is set ````true````, which causes it to automatically
  22. keep the {{#crossLink "Mesh"}}{{/crossLink}} fitted to the view volume. Although we can orbit the
  23. {{#crossLink "Mesh"}}{{/crossLink}} using the {{#crossLink "CameraControl"}}{{/crossLink}}, we you can't control the
  24. distance of the {{#crossLink "Camera"}}{{/crossLink}} from the {{#crossLink "Mesh"}}{{/crossLink}} because our CameraFollowAnimation
  25. automatically controls that distance in order to do the automatic fitting.
  26.  
  27. ````javascript
  28. // Create a red torus Mesh with a Translate modelling transform
  29. // that allows it to move around in World-space
  30. var mesh = new xeogl.Mesh({
  31. geometry: new xeogl.TorusGeometry(),
  32. material: new xeogl.PhongMaterial({
  33. diffuse: [1, 0.3, 0.3]
  34. }),
  35. transform: new xeogl.Translate({
  36. xyz: [0,0,0]
  37. })
  38. });
  39.  
  40. // Create a CameraFollowAnimation that makes the Scene's Camera's Lookat follow the Mesh while keeping it
  41. // fitted to the view volume. The CameraFollowAnimation will jump to each new location, and since an update will occur on every frame,
  42. // the effect will be as if we're smoothly flying after the Mesh. If the updates occur sporadically,
  43. // then we would probably instead configure it to fly to each update, to keep the animation smooth.
  44. var cameraFollowAnimation = new xeogl.CameraFollowAnimation({
  45. target: mesh,
  46. fit: true, // Fit target to view volume
  47. fitFOV: 35, // Target will occupy 35 degrees of the field-of-view
  48. fly: false // Jump to each updated boundary extents
  49. });
  50.  
  51. // Create a SplineCurve along which we'll animate our Mesh
  52. var curve = new xeogl.SplineCurve({
  53. points: [
  54. [-10, 0, 0],
  55. [-5, 15, 0],
  56. [20, 15, 0],
  57. [10, 0, 0]
  58. ]
  59. });
  60.  
  61. // Bind the Mesh Translate to a point on the SplineCurve
  62. curve.on("point", function(point) {
  63. mesh.transform.xyz = point;
  64. });
  65.  
  66. // Animate the point along the SplineCurve using the Scene clock
  67. curve.scene.on("tick", function(e) {
  68. curve.t = (e.time - e.startTime) * 0.01;
  69. });
  70.  
  71. // Allow user control of the Camera with mouse and keyboard
  72. // (zooming will be overridden by the auto-fitting configured on our CameraFollowAnimation)
  73. new xeogl.CameraControl();
  74. ````
  75.  
  76. @class CameraFollowAnimation
  77. @module xeogl
  78. @submodule animation
  79. @constructor
  80. @param [scene] {Scene} Parent {{#crossLink "Scene"}}Scene{{/crossLink}} - creates this CameraFollowAnimation within xeogl's default {{#crossLink "Scene"}}Scene{{/crossLink}} by default.
  81. @param [cfg] {*} Configs
  82. @param [cfg.id] {String} Optional ID, unique among all components in the parent {{#crossLink "Scene"}}Scene{{/crossLink}}, generated automatically when omitted.
  83. @param [cfg.meta] {*} Optional map of user-defined metadata to attach to this CameraFollowAnimation.
  84. @param [cfg.target] {Number|String|Camera} ID or instance of a {{#crossLink "Component"}}{{/crossLink}} to follow.
  85. Must be within the same {{#crossLink "Scene"}}Scene{{/crossLink}} as this CameraFollowAnimation. Defaults to the
  86. parent {{#crossLink "Scene"}}Scene{{/crossLink}}.
  87. @param [cfg.fly] {Boolean} Indicates whether this CameraFollowAnimation will either fly or jump to each updated position of the
  88. target {{#crossLink "CameraFollowAnimation/target:property"}}{{/crossLink}}.
  89. @param [cfg.fit] {Boolean} When true, will ensure that this CameraFollowAnimation automatically adjusts the distance between the {{#crossLink "Camera"}}{{/crossLink}}'s {{#crossLink "Lookat"}}{{/crossLink}}'s {{#crossLink "Lookat/eye:property"}}{{/crossLink}} and {{#crossLink "Lookat/look:property"}}{{/crossLink}} to keep the target {{#crossLink "Boundary3D"}}{{/crossLink}} fitted to the view volume.
  90. @param [cfg.fitFOV=45] {Number} How much of field-of-view, in degrees, that a target {{#crossLink "CameraFollowAnimation/target:property"}}{{/crossLink}} should
  91. fill the canvas when fitting to camera.
  92. @param [cfg.trail] {Boolean} When true, will cause this CameraFollowAnimation to point the camera in the direction that it is travelling.
  93. @extends Component
  94. */
  95. xeogl.CameraFollowAnimation = class xeoglCameraFollowAnimation extends xeogl.Component {
  96.  
  97. init(cfg) {
  98.  
  99. super.init(cfg);
  100.  
  101. this._cameraFlight = new xeogl.CameraFlightAnimation(this);
  102.  
  103. this.target = cfg.target;
  104. this.fly = cfg.fly;
  105. this.fit = cfg.fit;
  106. this.fitFOV = cfg.fitFOV;
  107. this.trail = cfg.trail;
  108. }
  109.  
  110. _update() {
  111. const target = this._attached.target;
  112. if (target && this._cameraFlight) { // This component might have been destroyed
  113. if (this._fly) {
  114. this._cameraFlight.flyTo({
  115. aabb: target.aabb
  116. });
  117. } else {
  118. this._cameraFlight.jumpTo({
  119. aabb: target.aabb
  120. });
  121. }
  122. }
  123. }
  124.  
  125. /**
  126. * The World-space {{#crossLink "Boundary3D"}}{{/crossLink}} followed by this CameraFollowAnimation.
  127. *
  128. * Must be within the same {{#crossLink "Scene"}}{{/crossLink}} as this CameraFollowAnimation. Defaults to the parent
  129. * {{#crossLink "Scene"}}Scene{{/crossLink}} when set to a null or undefined value.
  130. *
  131. * @property target
  132. * @type Component
  133. */
  134. set target(value) {
  135. /**
  136. * Fired whenever this CameraFollowAnimation's {{#crossLink "CameraFollowAnimation/target:property"}}{{/crossLink}} property changes.
  137. *
  138. * @event target
  139. * @param value The property's new value
  140. */
  141. this._attach({
  142. name: "target",
  143. type: "xeogl.Component",
  144. component: value,
  145. sceneDefault: false,
  146. on: {
  147. boundary: {
  148. callback: this._needUpdate,
  149. scope: this
  150. }
  151. }
  152. });
  153. this._needUpdate();
  154. }
  155.  
  156. get target() {
  157. return this._attached.target;
  158. }
  159.  
  160. /**
  161. * Indicates whether this CameraFollowAnimation will either fly or jump to each updated position of the
  162. * {{#crossLink "CameraFollowAnimation/target:property"}}{{/crossLink}}.
  163. *
  164. * Leave this false if the target updates continuously, otherwise leave it true
  165. * if you want the camera to fly smoothly to each updated target extents
  166. * for a less disorientating experience.
  167. *
  168. * @property fly
  169. * @type Boolean
  170. * @default false
  171. */
  172. set fly(value) {
  173. this._fly = !!value;
  174. }
  175.  
  176. get fly() {
  177. return this._fly;
  178. }
  179.  
  180. /**
  181. * When true, will ensure that this CameraFollowAnimation always adjusts the distance between the {{#crossLink "Camera"}}
  182. * camera{{/crossLink}}'s {{#crossLink "Lookat/eye:property"}}eye{{/crossLink}} and {{#crossLink "Lookat/look:property"}}{{/crossLink}}
  183. * positions so as to ensure that the {{#crossLink "CameraFollowAnimation/target:property"}}{{/crossLink}} is always filling the view volume.
  184. *
  185. * When false, the eye will remain at its current distance from the look position.
  186. *
  187. * @property fit
  188. * @type Boolean
  189. * @default true
  190. */
  191. set fit(value) {
  192. this._cameraFlight.fit = value !== false;
  193. this._needUpdate();
  194. }
  195.  
  196. get fit() {
  197. return this._cameraFlight.fit;
  198. }
  199.  
  200. /**
  201. * When {{#crossLink "CameraFollowAnimation/fit:property"}}{{/crossLink}} is set, to fit the target
  202. * {{#crossLink "CameraFollowAnimation/target:property"}}{{/crossLink}} in view, this property indicates how much
  203. * of the total field-of-view, in degrees, that the {{#crossLink "CameraFollowAnimation/target:property"}}{{/crossLink}} should fill.
  204. *
  205. * @property fitFOV
  206. * @default 45
  207. * @type Number
  208. */
  209. set fitFOV(value) {
  210. this._cameraFlight.fitFOV = value;
  211. this._needUpdate();
  212. }
  213.  
  214. get fitFOV() {
  215. return this._cameraFlight.fitFOV;
  216. }
  217.  
  218. /**
  219. * When true, will cause this CameraFollowAnimation to point the {{#crossLink "Camera"}}{{/crossLink}}
  220. * in the direction that it is travelling.
  221. *
  222. * @property trail
  223. * @type Boolean
  224. * @default false
  225. */
  226. set trail(value) {
  227. this._cameraFlight.trail = value;
  228. }
  229.  
  230. get trail() {
  231. return this._cameraFlight.trail;
  232. }
  233. };
  234.