axmol/extensions/CocoStudio/Armature/animation/CCTween.h

143 lines
5.3 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 __CCTWEEN_H__
#define __CCTWEEN_H__
#include "CCProcessBase.h"
#include "../utils/CCTweenFunction.h"
namespace cocos2d { namespace extension { namespace armature {
2013-06-06 12:02:54 +08:00
class Bone;
class ArmatureAnimation;
2013-06-06 12:02:54 +08:00
class Tween : public ProcessBase
2013-06-06 12:02:54 +08:00
{
public:
/**
* Create with a Bone
* @param bone the Bone Tween will bind to
2013-06-06 12:02:54 +08:00
*/
static Tween *create(Bone *bone);
2013-06-06 12:02:54 +08:00
public:
Tween(void);
virtual ~Tween(void);
2013-06-06 12:02:54 +08:00
/**
* Init with a Bone
* @param bone the Bone Tween will bind to
2013-06-06 12:02:54 +08:00
*/
virtual bool init(Bone *bone);
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Start the Process
2013-06-06 12:02:54 +08:00
*
* @param movementBoneData the MovementBoneData include all frame datas
2013-06-06 12:02:54 +08:00
* @param durationTo the frames between two animation changing-over.
* It's meaning is changing to this animation need how many frames
*
* -1 : use the value from MovementData 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
*
* -1 : use the value from MovementData get from flash design panel
2013-06-06 12:02:54 +08:00
*
* @param loop whether the animation is loop
*
* loop < 0 : use the value from MovementData 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 tween easing is used for calculate easing effect
*
* TWEEN_EASING_MAX : use the value from MovementData 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
*
*/
virtual void play(MovementBoneData *movementBoneData, int durationTo, int durationTween, int loop, int tweenEasing);
2013-06-06 12:02:54 +08:00
inline void setAnimation(ArmatureAnimation *animation) { _animation = animation; }
inline ArmatureAnimation *getAnimation() const { return _animation; }
2013-06-06 12:02:54 +08:00
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
*/
2013-06-07 10:52:32 +08:00
virtual void updateHandler();
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Calculate which frame arrived, and if current frame have event, then call the event listener
2013-06-06 12:02:54 +08:00
*/
virtual float updateFrameData(float currentPrecent, bool activeFrame = false);
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
/**
2013-06-07 10:52:32 +08:00
* Calculate the between value of _from and _to, and give it to between frame data
2013-06-06 12:02:54 +08:00
*/
virtual void setBetween(FrameData *from, FrameData *to);
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
/**
* According to the percent to calculate current FrameData with tween effect
2013-06-06 12:02:54 +08:00
*/
virtual FrameData *tweenNodeTo(float percent, FrameData *node = NULL);
2013-06-07 10:52:32 +08:00
/**
* Update display index and process the key frame event when arrived a key frame
2013-06-06 12:02:54 +08:00
*/
virtual void arriveKeyFrame(FrameData *keyFrameData);
2013-06-06 12:02:54 +08:00
protected:
//! A weak reference to the current MovementBoneData. The data is in the data pool
CC_SYNTHESIZE(MovementBoneData *, _movementBoneData, MovementBoneData)
2013-06-06 12:02:54 +08:00
FrameData *_tweenData; //! The computational tween frame data, //! A weak reference to the Bone's tweenData
FrameData *_from; //! From frame data, used for calculate between value
FrameData *_to; //! To frame data, used for calculate between value
FrameData *_between; //! Between frame data, used for calculate current FrameData(_node) value
2013-06-06 12:02:54 +08:00
FrameData *_currentKeyFrame; //! A weak reference to the current FrameData. The data is in the data pool
2013-06-06 12:02:54 +08:00
Bone *_bone; //! A weak reference to the Bone
2013-06-07 10:52:32 +08:00
TweenType _frameTweenEasing; //! Dedermine which tween effect current frame use
2013-06-07 10:52:32 +08:00
bool _isTweenKeyFrame;
2013-06-07 10:52:32 +08:00
int betweenDuration; //! Current key frame will last betweenDuration frames
int _totalDuration;
2013-06-06 12:02:54 +08:00
int _fromIndex; //! The current frame index in FrameList of MovementBoneData, it's different from _frameIndex
int _toIndex; //! The next frame index in FrameList of MovementBoneData, it's different from _frameIndex
2013-06-06 12:02:54 +08:00
ArmatureAnimation *_animation;
2013-06-06 12:02:54 +08:00
};
}}} // namespace cocos2d { namespace extension { namespace armature {
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
#endif /*__CCTWEEN_H__*/