2016-04-13 06:07:23 +00:00
|
|
|
#ifndef __URDE_CANIMTREEANIMREADERCONTAINER_HPP__
|
|
|
|
#define __URDE_CANIMTREEANIMREADERCONTAINER_HPP__
|
2016-04-10 21:22:59 +00:00
|
|
|
|
2016-04-11 23:35:37 +00:00
|
|
|
#include "CAnimTreeNode.hpp"
|
|
|
|
|
2016-04-10 21:22:59 +00:00
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
2016-04-11 23:35:37 +00:00
|
|
|
class CAnimTreeAnimReaderContainer : public CAnimTreeNode
|
2016-04-10 21:22:59 +00:00
|
|
|
{
|
2016-08-27 04:54:53 +00:00
|
|
|
std::shared_ptr<IAnimReader> x14_reader;
|
|
|
|
u32 x1c_animDbIdx;
|
2016-04-11 23:35:37 +00:00
|
|
|
public:
|
2017-11-13 06:19:18 +00:00
|
|
|
CAnimTreeAnimReaderContainer(std::string_view name,
|
2016-08-27 04:54:53 +00:00
|
|
|
std::shared_ptr<IAnimReader> reader,
|
|
|
|
u32 animDbIdx);
|
|
|
|
|
2016-08-27 21:16:44 +00:00
|
|
|
u32 Depth() const;
|
2016-08-27 04:54:53 +00:00
|
|
|
CAnimTreeEffectiveContribution VGetContributionOfHighestInfluence() const;
|
2016-08-27 21:16:44 +00:00
|
|
|
u32 VGetNumChildren() const;
|
|
|
|
std::shared_ptr<IAnimReader> VGetBestUnblendedChild() const;
|
2018-01-04 04:17:44 +00:00
|
|
|
void VGetWeightedReaders(rstl::reserved_vector<std::pair<float, std::weak_ptr<IAnimReader>>, 16>& out, float w) const;
|
2016-08-27 04:54:53 +00:00
|
|
|
|
|
|
|
SAdvancementResults VAdvanceView(const CCharAnimTime& a);
|
|
|
|
CCharAnimTime VGetTimeRemaining() const;
|
|
|
|
CSteadyStateAnimInfo VGetSteadyStateAnimInfo() const;
|
|
|
|
bool VHasOffset(const CSegId& seg) const;
|
|
|
|
zeus::CVector3f VGetOffset(const CSegId& seg) const;
|
|
|
|
zeus::CQuaternion VGetRotation(const CSegId& seg) const;
|
|
|
|
u32 VGetBoolPOIList(const CCharAnimTime& time, CBoolPOINode* listOut, u32 capacity, u32 iterator, u32) const;
|
|
|
|
u32 VGetInt32POIList(const CCharAnimTime& time, CInt32POINode* listOut, u32 capacity, u32 iterator, u32) const;
|
|
|
|
u32 VGetParticlePOIList(const CCharAnimTime& time, CParticlePOINode* listOut, u32 capacity, u32 iterator, u32) const;
|
|
|
|
u32 VGetSoundPOIList(const CCharAnimTime& time, CSoundPOINode* listOut, u32 capacity, u32 iterator, u32) const;
|
|
|
|
bool VGetBoolPOIState(const char*) const;
|
|
|
|
s32 VGetInt32POIState(const char*) const;
|
|
|
|
CParticleData::EParentedMode VGetParticlePOIState(const char*) const;
|
|
|
|
void VGetSegStatementSet(const CSegIdList& list, CSegStatementSet& setOut) const;
|
|
|
|
void VGetSegStatementSet(const CSegIdList& list, CSegStatementSet& setOut, const CCharAnimTime& time) const;
|
2017-03-01 06:02:54 +00:00
|
|
|
std::unique_ptr<IAnimReader> VClone() const;
|
2018-01-04 04:17:44 +00:00
|
|
|
std::experimental::optional<std::unique_ptr<IAnimReader>> VSimplified();
|
2016-08-27 04:54:53 +00:00
|
|
|
void VSetPhase(float);
|
|
|
|
SAdvancementResults VGetAdvancementResults(const CCharAnimTime& a, const CCharAnimTime& b) const;
|
2016-04-10 21:22:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-04-13 06:07:23 +00:00
|
|
|
#endif // __URDE_CANIMTREEANIMREADERCONTAINER_HPP__
|