| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #pragma once
- #include <AnKi/Resource/ResourceObject.h>
- #include <AnKi/Math.h>
- #include <AnKi/Util/String.h>
- namespace anki {
- // Forward
- class XmlElement;
- /// @addtogroup resource
- /// @{
- /// A keyframe
- template<typename T>
- class AnimationKeyframe
- {
- friend class AnimationResource;
- public:
- Second getTime() const
- {
- return m_time;
- }
- const T& getValue() const
- {
- return m_value;
- }
- private:
- Second m_time;
- T m_value;
- };
- /// Animation channel
- class AnimationChannel
- {
- public:
- String m_name;
- I32 m_boneIndex = -1; ///< For skeletal animations
- DynamicArray<AnimationKeyframe<Vec3>> m_positions;
- DynamicArray<AnimationKeyframe<Quat>> m_rotations;
- DynamicArray<AnimationKeyframe<F32>> m_scales;
- DynamicArray<AnimationKeyframe<F32>> m_cameraFovs;
- void destroy(ResourceAllocator<U8> alloc)
- {
- m_name.destroy(alloc);
- m_positions.destroy(alloc);
- m_rotations.destroy(alloc);
- m_scales.destroy(alloc);
- m_cameraFovs.destroy(alloc);
- }
- };
- /// Animation consists of keyframe data.
- class AnimationResource : public ResourceObject
- {
- public:
- AnimationResource(ResourceManager* manager);
- ~AnimationResource();
- ANKI_USE_RESULT Error load(const ResourceFilename& filename, Bool async);
- /// Get a vector of all animation channels
- const DynamicArray<AnimationChannel>& getChannels() const
- {
- return m_channels;
- }
- /// Get the duration of the animation in seconds
- Second getDuration() const
- {
- return m_duration;
- }
- /// Get the time (in seconds) the animation should start
- Second getStartingTime() const
- {
- return m_startTime;
- }
- /// Get the interpolated data
- void interpolate(U32 channelIndex, Second time, Vec3& position, Quat& rotation, F32& scale) const;
- private:
- DynamicArray<AnimationChannel> m_channels;
- Second m_duration;
- Second m_startTime;
- };
- /// @}
- } // end namespace anki
|