axmol/cocos/3d/CCAnimation3D.h

128 lines
3.9 KiB
C
Raw Normal View History

2014-06-04 18:17:09 +08:00
/****************************************************************************
Copyright (c) 2014 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 __CCANIMATION3D_H__
#define __CCANIMATION3D_H__
#include <unordered_map>
2014-06-17 10:49:52 +08:00
#include "3d/CCAnimationCurve.h"
2014-06-04 18:17:09 +08:00
#include "base/ccMacros.h"
#include "base/CCRef.h"
2014-08-28 17:03:29 +08:00
#include "3d/CCBundle3DData.h"
2014-06-04 18:17:09 +08:00
NS_CC_BEGIN
2015-03-27 14:10:41 +08:00
/**
* @addtogroup _3d
* @{
*/
2014-06-04 18:17:09 +08:00
/**
2015-03-27 14:10:41 +08:00
* @brief static animation data, shared
2014-06-04 18:17:09 +08:00
*/
2014-10-09 09:30:23 +08:00
class CC_DLL Animation3D: public Ref
2014-06-04 18:17:09 +08:00
{
2014-06-09 18:37:58 +08:00
friend class Bundle3D;
2014-06-04 18:17:09 +08:00
public:
2014-06-19 14:11:14 +08:00
/**
* animation curve, translation, rotation, and scale
*/
2014-06-04 18:17:09 +08:00
class Curve
{
public:
typedef AnimationCurve<3> AnimationCurveVec3;
typedef AnimationCurve<4> AnimationCurveQuat;
2014-06-19 14:11:14 +08:00
AnimationCurveVec3* translateCurve; //translate curve
AnimationCurveQuat* rotCurve;//rotation curve
AnimationCurveVec3* scaleCurve;//scale curve
2014-06-04 18:17:09 +08:00
Curve();
~Curve();
};
2014-07-09 09:53:15 +08:00
/**read all animation or only the animation with given animationName? animationName == "" read the first.*/
static Animation3D* create(const std::string& filename, const std::string& animationName = "");
2014-07-09 14:07:33 +08:00
CC_DEPRECATED_ATTRIBUTE static Animation3D* getOrCreate(const std::string& filename, const std::string& animationName = ""){ return create(filename, animationName); }
2014-06-27 22:11:29 +08:00
2014-06-19 14:11:14 +08:00
/**get duration*/
2014-06-04 18:17:09 +08:00
float getDuration() const { return _duration; }
2014-06-19 14:11:14 +08:00
/**get bone curve*/
2014-06-04 18:17:09 +08:00
Curve* getBoneCurveByName(const std::string& name) const;
2015-03-26 09:12:05 +08:00
const std::unordered_map<std::string, Curve*>& getBoneCurves() const {return _boneCurves;}
2014-06-17 19:18:56 +08:00
CC_CONSTRUCTOR_ACCESS:
2014-06-04 18:17:09 +08:00
Animation3D();
virtual ~Animation3D();
2014-06-19 14:11:14 +08:00
/**init Animation3D from bundle data*/
2014-06-12 14:03:33 +08:00
bool init(const Animation3DData& data);
2015-03-09 16:29:57 +08:00
/**init Animation3D with file name and animation name*/
bool initWithFile(const std::string& filename, const std::string& animationName);
2014-06-17 19:18:56 +08:00
protected:
2014-06-04 18:17:09 +08:00
std::unordered_map<std::string, Curve*> _boneCurves;//bone curves map, key bone name, value AnimationCurve
float _duration; //animation duration
2014-06-04 18:17:09 +08:00
};
2014-06-19 14:11:14 +08:00
/**
* Animation3D Cache
*/
2014-06-04 18:17:09 +08:00
class Animation3DCache
{
public:
2014-06-19 14:11:14 +08:00
/**get and destroy instance*/
2014-06-04 18:17:09 +08:00
static Animation3DCache* getInstance();
2014-06-17 19:18:56 +08:00
static void destroyInstance();
2014-06-04 18:17:09 +08:00
2014-06-19 14:11:14 +08:00
/**get animation by key*/
2014-06-04 18:17:09 +08:00
Animation3D* getAnimation(const std::string& key);
2014-06-19 14:11:14 +08:00
/**add animation to cache*/
2014-06-04 18:17:09 +08:00
void addAnimation(const std::string& key, Animation3D* animation);
2014-06-19 14:11:14 +08:00
/**remove all animation*/
2014-06-17 19:18:56 +08:00
void removeAllAnimations();
2014-06-19 14:11:14 +08:00
/**remove unused animation*/
2014-06-04 18:17:09 +08:00
void removeUnusedAnimation();
protected:
Animation3DCache();
~Animation3DCache();
2014-06-19 14:11:14 +08:00
static Animation3DCache* _cacheInstance; //cache instance
2014-06-04 18:17:09 +08:00
2014-06-19 14:11:14 +08:00
std::unordered_map<std::string, Animation3D*> _animations; //cached animations
2014-06-04 18:17:09 +08:00
};
2015-03-27 14:10:41 +08:00
// end of actions group
/// @}
2014-06-04 18:17:09 +08:00
NS_CC_END
#endif // __CCANIMATION3D_H__