axmol/extensions/CCArmature/animation/CCAnimation.h

157 lines
5.1 KiB
C
Raw Normal View History

2013-06-06 12:02:54 +08:00
/****************************************************************************
Copyright (c) 2013 cocos2d-x.org
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 __CCANIMATION_H__
#define __CCANIMATION_H__
#include "CCProcessBase.h"
#include "../external_tool/sigslot.h"
NS_CC_EXT_BEGIN
class CCArmature;
class CCBone;
class CCAnimation : public CCProcessBase
{
public:
/**
2013-06-07 10:52:32 +08:00
* Create with a CCArmature
* @param armature The CCArmature CCAnimation will bind to
2013-06-06 12:02:54 +08:00
*/
static CCAnimation *create(CCArmature *armature);
public:
CCAnimation();
virtual ~CCAnimation(void);
/**
2013-06-07 10:52:32 +08:00
* Init with a CCArmature
2013-06-06 12:02:54 +08:00
* @param armature The CCArmature CCAnimation will bind to
*/
virtual bool init(CCArmature *armature);
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Scale animation play speed.
2013-06-06 12:02:54 +08:00
* @param animationScale Scale value
*/
2013-06-07 10:52:32 +08:00
virtual void setAnimationScale(float animationScale);
/**
* Play animation by animation name.
2013-06-06 12:02:54 +08:00
*
* @param animationName The animation name you want to play
* @param durationTo The frames between two animation changing-over.
* It's meaning is changing to this animation need how many frames
*
2013-06-06 16:22:58 +08:00
* -1 : use the value from CCMovementData get from flash design panel
2013-06-06 12:02:54 +08:00
* @param durationTween The frame count you want to play in the game.
* if _durationTween is 80, then the animation will played 80 frames in a loop
*
2013-06-06 16:22:58 +08:00
* -1 : use the value from CCMovementData get from flash design panel
2013-06-06 12:02:54 +08:00
*
* @param loop Whether the animation is loop
*
2013-06-06 16:22:58 +08:00
* loop < 0 : use the value from CCMovementData get from flash design panel
2013-06-06 12:02:54 +08:00
* loop = 0 : this animation is not loop
* loop > 0 : this animation is loop
*
* @param tweenEasing CCTween easing is used for calculate easing effect
*
2013-06-06 16:22:58 +08:00
* TWEEN_EASING_MAX : use the value from CCMovementData get from flash design panel
2013-06-06 12:02:54 +08:00
* -1 : fade out
* 0 : line
* 1 : fade in
* 2 : fade in and out
*
*/
2013-06-07 10:52:32 +08:00
void play(const char *animationName, int durationTo = -1, int durationTween = -1, int loop = -1, int tweenEasing = TWEEN_EASING_MAX);
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Play animation by index, the other param is the same to play.
2013-06-06 12:02:54 +08:00
* @param _animationIndex the animation index you want to play
*/
void playByIndex(int animationIndex, int durationTo = -1, int durationTween = -1, int loop = -1, int tweenEasing = TWEEN_EASING_MAX);
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Pause the Process
2013-06-06 12:02:54 +08:00
*/
2013-06-07 10:52:32 +08:00
virtual void pause();
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Resume the Process
2013-06-06 12:02:54 +08:00
*/
2013-06-07 10:52:32 +08:00
virtual void resume();
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Stop the Process
2013-06-06 12:02:54 +08:00
*/
2013-06-07 10:52:32 +08:00
virtual void stop();
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Get movement count
2013-06-06 12:02:54 +08:00
*/
int getMovementCount();
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
void update(float dt);
protected:
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Update(float dt) will call this handler, you can handle your logic here
2013-06-06 12:02:54 +08:00
*/
void updateHandler();
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Update current key frame, and process auto stop, pause
2013-06-06 12:02:54 +08:00
*/
2013-06-07 10:52:32 +08:00
void updateFrameData(float currentPercent);
2013-06-06 12:02:54 +08:00
protected:
2013-06-07 10:52:32 +08:00
//! CCAnimationData save all MovementDatas this animation used.
CC_SYNTHESIZE_RETAIN(CCAnimationData *, m_pAnimationData, AnimationData);
2013-06-06 12:02:54 +08:00
2013-06-06 16:22:58 +08:00
CCMovementData *m_pMovementData; //! CCMovementData save all MovementFrameDatas this animation used.
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
CCArmature *m_pArmature; //! A weak reference of armature
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
std::string m_strMovementID; //! Current movment's name
2013-06-06 12:02:54 +08:00
int m_iPrevFrameIndex; //! Prev key frame index
2013-06-07 10:52:32 +08:00
int m_iToIndex; //! The frame index in CCMovementData->m_pMovFrameDataArr, it's different from m_iFrameIndex.
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
CCArray *m_pTweenList;
2013-06-06 12:02:54 +08:00
public:
2013-06-07 10:52:32 +08:00
/**
* MovementEvent signal. This will emit a signal when trigger a event.
* The 1st param is the CCArmature. The 2nd param is Event Type, like START, COMPLETE. The 3rd param is Movement ID, also called Movement Name.
2013-06-06 12:02:54 +08:00
*/
2013-06-07 10:52:32 +08:00
sigslot::signal3<CCArmature *, const char *, const char *> MovementEventSignal;
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
sigslot::signal2<CCBone *, const char *> FrameEventSignal;
2013-06-06 12:02:54 +08:00
};
NS_CC_EXT_END
2013-06-07 10:52:32 +08:00
#endif /*__CCANIMATION_H__*/