axmol/cocos/2d/CCAction.h

462 lines
14 KiB
C
Raw Normal View History

/****************************************************************************
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2011 Zynga Inc.
Copyright (c) 2013-2017 Chukong Technologies 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.
****************************************************************************/
#ifndef __ACTIONS_CCACTION_H__
#define __ACTIONS_CCACTION_H__
#include "base/CCRef.h"
2014-04-30 08:37:36 +08:00
#include "math/CCGeometry.h"
#include "base/CCScriptSupport.h"
NS_CC_BEGIN
class Node;
enum {
kActionUpdate
};
/**
* @addtogroup actions
* @{
*/
2010-09-28 18:27:33 +08:00
/**
* @brief Base class for Action objects.
2010-07-20 14:42:56 +08:00
*/
class CC_DLL Action : public Ref, public Clonable
2010-07-20 14:42:56 +08:00
{
public:
/** Default tag used for all the actions. */
static const int INVALID_TAG = -1;
/**
* @js NA
* @lua NA
*/
virtual std::string description() const;
2010-07-20 14:42:56 +08:00
/** Returns a clone of action.
*
* @return A clone action.
*/
2014-07-18 14:53:00 +08:00
virtual Action* clone() const
{
CC_ASSERT(0);
return nullptr;
}
2010-07-20 14:42:56 +08:00
/** Returns a new action that performs the exact reverse of the action.
*
* @return A new action that performs the exact reverse of the action.
* @js NA
*/
2014-07-18 14:53:00 +08:00
virtual Action* reverse() const
{
CC_ASSERT(0);
return nullptr;
}
/** Return true if the action has finished.
*
* @return Is true if the action has finished.
*/
2013-11-16 21:08:00 +08:00
virtual bool isDone() const;
2010-07-20 14:42:56 +08:00
/** Called before the action start. It will also set the target.
*
* @param target A certain target.
*/
virtual void startWithTarget(Node *target);
2010-07-20 14:42:56 +08:00
/**
* 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);".
*/
2013-11-16 21:08:00 +08:00
virtual void stop();
2010-07-20 14:42:56 +08:00
/** Called every frame with it's delta time, dt in seconds. DON'T override unless you know what you are doing.
*
* @param dt In seconds.
*/
2012-06-08 13:55:28 +08:00
virtual void step(float dt);
/**
* 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 time A value between 0 and 1.
*/
2012-06-08 13:55:28 +08:00
virtual void update(float time);
2015-03-27 11:39:31 +08:00
/** Return certain target.
*
* @return A certain target.
*/
Node* getTarget() const { return _target; }
/** The action will modify the target properties.
*
* @param target A certain target.
*/
void setTarget(Node *target) { _target = target; }
/** Return a original Target.
*
* @return A original Target.
*/
Node* getOriginalTarget() const { return _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 ActionManager, you should NOT call this method.
* The target is 'assigned', it is not 'retained'.
* @since v0.8.2
*
* @param originalTarget Is 'assigned', it is not 'retained'.
*/
void setOriginalTarget(Node *originalTarget) { _originalTarget = originalTarget; }
/** Returns a tag that is used to identify the action easily.
*
* @return A tag.
*/
int getTag() const { return _tag; }
/** Changes the tag that is used to identify the action easily.
*
* @param tag Used to identify the action easily.
*/
void setTag(int tag) { _tag = tag; }
/** Returns a flag field that is used to group the actions easily.
*
* @return A tag.
*/
unsigned int getFlags() const { return _flags; }
/** Changes the flag field that is used to group the actions easily.
*
2016-07-03 23:42:10 +08:00
* @param flags Used to group the actions easily.
*/
void setFlags(unsigned int flags) { _flags = flags; }
2010-07-20 14:42:56 +08:00
CC_CONSTRUCTOR_ACCESS:
Action();
virtual ~Action();
protected:
Node *_originalTarget;
/**
* 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'.
*/
Node *_target;
/** The action tag. An identifier of the action. */
int _tag;
/** The action flag field. To categorize action into certain groups.*/
unsigned int _flags;
#if CC_ENABLE_SCRIPT_BINDING
ccScriptType _scriptType; ///< type of script binding, lua or javascript
#endif
private:
CC_DISALLOW_COPY_AND_ASSIGN(Action);
};
/** @class FiniteTimeAction
* @brief
* 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 CC_DLL FiniteTimeAction : public Action
{
public:
/** Get duration in seconds of the action.
*
* @return The duration in seconds of the action.
*/
float getDuration() const { return _duration; }
/** Set duration in seconds of the action.
*
* @param duration In seconds of the action.
*/
void setDuration(float duration) { _duration = duration; }
//
// Overrides
//
virtual FiniteTimeAction* reverse() const override
{
CC_ASSERT(0);
return nullptr;
}
2014-07-18 14:53:00 +08:00
virtual FiniteTimeAction* clone() const override
{
CC_ASSERT(0);
return nullptr;
}
CC_CONSTRUCTOR_ACCESS:
FiniteTimeAction()
2014-07-18 14:53:00 +08:00
: _duration(0)
{}
virtual ~FiniteTimeAction(){}
protected:
//! Duration in seconds.
float _duration;
private:
CC_DISALLOW_COPY_AND_ASSIGN(FiniteTimeAction);
};
class ActionInterval;
class RepeatForever;
/** @class Speed
* @brief Changes the speed of an action, making it take longer (speed>1)
* or shorter (speed<1) time.
* Useful to simulate 'slow motion' or 'fast forward' effect.
* @warning This action can't be Sequenceable because it is not an IntervalAction.
*/
class CC_DLL Speed : public Action
{
public:
/** Create the action and set the speed.
*
* @param action An action.
* @param speed The action speed.
*/
2013-11-16 21:08:00 +08:00
static Speed* create(ActionInterval* action, float speed);
/** Return the speed.
*
* @return The action speed.
*/
float getSpeed() const { return _speed; }
/** Alter the speed of the inner function in runtime.
*
* @param speed Alter the speed of the inner function in runtime.
*/
void setSpeed(float speed) { _speed = speed; }
/** Replace the interior action.
*
* @param action The new action, it will replace the running action.
*/
2013-11-16 21:08:00 +08:00
void setInnerAction(ActionInterval *action);
/** Return the interior action.
*
* @return The interior action.
*/
ActionInterval* getInnerAction() const { return _innerAction; }
//
// Override
//
2014-07-18 14:53:00 +08:00
virtual Speed* clone() const override;
virtual Speed* reverse() const override;
virtual void startWithTarget(Node* target) override;
virtual void stop() override;
2015-01-20 15:41:59 +08:00
/**
* @param dt in seconds.
*/
virtual void step(float dt) override;
/** Return true if the action has finished.
*
* @return Is true if the action has finished.
*/
2013-11-16 21:08:00 +08:00
virtual bool isDone() const override;
CC_CONSTRUCTOR_ACCESS:
Speed();
virtual ~Speed(void);
/** Initializes the action. */
bool initWithAction(ActionInterval *action, float speed);
protected:
float _speed;
ActionInterval *_innerAction;
private:
CC_DISALLOW_COPY_AND_ASSIGN(Speed);
};
2015-03-23 18:37:28 +08:00
/** @class Follow
* @brief Follow is an action that "follows" a node.
* Eg:
* @code
* layer->runAction(Follow::create(hero));
2015-03-23 18:37:28 +08:00
* @endcode
* Instead of using Camera as a "follower", use this action instead.
* @since v0.99.2
*/
class CC_DLL Follow : public Action
{
public:
/**
* Creates the action with a set boundary or with no boundary.
*
* @param followedNode The node to be followed.
* @param rect The boundary. If \p rect is equal to Rect::ZERO, it'll work
* with no boundary.
*/
static Follow* create(Node *followedNode, const Rect& rect = Rect::ZERO);
/**
* Creates the action with a set boundary or with no boundary with offsets.
*
* @param followedNode The node to be followed.
* @param rect The boundary. If \p rect is equal to Rect::ZERO, it'll work
* with no boundary.
* @param xOffset The horizontal offset from the center of the screen from which the
* node is to be followed.It can be positive,negative or zero.If
* set to zero the node will be horizontally centered followed.
* @param yOffset The vertical offset from the center of the screen from which the
* node is to be followed.It can be positive,negative or zero.
* If set to zero the node will be vertically centered followed.
* If both xOffset and yOffset are set to zero,then the node will be horizontally and vertically centered followed.
*/
static Follow* createWithOffset(Node* followedNode,float xOffset,float yOffset,const Rect& rect = Rect::ZERO);
2015-03-23 18:37:28 +08:00
/** Return boundarySet.
*
* @return Return boundarySet.
*/
bool isBoundarySet() const { return _boundarySet; }
2015-03-23 18:37:28 +08:00
/** Alter behavior - turn on/off boundary.
*
* @param value Turn on/off boundary.
*/
void setBoundarySet(bool value) { _boundarySet = value; }
2015-03-23 18:37:28 +08:00
/** @deprecated Alter behavior - turn on/off boundary.
*
* @param value Turn on/off boundary.
*/
CC_DEPRECATED_ATTRIBUTE void setBoudarySet(bool value) { setBoundarySet(value); }
//
// Override
//
2014-07-18 14:53:00 +08:00
virtual Follow* clone() const override;
virtual Follow* reverse() const override;
2015-01-20 15:41:59 +08:00
/**
* @param dt in seconds.
* @js NA
2015-01-20 15:41:59 +08:00
*/
virtual void step(float dt) override;
virtual bool isDone() const override;
virtual void stop() override;
CC_CONSTRUCTOR_ACCESS:
/**
* @js ctor
*/
Follow()
: _followedNode(nullptr)
, _boundarySet(false)
, _boundaryFullyCovered(false)
, _leftBoundary(0.0)
, _rightBoundary(0.0)
, _topBoundary(0.0)
, _bottomBoundary(0.0)
, _offsetX(0.0)
, _offsetY(0.0)
, _worldRect(Rect::ZERO)
{}
/**
* @js NA
* @lua NA
*/
2013-11-16 21:08:00 +08:00
virtual ~Follow();
/**
* Initializes the action with a set boundary or with no boundary.
*
* @param followedNode The node to be followed.
* @param rect The boundary. If \p rect is equal to Rect::ZERO, it'll work
* with no boundary.
*/
bool initWithTarget(Node *followedNode, const Rect& rect = Rect::ZERO);
/**
* Initializes the action with a set boundary or with no boundary with offsets.
*
* @param followedNode The node to be followed.
* @param rect The boundary. If \p rect is equal to Rect::ZERO, it'll work
* with no boundary.
* @param xOffset The horizontal offset from the center of the screen from which the
* node is to be followed.It can be positive,negative or zero.If
* set to zero the node will be horizontally centered followed.
* @param yOffset The vertical offset from the center of the screen from which the
* node is to be followed.It can be positive,negative or zero.
* If set to zero the node will be vertically centered followed.
* If both xOffset and yOffset are set to zero,then the node will be horizontally and vertically centered followed.
*/
bool initWithTargetAndOffset(Node *followedNode,float xOffset,float yOffset,const Rect& rect = Rect::ZERO);
protected:
/** Node to follow. */
Node *_followedNode;
/** Whether camera should be limited to certain area. */
bool _boundarySet;
/** If screen size is bigger than the boundary - update not needed. */
bool _boundaryFullyCovered;
/** Fast access to the screen dimensions. */
Squashed commit of the following: commit a9572b8913f3a38b59adbd7b4017ab9848a6b2b5 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed May 14 10:03:44 2014 -0700 math renames `Vector2` -> `Vec2` `Vector3` -> `Vec3` `Vector4` -> `Vec4` `Matrix` -> `Mat4` commit 4e107f4bd854c26bfceb52b063d6bd9cea02d6a3 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:24:28 2014 -0700 raw version of rename Vector3 commit 1d115573ebe96a5fc815fa44fbe6417ea7dba841 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:07:14 2014 -0700 rename Vector2 after merge commit ab2ed58c129dbc30a4c0970ed94568c5d271657b Merge: 1978d2d 86fb75a Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:05:30 2014 -0700 Merge branch 'v3' into v3_renameMathClassName Conflicts: tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UIButtonTest/UIButtonTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UICheckBoxTest/UICheckBoxTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UISliderTest/UISliderTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextFieldTest/UITextFieldTest.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextFieldTest/UITextFieldTest_Editor.cpp commit 1978d2d174877172ccddc083020a1bbf43ad3b39 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 08:51:45 2014 -0700 rename vector2 in tests/cpp-empty-test folder commit d4e0ff13dcce62724d2fece656543f26aa28e467 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:58:23 2014 -0700 rename vector2 in tests/cpp-tests cpp files commit be50ca2ec75e0fd32a6fcdaa15fe1ebb4cafe79f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:52:57 2014 -0700 rename vector2 in tests/cpp-tests head files commit 6daef564400d4e28c4ce20859a68e0f583fed125 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:49:48 2014 -0700 rename vector2 in extension folder commit 8f3f0f65ceea92c9e7a0d87ab54e62220c5572e2 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:47:22 2014 -0700 rename vector2 in cocos/2d cpp files commit e1f3105aae06d595661a3030f519f7cc13aefbed Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:44:39 2014 -0700 rename vector2 in cocos/2d head files commit 6708d890bfe486109120c3cd4b9fe5c078b7108f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:59 2014 -0700 rename vector2 in cocos/base folder commit d3978fa5447c31ea2f3ece5469b7e746dfba4248 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:43 2014 -0700 rename vector2 in cocos/deprecated folder commit 4bff45139363d6b9706edbbcf9f322d48b4fd019 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:26 2014 -0700 rename vector2 in cocos/editor-support folder commit 353d244c995f8b5d14f635c52aed8bc5e5fc1a6f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:36:48 2014 -0700 rename vector2 in cocos/ui folder commit 758b8f4d513084b9922d7242e9b8f2c7f316de6c Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:32:39 2014 -0700 rename vector2 in cocos/renderer folder commit 0bd2710dd8714cecb993880bc37affd9ecb05c27 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:32:15 2014 -0700 rename vector2 in cocos/physics folder commit b7f0581c4587348bdbc1478d5374c2325735f21d Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:25:01 2014 -0700 rename vector2 in cocos/math folder commit a8631a8e1a4e2740807ccd9be9d70de6ecaad7dd Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:16:55 2014 -0700 rename Vector2 to Vec2 deprecate typedef Vector2
2014-05-15 01:07:09 +08:00
Vec2 _halfScreenSize;
Vec2 _fullScreenSize;
/** World boundaries. */
float _leftBoundary;
float _rightBoundary;
float _topBoundary;
float _bottomBoundary;
/** Horizontal (x) and vertical (y) offset values. */
float _offsetX;
float _offsetY;
2014-07-18 14:53:00 +08:00
Rect _worldRect;
private:
CC_DISALLOW_COPY_AND_ASSIGN(Follow);
};
// end of actions group
/// @}
NS_CC_END
#endif // __ACTIONS_CCACTION_H__