123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /**
- *
- * A clip that has been explicitly scheduled.
- *
- * @author Ben Houston / http://clara.io/
- * @author David Sarno / http://lighthaus.us/
- */
- THREE.AnimationAction = function ( clip, startTime, timeScale, weight, loop ) {
- if ( clip === undefined ) throw new Error( 'clip is null' );
- this.clip = clip;
- this.localRoot = null;
- this.startTime = startTime || 0;
- this.timeScale = timeScale || 1;
- this.weight = weight || 1;
- this.loop = loop || THREE.LoopRepeat;
- this.loopCount = 0;
- this.enabled = true; // allow for easy disabling of the action.
- this.actionTime = - this.startTime;
- this.clipTime = 0;
- this.propertyBindings = [];
- };
- /*
- THREE.LoopOnce = 2200;
- THREE.LoopRepeat = 2201;
- THREE.LoopPingPing = 2202;
- */
- THREE.AnimationAction.prototype = {
- constructor: THREE.AnimationAction,
- setLocalRoot: function( localRoot ) {
- this.localRoot = localRoot;
- return this;
- },
- updateTime: function( clipDeltaTime ) {
- var previousClipTime = this.clipTime;
- var previousLoopCount = this.loopCount;
- var previousActionTime = this.actionTime;
- var duration = this.clip.duration;
- this.actionTime = this.actionTime + clipDeltaTime;
- if ( this.loop === THREE.LoopOnce ) {
- this.loopCount = 0;
- this.clipTime = Math.min( Math.max( this.actionTime, 0 ), duration );
- // if time is changed since last time, see if we have hit a start/end limit
- if ( this.clipTime !== previousClipTime ) {
- if ( this.clipTime === duration ) {
- this.mixer.dispatchEvent( { type: 'finished', action: this, direction: 1 } );
- } else if ( this.clipTime === 0 ) {
- this.mixer.dispatchEvent( { type: 'finished', action: this, direction: -1 } );
- }
- }
- return this.clipTime;
- }
- this.loopCount = Math.floor( this.actionTime / duration );
- var newClipTime = this.actionTime - this.loopCount * duration;
- newClipTime = newClipTime % duration;
- // if we are ping pong looping, ensure that we go backwards when appropriate
- if ( this.loop == THREE.LoopPingPong ) {
- if ( Math.abs( this.loopCount % 2 ) === 1 ) {
- newClipTime = duration - newClipTime;
- }
- }
- this.clipTime = newClipTime;
- if ( this.loopCount !== previousLoopCount ) {
- this.mixer.dispatchEvent( { type: 'loop', action: this, loopDelta: ( this.loopCount - this.loopCount ) } );
- }
- return this.clipTime;
- },
- syncWith: function( action ) {
- this.actionTime = action.actionTime;
- this.timeScale = action.timeScale;
- return this;
- },
- warpToDuration: function( duration ) {
- this.timeScale = this.clip.duration / duration;
- return this;
- },
- init: function( time ) {
- this.clipTime = time - this.startTime;
- return this;
- },
- update: function( clipDeltaTime ) {
- this.updateTime( clipDeltaTime );
- var clipResults = this.clip.getAt( this.clipTime );
- return clipResults;
- },
- getTimeScaleAt: function( time ) {
- if ( this.timeScale.getAt ) {
- // pass in time, not clip time, allows for fadein/fadeout across multiple loops of the clip
- return this.timeScale.getAt( time );
- }
- return this.timeScale;
- },
- getWeightAt: function( time ) {
- if ( this.weight.getAt ) {
- // pass in time, not clip time, allows for fadein/fadeout across multiple loops of the clip
- return this.weight.getAt( time );
- }
- return this.weight;
- }
- };
|