2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-04-10 04:49:02 +00:00
|
|
|
|
2019-09-28 02:53:03 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2022-02-19 13:04:45 +00:00
|
|
|
#include "Runtime/Streams/IOStreams.hpp"
|
2019-09-28 02:53:03 +00:00
|
|
|
#include "Runtime/RetroTypes.hpp"
|
|
|
|
#include "Runtime/Character/CAdditiveAnimPlayback.hpp"
|
|
|
|
#include "Runtime/Character/CAnimation.hpp"
|
|
|
|
#include "Runtime/Character/CHalfTransition.hpp"
|
|
|
|
#include "Runtime/Character/CTransition.hpp"
|
2016-04-10 04:49:02 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2016-04-10 04:49:02 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CAnimationSet {
|
|
|
|
u16 x0_tableCount;
|
|
|
|
std::vector<CAnimation> x4_animations;
|
|
|
|
std::vector<CTransition> x14_transitions;
|
|
|
|
std::shared_ptr<IMetaTrans> x24_defaultTransition;
|
|
|
|
std::vector<std::pair<u32, CAdditiveAnimationInfo>> x28_additiveInfo;
|
|
|
|
CAdditiveAnimationInfo x38_defaultAdditiveInfo;
|
|
|
|
std::vector<CHalfTransition> x40_halfTransitions;
|
|
|
|
std::vector<std::pair<CAssetId, CAssetId>> x50_animRes;
|
2016-04-10 21:22:59 +00:00
|
|
|
|
2016-04-10 04:49:02 +00:00
|
|
|
public:
|
2020-03-31 03:52:22 +00:00
|
|
|
explicit CAnimationSet(CInputStream& in);
|
2016-04-13 06:07:23 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
const std::vector<CAnimation>& GetAnimations() const { return x4_animations; }
|
|
|
|
const std::vector<CTransition>& GetTransitions() const { return x14_transitions; }
|
|
|
|
const std::shared_ptr<IMetaTrans>& GetDefaultTransition() const { return x24_defaultTransition; }
|
|
|
|
const std::vector<CHalfTransition>& GetHalfTransitions() const { return x40_halfTransitions; }
|
|
|
|
const std::vector<std::pair<u32, CAdditiveAnimationInfo>>& GetAdditiveInfo() const { return x28_additiveInfo; }
|
|
|
|
const CAdditiveAnimationInfo& GetDefaultAdditiveInfo() const { return x38_defaultAdditiveInfo; }
|
|
|
|
const std::vector<std::pair<CAssetId, CAssetId>>& GetAnimResIds() const { return x50_animRes; }
|
2016-04-10 04:49:02 +00:00
|
|
|
};
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|