phaser/src/animations/Animation.js

895 lines
22 KiB
JavaScript
Raw Normal View History

2018-01-16 13:04:35 +00:00
var Class = require('../utils/Class');
2018-01-16 12:59:05 +00:00
var Frame = require('./AnimationFrame');
2018-01-16 13:04:35 +00:00
var GetValue = require('../utils/object/GetValue');
// A Frame based Animation
// This consists of a key, some default values (like the frame rate) and a bunch of Frame objects.
// The Animation Manager creates these
// Game Objects don't own an instance of these directly
// Game Objects have the Animation Component, which are like playheads to global Animations (these objects)
// So multiple Game Objects can have playheads all pointing to this one Animation instance
2017-10-13 10:38:34 +00:00
// Phaser.Animations.Animation
var Animation = new Class({
initialize:
2017-04-04 15:50:28 +00:00
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @class Animation
* @memberOf Phaser.Animations.Animation
* @constructor
* @since 3.0.0
*
* @param {undefined} manager - [description]
* @param {undefined} key - [description]
* @param {undefined} config - [description]
*/
function Animation (manager, key, config)
{
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {Phaser.Animations.AnimationManager} manager
*/
this.manager = manager;
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {string} key
*/
this.key = key;
// A frame based animation (as opposed to a bone based animation)
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {string} type
* @default frame
*/
this.type = 'frame';
// Extract all the frame data into the frames array
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {array} frames
*/
2018-01-16 12:59:05 +00:00
this.frames = this.getFrames(
manager.textureManager,
GetValue(config, 'frames', []),
GetValue(config, 'defaultTextureKey', null)
);
// The frame rate of playback in frames per second (default 24 if duration is null)
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {integer} frameRate
* @default 24
*/
this.frameRate = GetValue(config, 'frameRate', null);
// How long the animation should play for. If frameRate is set it overrides this value
// otherwise frameRate is derived from duration
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {integer} duration
*/
this.duration = GetValue(config, 'duration', null);
2017-04-05 00:15:53 +00:00
if (this.duration === null && this.frameRate === null)
{
// No duration or frameRate given, use default frameRate of 24fps
this.frameRate = 24;
this.duration = this.frameRate / this.frames.length;
}
else if (this.duration && this.frameRate === null)
{
// Duration given but no frameRate, so set the frameRate based on duration
// I.e. 12 frames in the animation, duration = 4 (4000 ms)
// So frameRate is 12 / 4 = 3 fps
this.frameRate = this.frames.length / this.duration;
}
else
{
// frameRate given, derive duration from it (even if duration also specified)
// I.e. 15 frames in the animation, frameRate = 30 fps
// So duration is 15 / 30 = 0.5 (half a second)
this.duration = this.frames.length / this.frameRate;
}
// ms per frame (without including frame specific modifiers)
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {integer} msPerFrame
*/
this.msPerFrame = 1000 / this.frameRate;
// Skip frames if the time lags, or always advanced anyway?
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {boolean} skipMissedFrames
* @default false
*/
this.skipMissedFrames = GetValue(config, 'skipMissedFrames', true);
// Delay before starting playback (in seconds)
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {integer} delay
* @default 0
*/
this.delay = GetValue(config, 'delay', 0);
// Number of times to repeat the animation (-1 for infinity)
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {integer} repeat
* @default 0
*/
this.repeat = GetValue(config, 'repeat', 0);
// Delay before the repeat starts (in seconds)
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {integer} repeatDelay
* @default 0
*/
this.repeatDelay = GetValue(config, 'repeatDelay', 0);
// Should the animation yoyo? (reverse back down to the start) before repeating?
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {boolean} yoyo
* @default false
*/
this.yoyo = GetValue(config, 'yoyo', false);
// Should sprite.visible = true when the animation starts to play?
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {boolean} showOnStart
* @default false
*/
this.showOnStart = GetValue(config, 'showOnStart', false);
// Should sprite.visible = false when the animation finishes?
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {boolean} hideOnComplete
* @default false
*/
this.hideOnComplete = GetValue(config, 'hideOnComplete', false);
// Callbacks
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {object} callbackScope
*/
this.callbackScope = GetValue(config, 'callbackScope', this);
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {function} onStart
*/
this.onStart = GetValue(config, 'onStart', false);
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {array} onStartParams
*/
this.onStartParams = GetValue(config, 'onStartParams', []);
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {function} onRepeat
*/
this.onRepeat = GetValue(config, 'onRepeat', false);
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {array} onRepeatParams
*/
this.onRepeatParams = GetValue(config, 'onRepeatParams', []);
// Called for EVERY frame of the animation.
// See AnimationFrame.onUpdate for a frame specific callback.
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {function} onUpdate
*/
this.onUpdate = GetValue(config, 'onUpdate', false);
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {array} onUpdateParams
*/
this.onUpdateParams = GetValue(config, 'onUpdateParams', []);
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {function} onComplete
*/
this.onComplete = GetValue(config, 'onComplete', false);
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {array} onCompleteParams
*/
this.onCompleteParams = GetValue(config, 'onCompleteParams', []);
// Global pause, effects all Game Objects using this Animation instance
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {boolean} paused
* @default false
*/
this.paused = false;
2018-01-21 13:01:38 +00:00
/**
* [description]
*
* @property {null} manager.on('pauseall', this.pause.bind(this))
*/
this.manager.on('pauseall', this.pause.bind(this));
this.manager.on('resumeall', this.resume.bind(this));
},
2018-01-16 12:59:05 +00:00
// config = Array of Animation config objects, like:
// [
// { key: 'gems', frame: 'diamond0001', [duration], [visible], [onUpdate] }
// ]
// Add frames to the end of the animation
/**
* [description]
*
* @method Phaser.Animations.Animation#addFrame
* @since 3.0.0
*
* @param {[type]} config - [description]
*
* @return {Phaser.Animations.Animation} [description]
*/
addFrame: function (config)
{
return this.addFrameAt(this.frames.length, config);
},
// config = Array of Animation config objects, like:
// [
// { key: 'gems', frame: 'diamond0001', [duration], [visible], [onUpdate] }
// ]
// Add frame/s into the animation
/**
* [description]
*
* @method Phaser.Animations.Animation#addFrameAt
* @since 3.0.0
*
* @param {integer} index - [description]
* @param {[type]} config - [description]
*
* @return {Phaser.Animations.Animation} [description]
*/
addFrameAt: function (index, config)
{
var newFrames = this.getFrames(this.manager.textureManager, config);
if (newFrames.length > 0)
{
if (index === 0)
{
this.frames = newFrames.concat(this.frames);
}
else if (index === this.frames.length)
{
this.frames = this.frames.concat(newFrames);
}
else
{
var pre = this.frames.slice(0, index);
var post = this.frames.slice(index);
this.frames = pre.concat(newFrames, post);
}
this.updateFrameSequence();
}
return this;
},
/**
* [description]
*
* @method Phaser.Animations.Animation#checkFrame
* @since 3.0.0
*
* @param {integer} index - [description]
*
* @return {boolean} [description]
*/
checkFrame: function (index)
{
return (index < this.frames.length);
},
/**
* [description]
*
* @method Phaser.Animations.Animation#completeAnimation
* @since 3.0.0
*
* @param {Phaser.GameObjects.Components.Animation} component - [description]
*/
completeAnimation: function (component)
{
if (this.hideOnComplete)
{
component.parent.visible = false;
}
component.stop(true);
},
/**
* [description]
*
* @method Phaser.Animations.Animation#getFirstTick
* @since 3.0.0
*
* @param {Phaser.GameObjects.Components.Animation} component - [description]
* @param {boolean} [includeDelay=true] - [description]
*/
getFirstTick: function (component, includeDelay)
{
if (includeDelay === undefined) { includeDelay = true; }
// When is the first update due?
component.accumulator = 0;
component.nextTick = component.msPerFrame + component.currentFrame.duration;
if (includeDelay)
{
component.nextTick += (component._delay * 1000);
}
},
/**
* [description]
*
* @method Phaser.Animations.Animation#getFrameAt
* @since 3.0.0
*
* @param {integer} index - [description]
*
* @return {Phaser.Animations.AnimationFrame} [description]
*/
getFrameAt: function (index)
{
return this.frames[index];
},
/**
* [description]
*
* @method Phaser.Animations.Animation#getFrames
* @since 3.0.0
*
* @param {[type]} textureManager - [description]
* @param {[type]} frames - [description]
*
* @return {Phaser.Animations.AnimationFrame[]} [description]
*/
getFrames: function (textureManager, frames, defaultTextureKey)
{
// frames: [
// { key: textureKey, frame: textureFrame },
// { key: textureKey, frame: textureFrame, duration: float },
// { key: textureKey, frame: textureFrame, onUpdate: function }
// { key: textureKey, frame: textureFrame, visible: boolean }
// ],
var out = [];
var prev;
var animationFrame;
var index = 1;
var i;
var textureKey;
// if frames is a string, we'll get all the frames from the texture manager as if it's a sprite sheet
if (typeof frames === 'string')
{
textureKey = frames;
var texture = textureManager.get(textureKey);
var frameKeys = texture.getFrameNames();
frames = [];
frameKeys.forEach(function (idx, value)
{
frames.push({ key: textureKey, frame: value });
});
}
// console.table(frames);
if (!Array.isArray(frames) || frames.length === 0)
{
return out;
}
for (i = 0; i < frames.length; i++)
{
var item = frames[i];
var key = GetValue(item, 'key', defaultTextureKey);
if (!key)
{
continue;
}
var frame = GetValue(item, 'frame', 0);
var textureFrame = textureManager.getFrame(key, frame);
animationFrame = new Frame(key, frame, index, textureFrame);
animationFrame.duration = GetValue(item, 'duration', 0);
animationFrame.onUpdate = GetValue(item, 'onUpdate', null);
var visible = GetValue(item, 'visible', null);
if (visible !== null)
{
animationFrame.setVisible = true;
animationFrame.visible = visible;
}
animationFrame.isFirst = (!prev);
// The previously created animationFrame
if (prev)
{
prev.nextFrame = animationFrame;
animationFrame.prevFrame = prev;
}
out.push(animationFrame);
prev = animationFrame;
index++;
}
if (out.length > 0)
{
animationFrame.isLast = true;
// Link them end-to-end, so they loop
animationFrame.nextFrame = out[0];
out[0].prevFrame = animationFrame;
// Generate the progress data
var slice = 1 / (out.length - 1);
for (i = 0; i < out.length; i++)
{
out[i].progress = i * slice;
}
}
return out;
},
/**
* [description]
*
* @method Phaser.Animations.Animation#getNextTick
* @since 3.0.0
*
* @param {Phaser.GameObjects.Components.Animation} component - [description]
*/
getNextTick: function (component)
{
// accumulator += delta * _timeScale
// after a large delta surge (perf issue for example) we need to adjust for it here
// When is the next update due?
component.accumulator -= component.nextTick;
component.nextTick = component.msPerFrame + component.currentFrame.duration;
},
/**
* [description]
*
* @method Phaser.Animations.Animation#load
* @since 3.0.0
*
* @param {Phaser.GameObjects.Components.Animation} component - [description]
* @param {integer} startFrame - [description]
*/
load: function (component, startFrame)
{
if (startFrame >= this.frames.length)
{
startFrame = 0;
}
2018-01-16 12:59:05 +00:00
if (component.currentAnim !== this)
{
component.currentAnim = this;
component._timeScale = 1;
component.frameRate = this.frameRate;
component.duration = this.duration;
component.msPerFrame = this.msPerFrame;
component.skipMissedFrames = this.skipMissedFrames;
component._delay = this.delay;
component._repeat = this.repeat;
component._repeatDelay = this.repeatDelay;
component._yoyo = this.yoyo;
component._callbackArgs[1] = this;
component._updateParams = component._callbackArgs.concat(this.onUpdateParams);
}
component.updateFrame(this.frames[startFrame]);
},
/**
* [description]
*
* @method Phaser.Animations.Animation#nextFrame
* @since 3.0.0
*
* @param {Phaser.GameObjects.Components.Animation} component - [description]
*/
nextFrame: function (component)
{
var frame = component.currentFrame;
// TODO: Add frame skip support
if (frame.isLast)
{
// We're at the end of the animation
// Yoyo? (happens before repeat)
if (this.yoyo)
{
component.forward = false;
component.updateFrame(frame.prevFrame);
// Delay for the current frame
this.getNextTick(component);
}
else if (component.repeatCounter > 0)
{
// Repeat (happens before complete)
this.repeatAnimation(component);
}
else
{
this.completeAnimation(component);
}
}
else
{
component.updateFrame(frame.nextFrame);
this.getNextTick(component);
}
},
/**
* [description]
*
* @method Phaser.Animations.Animation#previousFrame
* @since 3.0.0
*
* @param {Phaser.GameObjects.Components.Animation} component - [description]
*/
previousFrame: function (component)
{
var frame = component.currentFrame;
// TODO: Add frame skip support
if (frame.isFirst)
{
// We're at the start of the animation
if (component.repeatCounter > 0)
{
// Repeat (happens before complete)
this.repeatAnimation(component);
}
else
{
this.completeAnimation(component);
}
}
else
{
component.updateFrame(frame.prevFrame);
this.getNextTick(component);
}
},
// Remove frame if it matches the given frame
/**
* [description]
*
* @method Phaser.Animations.Animation#removeFrame
* @since 3.0.0
*
* @param {Phaser.Animations.AnimationFrame} frame - [description]
*
* @return {Phaser.Animations.Animation} [description]
*/
removeFrame: function (frame)
{
var index = this.frames.indexOf(frame);
if (index !== -1)
{
this.removeFrameAt(index);
}
return this;
},
/**
* [description]
*
* @method Phaser.Animations.Animation#removeFrameAt
* @since 3.0.0
*
* @param {integer} index - [description]
*
* @return {Phaser.Animations.Animation} [description]
*/
removeFrameAt: function (index)
{
this.frames.splice(index, 1);
this.updateFrameSequence();
return this;
},
/**
* [description]
*
* @method Phaser.Animations.Animation#repeatAnimation
* @since 3.0.0
*
* @param {Phaser.GameObjects.Components.Animation} component - [description]
*/
repeatAnimation: function (component)
{
if (component._repeatDelay > 0 && component.pendingRepeat === false)
{
component.pendingRepeat = true;
component.accumulator -= component.nextTick;
component.nextTick += (component._repeatDelay * 1000);
}
else
{
component.repeatCounter--;
component.forward = true;
component.updateFrame(component.currentFrame.nextFrame);
this.getNextTick(component);
component.pendingRepeat = false;
if (this.onRepeat)
{
this.onRepeat.apply(this.callbackScope, component._callbackArgs.concat(this.onRepeatParams));
}
}
},
/**
* [description]
*
* @method Phaser.Animations.Animation#setFrame
* @since 3.0.0
*
* @param {Phaser.GameObjects.Components.Animation} component - [description]
*/
setFrame: function (component)
{
// Work out which frame should be set next on the child, and set it
if (component.forward)
{
this.nextFrame(component);
}
else
{
this.previousFrame(component);
}
},
/**
* [description]
*
* @method Phaser.Animations.Animation#toJSON
* @since 3.0.0
*
* @return {object} [description]
*/
toJSON: function ()
{
var output = {
key: this.key,
type: this.type,
frames: [],
frameRate: this.frameRate,
duration: this.duration,
skipMissedFrames: this.skipMissedFrames,
delay: this.delay,
repeat: this.repeat,
repeatDelay: this.repeatDelay,
yoyo: this.yoyo,
showOnStart: this.showOnStart,
hideOnComplete: this.hideOnComplete
};
this.frames.forEach(function (frame)
{
output.frames.push(frame.toJSON());
});
return output;
},
/**
* [description]
*
* @method Phaser.Animations.Animation#updateFrameSequence
* @since 3.0.0
*
* @return {Phaser.Animations.Animation} [description]
*/
updateFrameSequence: function ()
{
var len = this.frames.length;
var slice = 1 / (len - 1);
for (var i = 0; i < len; i++)
{
var frame = this.frames[i];
frame.index = i + 1;
frame.isFirst = false;
frame.isLast = false;
frame.progress = i * slice;
if (i === 0)
{
frame.isFirst = true;
frame.isLast = (len === 1);
frame.prevFrame = this.frames[len - 1];
frame.nextFrame = this.frames[i + 1];
}
else if (i === len - 1)
{
frame.isLast = true;
frame.prevFrame = this.frames[len - 2];
frame.nextFrame = this.frames[0];
}
else if (len > 1)
{
frame.prevFrame = this.frames[i - 1];
frame.nextFrame = this.frames[i + 1];
}
}
return this;
},
/**
* [description]
*
* @method Phaser.Animations.Animation#pause
* @since 3.0.0
*
* @return {Phaser.Animations.Animation} [description]
*/
pause: function ()
{
this.paused = true;
2018-01-16 12:59:05 +00:00
return this;
},
2018-01-16 12:59:05 +00:00
/**
* [description]
*
* @method Phaser.Animations.Animation#resume
* @since 3.0.0
*
* @return {Phaser.Animations.Animation} [description]
*/
resume: function ()
{
this.paused = false;
2018-01-16 12:59:05 +00:00
return this;
},
2018-01-16 12:59:05 +00:00
/**
* [description]
*
* @method Phaser.Animations.Animation#destroy
* @since 3.0.0
*/
destroy: function ()
{
2018-01-16 12:59:05 +00:00
// TODO
}
});
module.exports = Animation;