1 #ifndef MSP_GL_ANIMATION_H_
2 #define MSP_GL_ANIMATION_H_
4 #include <msp/core/refptr.h>
5 #include <msp/datafile/objectloader.h>
6 #include <msp/time/timedelta.h>
17 An Animation is a sequence of KeyFrames combined with timing information. The
18 state at any point in the animation can be interpolated from the keyframes.
23 class Loader: public DataFile::CollectionObjectLoader<Animation>
26 Time::TimeDelta current_time;
30 Loader(Animation &, Collection &);
34 void keyframe(const std::string &);
35 void keyframe_inline();
40 struct AxisInterpolation
46 AxisInterpolation(const float *, const float *);
49 struct MatrixInterpolation
51 const Matrix *matrix1;
52 const Matrix *matrix2;
53 AxisInterpolation axes[3];
55 MatrixInterpolation();
56 MatrixInterpolation(const Matrix &, const Matrix &);
58 Matrix get(float) const;
63 const Animation &animation;
64 const TimedKeyFrame *prev;
66 Time::TimeDelta delta_t;
67 RefPtr<const KeyFrame> keyframe;
68 MatrixInterpolation matrix;
69 std::vector<KeyFrame::AnimatedUniform> uniforms;
70 std::vector<MatrixInterpolation> pose_matrices;
72 TimedKeyFrame(const Animation &);
76 typedef std::list<TimedKeyFrame> KeyFrameList;
83 UniformInfo(const std::string &, unsigned);
90 const Animation &animation;
91 KeyFrameList::const_iterator iter;
92 Time::TimeDelta time_since_keyframe;
96 Iterator(const Animation &);
98 Iterator &operator+=(const Time::TimeDelta &);
100 bool is_end() const { return end; }
101 Matrix get_matrix() const;
102 KeyFrame::AnimatedUniform get_uniform(unsigned) const;
103 Matrix get_pose_matrix(unsigned) const;
107 const Armature *armature;
108 KeyFrameList keyframes;
110 std::vector<UniformInfo> uniforms;
116 void set_armature(const Armature &);
117 const Armature *get_armature() const { return armature; }
119 unsigned get_n_uniforms() const { return uniforms.size(); }
120 unsigned get_slot_for_uniform(const std::string &) const;
121 const std::string &get_uniform_name(unsigned) const;
123 void add_keyframe(const Time::TimeDelta &, const KeyFrame &);
125 void prepare_keyframe(TimedKeyFrame &);
128 void set_looping(bool);