metaforce/Runtime/Character/CAnimTreeTweenBase.hpp

46 lines
1.6 KiB
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-04-10 21:22:59 +00:00
2016-04-11 03:59:54 +00:00
#include "CAnimTreeDoubleChild.hpp"
2016-04-10 21:22:59 +00:00
namespace urde
{
2016-04-11 03:59:54 +00:00
class CAnimTreeTweenBase : public CAnimTreeDoubleChild
2016-04-10 21:22:59 +00:00
{
2016-09-11 18:40:33 +00:00
static s32 sAdvancementDepth;
2016-09-10 04:50:00 +00:00
protected:
2016-09-04 02:27:35 +00:00
int x1c_flags;
bool x20_24_b1 : 1;
u8 x20_25_cullSelector : 2;
2016-09-04 02:27:35 +00:00
public:
CAnimTreeTweenBase(bool,
2016-09-10 04:50:00 +00:00
const std::weak_ptr<CAnimTreeNode>& a,
const std::weak_ptr<CAnimTreeNode>& b,
2017-11-13 06:19:18 +00:00
int, std::string_view name);
2016-09-04 02:27:35 +00:00
virtual void SetBlendingWeight(float w)=0;
virtual float VGetBlendingWeight() const=0;
float GetBlendingWeight() const { return VGetBlendingWeight(); }
void VGetWeightedReaders(rstl::reserved_vector<std::pair<float, std::weak_ptr<IAnimReader>>, 16>& out, float w) const;
2016-09-04 02:27:35 +00:00
float VGetRightChildWeight() const { return GetBlendingWeight(); }
void VGetSegStatementSet(const CSegIdList& list, CSegStatementSet& setOut) const;
void VGetSegStatementSet(const CSegIdList& list, CSegStatementSet& setOut, const CCharAnimTime& time) const;
bool VHasOffset(const CSegId& seg) const;
zeus::CVector3f VGetOffset(const CSegId& seg) const;
zeus::CQuaternion VGetRotation(const CSegId& seg) const;
std::experimental::optional<std::unique_ptr<IAnimReader>> VSimplified();
virtual std::experimental::optional<std::unique_ptr<IAnimReader>> VReverseSimplified()
{ return CAnimTreeTweenBase::VSimplified(); }
2016-09-11 18:40:33 +00:00
static bool ShouldCullTree() { return 3 <= sAdvancementDepth; }
2016-09-11 18:40:33 +00:00
static void IncAdvancementDepth() { sAdvancementDepth++; }
static void DecAdvancementDepth() { sAdvancementDepth--; }
2016-04-10 21:22:59 +00:00
};
}