2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-08-27 21:16:44 +00:00
|
|
|
|
|
|
|
#include "CAnimTreeNode.hpp"
|
|
|
|
#include "CBoolPOINode.hpp"
|
|
|
|
#include "CInt32POINode.hpp"
|
|
|
|
#include "CParticlePOINode.hpp"
|
|
|
|
#include "CSoundPOINode.hpp"
|
2018-01-30 01:04:01 +00:00
|
|
|
#include "CAnimSysContext.hpp"
|
2016-08-27 21:16:44 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2016-08-27 21:16:44 +00:00
|
|
|
class IMetaAnim;
|
|
|
|
class CTransitionDatabaseGame;
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CSequenceFundamentals {
|
|
|
|
CSteadyStateAnimInfo x0_ssInfo;
|
|
|
|
std::vector<CBoolPOINode> x18_boolNodes;
|
|
|
|
std::vector<CInt32POINode> x28_int32Nodes;
|
|
|
|
std::vector<CParticlePOINode> x38_particleNodes;
|
|
|
|
std::vector<CSoundPOINode> x48_soundNodes;
|
|
|
|
|
2016-08-27 21:16:44 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CSequenceFundamentals(const CSteadyStateAnimInfo& ssInfo, const std::vector<CBoolPOINode>& boolNodes,
|
|
|
|
const std::vector<CInt32POINode>& int32Nodes,
|
|
|
|
const std::vector<CParticlePOINode>& particleNodes,
|
|
|
|
const std::vector<CSoundPOINode>& soundNodes);
|
|
|
|
|
|
|
|
const CSteadyStateAnimInfo& GetSteadyStateAnimInfo() const { return x0_ssInfo; }
|
|
|
|
const std::vector<CBoolPOINode>& GetBoolPointsOfInterest() const { return x18_boolNodes; }
|
|
|
|
const std::vector<CInt32POINode>& GetInt32PointsOfInterest() const { return x28_int32Nodes; }
|
|
|
|
const std::vector<CParticlePOINode>& GetParticlePointsOfInterest() const { return x38_particleNodes; }
|
|
|
|
const std::vector<CSoundPOINode>& GetSoundPointsOfInterest() const { return x48_soundNodes; }
|
2016-08-27 21:16:44 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CSequenceHelper {
|
|
|
|
CAnimSysContext x0_animCtx;
|
|
|
|
std::vector<std::shared_ptr<CAnimTreeNode>> x10_treeNodes;
|
|
|
|
std::vector<bool> x20_;
|
|
|
|
|
2016-08-27 21:16:44 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CSequenceHelper(const std::shared_ptr<CAnimTreeNode>& a, const std::shared_ptr<CAnimTreeNode>& b,
|
|
|
|
const CAnimSysContext& animCtx);
|
|
|
|
CSequenceHelper(const std::vector<std::shared_ptr<IMetaAnim>>& nodes, const CAnimSysContext& animCtx);
|
|
|
|
CSequenceFundamentals ComputeSequenceFundamentals();
|
2016-08-27 21:16:44 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|