axmol/core/3d/Animation3D.cpp

252 lines
7.8 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2014-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
Copyright (c) 2022 Bytedance Inc.
2019-11-23 20:27:39 +08:00
2022-10-01 16:24:52 +08:00
https://axmolengine.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.
****************************************************************************/
#include "3d/Animation3D.h"
#include "3d/Bundle3D.h"
#include "platform/FileUtils.h"
#include "base/axstd.h"
2019-11-23 20:27:39 +08:00
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
Animation3D* Animation3D::create(std::string_view fileName, std::string_view animationName)
2019-11-23 20:27:39 +08:00
{
std::string fullPath = FileUtils::getInstance()->fullPathForFilename(fileName);
fullPath.append("#").append(animationName);
auto animation = Animation3DCache::getInstance()->getAnimation(fullPath);
2019-11-23 20:27:39 +08:00
if (animation != nullptr)
return animation;
2021-12-25 10:04:45 +08:00
2021-12-08 00:11:53 +08:00
animation = new Animation3D();
2021-12-25 10:04:45 +08:00
if (animation->initWithFile(fileName, animationName))
2019-11-23 20:27:39 +08:00
{
animation->autorelease();
}
else
{
2022-07-16 10:43:05 +08:00
AX_SAFE_DELETE(animation);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return animation;
}
bool Animation3D::initWithFile(std::string_view filename, std::string_view animationName)
2019-11-23 20:27:39 +08:00
{
std::string fullPath = FileUtils::getInstance()->fullPathForFilename(filename);
2021-12-25 10:04:45 +08:00
// load animation here
2019-11-23 20:27:39 +08:00
auto bundle = Bundle3D::createBundle();
Animation3DData animationdata;
if (bundle->load(fullPath) && bundle->loadAnimationData(animationName, &animationdata) && init(animationdata))
{
fullPath.append("#").append(animationName);
Animation3DCache::getInstance()->addAnimation(fullPath, this);
2019-11-23 20:27:39 +08:00
Bundle3D::destroyBundle(bundle);
return true;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
Bundle3D::destroyBundle(bundle);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return false;
}
Animation3D::Curve* Animation3D::getBoneCurveByName(std::string_view name) const
2019-11-23 20:27:39 +08:00
{
auto it = _boneCurves.find(name);
if (it != _boneCurves.end())
return it->second;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return nullptr;
}
2021-12-25 10:04:45 +08:00
Animation3D::Animation3D() : _duration(0) {}
2019-11-23 20:27:39 +08:00
Animation3D::~Animation3D()
{
2021-12-25 10:04:45 +08:00
for (const auto& itor : _boneCurves)
{
2019-11-23 20:27:39 +08:00
Curve* curve = itor.second;
2022-07-16 10:43:05 +08:00
AX_SAFE_DELETE(curve);
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
Animation3D::Curve::Curve() : translateCurve(nullptr), rotCurve(nullptr), scaleCurve(nullptr) {}
2019-11-23 20:27:39 +08:00
Animation3D::Curve::~Curve()
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE_NULL(translateCurve);
AX_SAFE_RELEASE_NULL(rotCurve);
AX_SAFE_RELEASE_NULL(scaleCurve);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
bool Animation3D::init(const Animation3DData& data)
2019-11-23 20:27:39 +08:00
{
_duration = data._totalTime;
{
axstd::pod_vector<float> keys;
axstd::pod_vector<Vec3> values;
for (const auto& iter : data._translationKeys)
2019-11-23 20:27:39 +08:00
{
Curve* curve = _boneCurves[iter.first];
if (curve == nullptr)
{
curve = new Curve();
_boneCurves[iter.first] = curve;
}
2021-12-25 10:04:45 +08:00
if (iter.second.empty())
continue;
2021-12-25 10:04:45 +08:00
axstd::resize_and_transform(iter.second.begin(), iter.second.end(), keys,
[](const auto& keyIter) { return keyIter._time; });
axstd::resize_and_transform(iter.second.begin(), iter.second.end(), values,
[](const auto& keyIter) { return keyIter._key; });
2021-12-25 10:04:45 +08:00
curve->translateCurve = Curve::AnimationCurveVec3::create(&keys[0], &values[0].x, (int)keys.size());
if (curve->translateCurve)
curve->translateCurve->retain();
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
{
axstd::pod_vector<float> keys;
axstd::pod_vector<Quaternion> values;
for (const auto& iter : data._rotationKeys)
2019-11-23 20:27:39 +08:00
{
Curve* curve = _boneCurves[iter.first];
if (curve == nullptr)
{
curve = new Curve();
_boneCurves[iter.first] = curve;
}
if (iter.second.empty())
continue;
axstd::resize_and_transform(iter.second.begin(), iter.second.end(), keys,
[](const auto& keyIter) { return keyIter._time; });
axstd::resize_and_transform(iter.second.begin(), iter.second.end(), values,
[](const auto& keyIter) { return keyIter._key; });
curve->rotCurve = Curve::AnimationCurveQuat::create(&keys[0], &values[0].x, (int)keys.size());
if (curve->rotCurve)
curve->rotCurve->retain();
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
{
axstd::pod_vector<float> keys;
axstd::pod_vector<Vec3> values;
for (const auto& iter : data._scaleKeys)
2019-11-23 20:27:39 +08:00
{
Curve* curve = _boneCurves[iter.first];
if (curve == nullptr)
{
curve = new Curve();
_boneCurves[iter.first] = curve;
}
if (iter.second.empty())
continue;
axstd::resize_and_transform(iter.second.begin(), iter.second.end(), keys,
[](const auto& keyIter) { return keyIter._time; });
axstd::resize_and_transform(iter.second.begin(), iter.second.end(), values,
[](const auto& keyIter) { return keyIter._key; });
curve->scaleCurve = Curve::AnimationCurveVec3::create(&keys[0], &values[0].x, (int)keys.size());
if (curve->scaleCurve)
curve->scaleCurve->retain();
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return true;
}
////////////////////////////////////////////////////////////////
Animation3DCache* Animation3DCache::_cacheInstance = nullptr;
Animation3DCache* Animation3DCache::getInstance()
{
if (_cacheInstance == nullptr)
2021-12-08 00:11:53 +08:00
_cacheInstance = new Animation3DCache();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return _cacheInstance;
}
void Animation3DCache::destroyInstance()
{
2022-07-16 10:43:05 +08:00
AX_SAFE_DELETE(_cacheInstance);
2019-11-23 20:27:39 +08:00
}
Animation3D* Animation3DCache::getAnimation(std::string_view key)
2019-11-23 20:27:39 +08:00
{
auto it = _animations.find(key);
if (it != _animations.end())
return it->second;
return nullptr;
}
void Animation3DCache::addAnimation(std::string_view key, Animation3D* animation)
2019-11-23 20:27:39 +08:00
{
const auto& it = _animations.find(key);
if (it != _animations.end())
{
2021-12-25 10:04:45 +08:00
return; // already have this key
2019-11-23 20:27:39 +08:00
}
_animations.emplace(key, animation); //_animations[key] = animation;
2019-11-23 20:27:39 +08:00
animation->retain();
}
void Animation3DCache::removeAllAnimations()
{
for (auto&& itor : _animations)
2021-12-25 10:04:45 +08:00
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(itor.second);
2019-11-23 20:27:39 +08:00
}
_animations.clear();
}
void Animation3DCache::removeUnusedAnimation()
{
2021-12-25 10:04:45 +08:00
for (auto itor = _animations.begin(); itor != _animations.end();)
{
2019-11-23 20:27:39 +08:00
if (itor->second->getReferenceCount() == 1)
{
itor->second->release();
itor = _animations.erase(itor);
}
else
++itor;
}
}
2021-12-25 10:04:45 +08:00
Animation3DCache::Animation3DCache() {}
2019-11-23 20:27:39 +08:00
Animation3DCache::~Animation3DCache()
{
removeAllAnimations();
}
NS_AX_END