/**************************************************************************** Copyright (c) 2010-2012 cocos2d-x.org Copyright (c) 2008-2010 Ricardo Quesada Copyright (c) 2011 Zynga Inc. http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ /** Default Action tag * @constant * @type {Number} */ cc.ACTION_TAG_INVALID = -1; /** * Base class for cc.Action objects. * @class * @extends cc.Class */ cc.Action = cc.Class.extend(/** @lends cc.Action# */{ //***********variables************* _originalTarget:null, /** The "target". The target will be set with the 'startWithTarget' method. When the 'stop' method is called, target will be set to nil. The target is 'assigned', it is not 'retained'. */ _target:null, _tag:cc.ACTION_TAG_INVALID, //**************Public Functions*********** ctor:function () { this._originalTarget = null; this._target = null; this._tag = cc.ACTION_TAG_INVALID; }, /** * @return {String} */ description:function () { return ""; }, /** * to copy object with deep copy. * @deprecated * @return {object} */ copy:function () { return this.clone(); }, /** * returns a clone of action * @return {cc.Action} */ clone:function () { var action = new cc.Action(); action._originalTarget = null; action._target = null; action._tag = this._tag; return action; }, /** * return true if the action has finished * @return {Boolean} */ isDone:function () { return true; }, /** * called before the action start. It will also set the target. * @param {cc.Node} target */ startWithTarget:function (target) { this._originalTarget = target; this._target = target; }, /** * called after the action has finished. It will set the 'target' to nil. * IMPORTANT: You should never call "action stop" manually. Instead, use: "target.stopAction(action);" */ stop:function () { this._target = null; }, /** called every frame with it's delta time. DON'T override unless you know what you are doing. * * @param {Number} dt */ step:function (dt) { cc.log("[Action step]. override me"); }, /**

called once per frame. time a value between 0 and 1

For example:
- 0 means that the action just started
- 0.5 means that the action is in the middle
- 1 means that the action is over

* @param {Number} time */ update:function (time) { cc.log("[Action update]. override me"); }, /** * * @return {cc.Node} */ getTarget:function () { return this._target; }, /** The action will modify the target properties. * * @param {cc.Node} target */ setTarget:function (target) { this._target = target; }, /** * * @return {cc.Node} */ getOriginalTarget:function () { return this._originalTarget; }, /** Set the original target, since target can be nil.
* Is the target that were used to run the action.
* Unless you are doing something complex, like cc.ActionManager, you should NOT call this method.
* The target is 'assigned', it is not 'retained'.
* @param {cc.Node} originalTarget */ setOriginalTarget:function (originalTarget) { this._originalTarget = originalTarget; }, /** * * @return {Number} */ getTag:function () { return this._tag; }, /** * * @param {Number} tag */ setTag:function (tag) { this._tag = tag; }, /** * Currently JavaScript Bindigns (JSB), in some cases, needs to use retain and release. This is a bug in JSB, * and the ugly workaround is to use retain/release. So, these 2 methods were added to be compatible with JSB. * This is a hack, and should be removed once JSB fixes the retain/release bug */ retain:function () { }, release:function () { } }); /** Allocates and initializes the action * @returns {cc.Action} * @example * // example * var action = cc.Action.create(); */ cc.Action.create = function () { return new cc.Action(); }; /** *

Base class actions that do have a finite time duration.
* Possible actions:
* - An action with a duration of 0 seconds
* - An action with a duration of 35.5 seconds

* Infinite time actions are valid * @class * @extends cc.Action */ cc.FiniteTimeAction = cc.Action.extend(/** @lends cc.FiniteTimeAction# */{ //! duration in seconds _duration:0, ctor:function () { cc.Action.prototype.ctor.call(this); this._duration = 0; }, /** get duration in seconds of the action * * @return {Number} */ getDuration:function () { return this._duration; }, /** set duration in seconds of the action * * @param {Number} duration */ setDuration:function (duration) { this._duration = duration; }, /** returns a reversed action * * @return {Null} */ reverse:function () { cc.log("cocos2d: FiniteTimeAction#reverse: Implement me"); return null; }, /** * */ clone:function () { return new cc.FiniteTimeAction(); } }); /** * Changes the speed of an action, making it take longer (speed>1) * or less (speed<1) time.
* Useful to simulate 'slow motion' or 'fast forward' effect. * @warning This action can't be Sequenceable because it is not an cc.IntervalAction * @class * @extends cc.Action */ cc.Speed = cc.Action.extend(/** @lends cc.Speed# */{ _speed:0.0, _innerAction:null, ctor:function () { cc.Action.prototype.ctor.call(this); this._speed = 0; this._innerAction = null; }, /** * @return {Number} */ getSpeed:function () { return this._speed; }, /** alter the speed of the inner function in runtime * @param {Number} speed */ setSpeed:function (speed) { this._speed = speed; }, /** initializes the action * @param {cc.ActionInterval} action * @param {Number} speed * @return {Boolean} */ initWithAction:function (action, speed) { if(!action) throw "cc.Speed.initWithAction(): action must be non nil"; this._innerAction = action; this._speed = speed; return true; }, /** * returns a clone of action * @returns {cc.Speed} */ clone:function () { var action = new cc.Speed(); action.initWithAction(this._innerAction.clone(), this._speed); return action; }, /** * @param {cc.Node} target */ startWithTarget:function (target) { cc.Action.prototype.startWithTarget.call(this, target); this._innerAction.startWithTarget(target); }, /** * Stop the action */ stop:function () { this._innerAction.stop(); cc.Action.prototype.stop.call(this); }, /** * @param {Number} dt */ step:function (dt) { this._innerAction.step(dt * this._speed); }, /** * @return {Boolean} */ isDone:function () { return this._innerAction.isDone(); }, /** * @return {cc.ActionInterval} */ reverse:function () { return (cc.Speed.create(this._innerAction.reverse(), this._speed)); }, /** * * @param {cc.ActionInterval} action */ setInnerAction:function (action) { if (this._innerAction != action) { this._innerAction = action; } }, /** * * @return {cc.ActionInterval} */ getInnerAction:function () { return this._innerAction; } }); /** creates the action * * @param {cc.ActionInterval} action * @param {Number} speed * @return {cc.Speed} */ cc.Speed.create = function (action, speed) { var ret = new cc.Speed(); if (ret && ret.initWithAction(action, speed)) return ret; return null; }; /** * cc.Follow is an action that "follows" a node. * @example * //example * //Instead of using cc.Camera as a "follower", use this action instead. * layer.runAction(cc.Follow.actionWithTarget(hero)); * @class * @extends cc.Action */ cc.Follow = cc.Action.extend(/** @lends cc.Follow# */{ // node to follow _followedNode:null, // whether camera should be limited to certain area _boundarySet:false, // if screen size is bigger than the boundary - update not needed _boundaryFullyCovered:false, // fast access to the screen dimensions _halfScreenSize:null, _fullScreenSize:null, /** world leftBoundary * @Type {Number} */ leftBoundary:0.0, /** world rightBoundary * @Type Number */ rightBoundary:0.0, /** world topBoundary * @Type Number */ topBoundary:0.0, /** world bottomBoundary * @Type {Number} */ bottomBoundary:0.0, _worldRect:null, ctor:function () { cc.Action.prototype.ctor.call(this); this._followedNode = null; this._boundarySet = false; this._boundaryFullyCovered = false; this._halfScreenSize = null; this._fullScreenSize = null; this.leftBoundary = 0.0; this.rightBoundary = 0.0; this.topBoundary = 0.0; this.bottomBoundary = 0.0; this._worldRect = cc.RectZero(); }, clone:function () { var action = new cc.Follow(); var locRect = this._worldRect; var rect = new cc.Rect(locRect.x, locRect.y, locRect.width, locRect.height); action.initWithTarget(this._followedNode, rect); return action; }, /** * @return {Boolean} */ isBoundarySet:function () { return this._boundarySet; }, /** alter behavior - turn on/off boundary * @param {Boolean} value */ setBoudarySet:function (value) { this._boundarySet = value; }, /** initializes the action * initializes the action with a set boundary * @param {cc.Node} followedNode * @param {cc.Rect} [rect=] * @return {Boolean} */ initWithTarget:function (followedNode, rect) { if(!followedNode) throw "cc.Follow.initWithAction(): followedNode must be non nil"; rect = rect || cc.RectZero(); this._followedNode = followedNode; this._worldRect = rect; this._boundarySet = !cc._rectEqualToZero(rect); this._boundaryFullyCovered = false; var winSize = cc.Director.getInstance().getWinSize(); this._fullScreenSize = cc.p(winSize.width, winSize.height); this._halfScreenSize = cc.pMult(this._fullScreenSize, 0.5); if (this._boundarySet) { this.leftBoundary = -((rect.x + rect.width) - this._fullScreenSize.x); this.rightBoundary = -rect.x; this.topBoundary = -rect.y; this.bottomBoundary = -((rect.y + rect.height) - this._fullScreenSize.y); if (this.rightBoundary < this.leftBoundary) { // screen width is larger than world's boundary width //set both in the middle of the world this.rightBoundary = this.leftBoundary = (this.leftBoundary + this.rightBoundary) / 2; } if (this.topBoundary < this.bottomBoundary) { // screen width is larger than world's boundary width //set both in the middle of the world this.topBoundary = this.bottomBoundary = (this.topBoundary + this.bottomBoundary) / 2; } if ((this.topBoundary == this.bottomBoundary) && (this.leftBoundary == this.rightBoundary)) this._boundaryFullyCovered = true; } return true; }, /** * @param {Number} dt */ step:function (dt) { var tempPosX = this._followedNode.getPositionX(); var tempPosY = this._followedNode.getPositionY(); tempPosX = this._halfScreenSize.x - tempPosX; tempPosY = this._halfScreenSize.y - tempPosY; if (this._boundarySet) { // whole map fits inside a single screen, no need to modify the position - unless map boundaries are increased if (this._boundaryFullyCovered) return; this._target.setPosition(cc.clampf(tempPosX, this.leftBoundary, this.rightBoundary), cc.clampf(tempPosY, this.bottomBoundary, this.topBoundary)); } else { this._target.setPosition(tempPosX, tempPosY); } }, /** * @return {Boolean} */ isDone:function () { return ( !this._followedNode.isRunning() ); }, /** * Stop the action. */ stop:function () { this._target = null; cc.Action.prototype.stop.call(this); } }); /** creates the action with a set boundary
* creates the action with no boundary set * @param {cc.Node} followedNode * @param {cc.Rect} rect * @return {cc.Follow|Null} returns the cc.Follow object on success * @example * // example * // creates the action with a set boundary * var sprite = cc.Sprite.create("spriteFileName"); * var followAction = cc.Follow.create(sprite, cc.rect(0, 0, s.width * 2 - 100, s.height)); * this.runAction(followAction); * * // creates the action with no boundary set * var sprite = cc.Sprite.create("spriteFileName"); * var followAction = cc.Follow.create(sprite); * this.runAction(followAction); */ cc.Follow.create = function (followedNode, rect) { rect = rect || new cc.RectZero(); var ret = new cc.Follow(); if (rect != null && ret && ret.initWithTarget(followedNode, rect)) return ret; else if (ret && ret.initWithTarget(followedNode)) return ret; return null; };