2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2014-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
2022-07-09 22:23:34 +08:00
|
|
|
https://axis-project.github.io/
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
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>
|
|
|
|
|
|
|
|
#include "3d/CCAnimationCurve.h"
|
|
|
|
|
|
|
|
#include "base/ccMacros.h"
|
|
|
|
#include "base/CCRef.h"
|
|
|
|
#include "3d/CCBundle3DData.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
/**
|
|
|
|
* @addtogroup _3d
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief static animation data, shared
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
class CC_DLL Animation3D : public Ref
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
friend class Bundle3D;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* animation curve, translation, rotation, and scale
|
|
|
|
*/
|
|
|
|
class Curve
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef AnimationCurve<3> AnimationCurveVec3;
|
|
|
|
typedef AnimationCurve<4> AnimationCurveQuat;
|
|
|
|
/**translation curve*/
|
|
|
|
AnimationCurveVec3* translateCurve;
|
|
|
|
/**rotation curve*/
|
|
|
|
AnimationCurveQuat* rotCurve;
|
|
|
|
/**scaling curve*/
|
|
|
|
AnimationCurveVec3* scaleCurve;
|
|
|
|
/**constructor */
|
|
|
|
Curve();
|
|
|
|
/**constructor */
|
|
|
|
~Curve();
|
|
|
|
};
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**read all animation or only the animation with given animationName? animationName == "" read the first.*/
|
2021-12-31 12:12:40 +08:00
|
|
|
static Animation3D* create(std::string_view filename, std::string_view animationName = "");
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**get duration*/
|
|
|
|
float getDuration() const { return _duration; }
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* get bone curve
|
2021-12-25 10:04:45 +08:00
|
|
|
*
|
2019-11-23 20:27:39 +08:00
|
|
|
* @lua NA
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
Curve* getBoneCurveByName(std::string_view name) const;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**get the bone Curves set*/
|
2021-12-31 12:12:40 +08:00
|
|
|
const hlookup::string_map<Curve*>& getBoneCurves() const { return _boneCurves; }
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-03-18 21:46:07 +08:00
|
|
|
Animation3D();
|
2021-12-25 10:04:45 +08:00
|
|
|
virtual ~Animation3D();
|
2019-11-23 20:27:39 +08:00
|
|
|
/**init Animation3D from bundle data*/
|
|
|
|
bool init(const Animation3DData& data);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**init Animation3D with file name and animation name*/
|
2021-12-31 12:12:40 +08:00
|
|
|
bool initWithFile(std::string_view filename, std::string_view animationName);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
protected:
|
2021-12-31 12:12:40 +08:00
|
|
|
hlookup::string_map<Curve*> _boneCurves; // bone curves map, key bone name, value AnimationCurve
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
float _duration; // animation duration
|
2019-11-23 20:27:39 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Animation3D Cache
|
|
|
|
*/
|
|
|
|
class Animation3DCache
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**get and destroy instance*/
|
|
|
|
static Animation3DCache* getInstance();
|
|
|
|
static void destroyInstance();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**get animation by key*/
|
2021-12-31 12:12:40 +08:00
|
|
|
Animation3D* getAnimation(std::string_view key);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**add animation to cache*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void addAnimation(std::string_view key, Animation3D* animation);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**remove all animation*/
|
|
|
|
void removeAllAnimations();
|
|
|
|
/**remove unused animation*/
|
|
|
|
void removeUnusedAnimation();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Animation3DCache();
|
|
|
|
~Animation3DCache();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
static Animation3DCache* _cacheInstance; // cache instance
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
hlookup::string_map<Animation3D*> _animations; // cached animations
|
2019-11-23 20:27:39 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// end of 3d group
|
|
|
|
/// @}
|
|
|
|
NS_CC_END
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
#endif // __CCANIMATION3D_H__
|