metaforce/Runtime/Character/IMetaAnim.cpp

59 lines
1.5 KiB
C++
Raw Normal View History

2016-04-11 07:10:28 +00:00
#include "IMetaAnim.hpp"
#include "CCharAnimTime.hpp"
#include "IAnimReader.hpp"
#include "CBoolPOINode.hpp"
2016-08-27 21:16:44 +00:00
#include "CAnimTreeNode.hpp"
2016-04-11 07:10:28 +00:00
namespace urde
{
std::shared_ptr<CAnimTreeNode>
IMetaAnim::GetAnimationTree(const CAnimSysContext& animSys,
const CMetaAnimTreeBuildOrders& orders) const
{
2016-08-27 21:16:44 +00:00
if (orders.x44_)
{
std::shared_ptr<CAnimTreeNode> tree =
VGetAnimationTree(animSys, CMetaAnimTreeBuildOrders::NoSpecialOrders());
if (orders.x44_->IsTime() || orders.x44_->IsString())
{
CCharAnimTime time = GetTime(*orders.x44_, *tree);
AdvanceAnim(*tree, time);
}
return tree;
}
return VGetAnimationTree(animSys, CMetaAnimTreeBuildOrders::NoSpecialOrders());
2016-04-11 07:10:28 +00:00
}
void IMetaAnim::AdvanceAnim(IAnimReader& anim, const CCharAnimTime& dt)
{
CCharAnimTime remDt = dt;
while (remDt > CCharAnimTime())
{
SAdvancementResults res = anim.VAdvanceView(remDt);
remDt = res.x0_remTime;
}
}
CCharAnimTime IMetaAnim::GetTime(const CPreAdvanceIndicator& ind, const IAnimReader& anim)
{
if (ind.IsTime())
return ind.GetTime();
CBoolPOINode nodes[64];
2016-04-11 07:47:21 +00:00
CCharAnimTime rem = anim.VGetTimeRemaining();
u32 count = anim.VGetBoolPOIList(rem, nodes, 64, 0, 0);
const char* cmpStr = ind.GetString();
for (u32 i=0 ; i<count ; ++i)
{
CBoolPOINode& node = nodes[i];
2016-09-11 18:40:33 +00:00
if (node.GetString().compare(cmpStr) || !node.GetValue())
2016-04-11 07:47:21 +00:00
continue;
return node.GetTime();
}
2016-04-11 07:10:28 +00:00
2016-04-11 07:47:21 +00:00
return {};
2016-04-11 07:10:28 +00:00
}
}