2020-01-15 12:07:48 +00:00
|
|
|
#include "Runtime/Character/CAnimTreeLoopIn.hpp"
|
|
|
|
|
|
|
|
#include "Runtime/Character/CTreeUtils.hpp"
|
2018-01-30 01:04:01 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2018-01-30 01:04:01 +00:00
|
|
|
|
|
|
|
std::string CAnimTreeLoopIn::CreatePrimitiveName(const std::weak_ptr<CAnimTreeNode>& a,
|
|
|
|
const std::weak_ptr<CAnimTreeNode>& b,
|
2018-12-08 05:30:43 +00:00
|
|
|
const std::weak_ptr<CAnimTreeNode>& c) {
|
|
|
|
return {};
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CAnimTreeLoopIn::CAnimTreeLoopIn(const std::weak_ptr<CAnimTreeNode>& a, const std::weak_ptr<CAnimTreeNode>& b,
|
|
|
|
const std::weak_ptr<CAnimTreeNode>& c, const CAnimSysContext& animCtx,
|
2018-01-30 01:04:01 +00:00
|
|
|
std::string_view name)
|
2018-12-08 05:30:43 +00:00
|
|
|
: CAnimTreeSingleChild(CTreeUtils::GetTransitionTree(a, c, animCtx), name)
|
|
|
|
, x18_nextAnim(b.lock())
|
|
|
|
, x20_animCtx(animCtx)
|
|
|
|
, x30_fundamentals(CSequenceHelper(x14_child, x18_nextAnim, animCtx).ComputeSequenceFundamentals()) {}
|
|
|
|
|
|
|
|
CAnimTreeLoopIn::CAnimTreeLoopIn(const std::weak_ptr<CAnimTreeNode>& a, const std::weak_ptr<CAnimTreeNode>& b,
|
2020-03-09 15:31:51 +00:00
|
|
|
bool didLoopIn, CAnimSysContext animCtx, std::string_view name,
|
|
|
|
CSequenceFundamentals fundamentals, const CCharAnimTime& time)
|
2018-12-08 05:30:43 +00:00
|
|
|
: CAnimTreeSingleChild(a, name)
|
|
|
|
, x18_nextAnim(b.lock())
|
|
|
|
, x1c_didLoopIn(didLoopIn)
|
2020-03-09 15:31:51 +00:00
|
|
|
, x20_animCtx(std::move(animCtx))
|
|
|
|
, x30_fundamentals(std::move(fundamentals))
|
2018-12-08 05:30:43 +00:00
|
|
|
, x88_curTime(time) {}
|
|
|
|
|
|
|
|
CAnimTreeEffectiveContribution CAnimTreeLoopIn::VGetContributionOfHighestInfluence() const {
|
|
|
|
return x14_child->GetContributionOfHighestInfluence();
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 02:05:17 +00:00
|
|
|
std::optional<std::unique_ptr<IAnimReader>> CAnimTreeLoopIn::VSimplified() {
|
2018-12-08 05:30:43 +00:00
|
|
|
CCharAnimTime remTime = x14_child->VGetTimeRemaining();
|
|
|
|
if (remTime.GreaterThanZero() && !remTime.EpsilonZero()) {
|
|
|
|
auto simp = x14_child->Simplified();
|
|
|
|
if (simp)
|
|
|
|
x14_child = CAnimTreeNode::Cast(std::move(*simp));
|
|
|
|
} else if (x1c_didLoopIn && x14_child->VGetTimeRemaining().EqualsZero()) {
|
|
|
|
return x14_child->Clone();
|
|
|
|
}
|
|
|
|
return {};
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
std::shared_ptr<IAnimReader> CAnimTreeLoopIn::VGetBestUnblendedChild() const {
|
|
|
|
if (std::shared_ptr<IAnimReader> bestChild = x14_child->GetBestUnblendedChild()) {
|
|
|
|
return std::make_shared<CAnimTreeLoopIn>(CAnimTreeNode::Cast(bestChild->Clone()), x18_nextAnim, x1c_didLoopIn,
|
|
|
|
x20_animCtx, x4_name, x30_fundamentals, x88_curTime);
|
|
|
|
}
|
|
|
|
return {};
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
std::unique_ptr<IAnimReader> CAnimTreeLoopIn::VClone() const {
|
|
|
|
return std::make_unique<CAnimTreeLoopIn>(CAnimTreeNode::Cast(x14_child->Clone()), x18_nextAnim, x1c_didLoopIn,
|
|
|
|
x20_animCtx, x4_name, x30_fundamentals, x88_curTime);
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 21:18:09 +00:00
|
|
|
size_t CAnimTreeLoopIn::VGetBoolPOIList(const CCharAnimTime& time, CBoolPOINode* listOut, size_t capacity,
|
|
|
|
size_t iterator, u32 unk) const {
|
2018-12-08 05:30:43 +00:00
|
|
|
return _getPOIList<CBoolPOINode>(time, listOut, capacity, iterator, unk, x30_fundamentals.GetBoolPointsOfInterest(),
|
|
|
|
x88_curTime);
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 21:18:09 +00:00
|
|
|
size_t CAnimTreeLoopIn::VGetInt32POIList(const CCharAnimTime& time, CInt32POINode* listOut, size_t capacity,
|
|
|
|
size_t iterator, u32 unk) const {
|
2018-12-08 05:30:43 +00:00
|
|
|
return _getPOIList<CInt32POINode>(time, listOut, capacity, iterator, unk, x30_fundamentals.GetInt32PointsOfInterest(),
|
|
|
|
x88_curTime);
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 21:18:09 +00:00
|
|
|
size_t CAnimTreeLoopIn::VGetParticlePOIList(const CCharAnimTime& time, CParticlePOINode* listOut, size_t capacity,
|
|
|
|
size_t iterator, u32 unk) const {
|
2018-12-08 05:30:43 +00:00
|
|
|
return _getPOIList<CParticlePOINode>(time, listOut, capacity, iterator, unk,
|
|
|
|
x30_fundamentals.GetParticlePointsOfInterest(), x88_curTime);
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 21:18:09 +00:00
|
|
|
size_t CAnimTreeLoopIn::VGetSoundPOIList(const CCharAnimTime& time, CSoundPOINode* listOut, size_t capacity,
|
|
|
|
size_t iterator, u32 unk) const {
|
2018-12-08 05:30:43 +00:00
|
|
|
return _getPOIList<CSoundPOINode>(time, listOut, capacity, iterator, unk, x30_fundamentals.GetSoundPointsOfInterest(),
|
|
|
|
x88_curTime);
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CSteadyStateAnimInfo CAnimTreeLoopIn::VGetSteadyStateAnimInfo() const {
|
|
|
|
return x30_fundamentals.GetSteadyStateAnimInfo();
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CCharAnimTime CAnimTreeLoopIn::VGetTimeRemaining() const {
|
|
|
|
return x30_fundamentals.GetSteadyStateAnimInfo().GetDuration() - x88_curTime;
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
SAdvancementResults CAnimTreeLoopIn::VAdvanceView(const CCharAnimTime& dt) {
|
|
|
|
std::shared_ptr<CAnimTreeNode> origChild = x14_child;
|
|
|
|
SAdvancementResults res = origChild->VAdvanceView(dt);
|
|
|
|
x88_curTime += dt - res.x0_remTime;
|
|
|
|
CCharAnimTime remTime = origChild->VGetTimeRemaining();
|
|
|
|
if ((remTime.EpsilonZero() || (dt - res.x0_remTime).EpsilonZero()) && !x1c_didLoopIn) {
|
|
|
|
x14_child = CTreeUtils::GetTransitionTree(origChild, x18_nextAnim, x20_animCtx);
|
|
|
|
x1c_didLoopIn = true;
|
|
|
|
}
|
|
|
|
return res;
|
2018-01-30 01:04:01 +00:00
|
|
|
}
|
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|