(function() { /** * Sprite constructor * @constructor * @memberof Kinetic * @augments Kinetic.Shape * @param {Object} config * @param {String} config.animation animation key * @param {Object} config.animations animation map * @param {Integer} [config.index] animation index * @param {Image} config.image image object * @@shapeParams * @@nodeParams * @example * var animations = {
* idle: [{
* x: 2,
* y: 2,
* width: 70,
* height: 119
* }, {
* x: 71,
* y: 2,
* width: 74,
* height: 119
* }, {
* x: 146,
* y: 2,
* width: 81,
* height: 119
* }, {
* x: 226,
* y: 2,
* width: 76,
* height: 119
* }],
* punch: [{
* x: 2,
* y: 138,
* width: 74,
* height: 122
* }, {
* x: 76,
* y: 138,
* width: 84,
* height: 122
* }, {
* x: 346,
* y: 138,
* width: 120,
* height: 122
* }]
* };

* * var imageObj = new Image();
* imageObj.onload = function() {
* var sprite = new Kinetic.Sprite({
* x: 200,
* y: 100,
* image: imageObj,
* animation: 'idle',
* animations: animations,
* frameRate: 7,
* index: 0
* });
* };
* imageObj.src = '/path/to/image.jpg' */ Kinetic.Sprite = function(config) { this.___init(config); }; Kinetic.Sprite.prototype = { ___init: function(config) { // call super constructor Kinetic.Shape.call(this, config); this.className = 'Sprite'; this.anim = new Kinetic.Animation(); var that = this; this.on('animationChange.kinetic', function() { // reset index when animation changes that.setIndex(0); }); }, drawFunc: function(context) { var anim = this.getAnimation(), index = this.getIndex(), f = this.getAnimations()[anim][index], image = this.getImage(); if(image) { context.drawImage(image, f.x, f.y, f.width, f.height, 0, 0, f.width, f.height); } }, drawHitFunc: function(context) { var anim = this.getAnimation(), index = this.getIndex(), f = this.getAnimations()[anim][index]; context.beginPath(); context.rect(0, 0, f.width, f.height); context.closePath(); context.fill(this); }, /** * start sprite animation * @method * @memberof Kinetic.Sprite.prototype */ start: function() { var that = this; var layer = this.getLayer(); /* * animation object has no executable function because * the updates are done with a fixed FPS with the setInterval * below. The anim object only needs the layer reference for * redraw */ this.anim.setLayers(layer); this.interval = setInterval(function() { var index = that.getIndex(); that._updateIndex(); if(that.afterFrameFunc && index === that.afterFrameIndex) { that.afterFrameFunc(); delete that.afterFrameFunc; delete that.afterFrameIndex; } }, 1000 / this.getFrameRate()); this.anim.start(); }, /** * stop sprite animation * @method * @memberof Kinetic.Sprite.prototype */ stop: function() { this.anim.stop(); clearInterval(this.interval); }, /** * set after frame event handler * @method * @memberof Kinetic.Sprite.prototype * @param {Integer} index frame index * @param {Function} func function to be executed after frame has been drawn */ afterFrame: function(index, func) { this.afterFrameIndex = index; this.afterFrameFunc = func; }, _updateIndex: function() { var index = this.getIndex(), animation = this.getAnimation(), animations = this.getAnimations(), anim = animations[animation], len = anim.length; if(index < len - 1) { this.setIndex(index + 1); } else { this.setIndex(0); } } }; Kinetic.Util.extend(Kinetic.Sprite, Kinetic.Shape); // add getters setters Kinetic.Factory.addGetterSetter(Kinetic.Sprite, 'animation'); /** * set animation key * @name setAnimation * @method * @memberof Kinetic.Sprite.prototype * @param {String} anim animation key */ /** * get animation key * @name getAnimation * @method * @memberof Kinetic.Sprite.prototype */ Kinetic.Factory.addGetterSetter(Kinetic.Sprite, 'animations'); /** * set animations map * @name setAnimations * @method * @memberof Kinetic.Sprite.prototype * @param {Object} animations */ /** * get animations map * @name getAnimations * @method * @memberof Kinetic.Sprite.prototype */ Kinetic.Factory.addGetterSetter(Kinetic.Sprite, 'image'); /** * set image * @name setImage * @method * @memberof Kinetic.Sprite.prototype * @param {Image} image */ /** * get image * @name getImage * @method * @memberof Kinetic.Sprite.prototype */ Kinetic.Factory.addGetterSetter(Kinetic.Sprite, 'index', 0); /** * set animation frame index * @name setIndex * @method * @memberof Kinetic.Sprite.prototype * @param {Integer} index frame index */ /** * get animation frame index * @name getIndex * @method * @memberof Kinetic.Sprite.prototype */ Kinetic.Factory.addGetterSetter(Kinetic.Sprite, 'frameRate', 17); /** * set frame rate in frames / second. Default is 17 frames per second. Increase this number to make the sprite * animation run faster, and decrease the number to make the sprite animation run slower * @name setFrameRate * @method * @memberof Kinetic.Sprite.prototype * @param {Integer} frameRate */ /** * get frame rate * @name getFrameRate * @method * @memberof Kinetic.Sprite.prototype */ })();