X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fanimation.h;h=e3fb79ee3aff2bdcf019e79c03628066aed605c2;hp=3404f45bd9f8c446f5110844e2cae7114fffe6ea;hb=332352298ef41b8ac3a4c57b467dd146c0b05e0b;hpb=b1caf9df027b3cfca3909947b6041fbf80e9c277 diff --git a/source/animation.h b/source/animation.h index 3404f45b..e3fb79ee 100644 --- a/source/animation.h +++ b/source/animation.h @@ -25,6 +25,8 @@ public: { private: Time::TimeDelta current_time; + float start_slope; + float end_slope; public: Loader(Animation &); @@ -41,6 +43,7 @@ public: void interval(float); void keyframe(const std::string &); void keyframe_inline(); + void slopes(float, float); }; private: @@ -70,6 +73,8 @@ private: const TimedKeyFrame *prev; Time::TimeDelta time; Time::TimeDelta delta_t; + float start_slope; + float end_slope; RefPtr keyframe; MatrixInterpolation matrix; std::vector uniforms; @@ -102,6 +107,7 @@ public: std::vector::const_iterator iter; std::vector::const_iterator event_iter; Time::TimeDelta time_since_keyframe; + float x; bool end; public: @@ -135,8 +141,10 @@ public: const std::string &get_uniform_name(unsigned) const; void add_keyframe(const Time::TimeDelta &, const KeyFrame &); + void add_keyframe(const Time::TimeDelta &, const KeyFrame &, float); + void add_keyframe(const Time::TimeDelta &, const KeyFrame &, float, float); private: - void add_keyframe(const Time::TimeDelta &, const RefPtr &); + void add_keyframe(const Time::TimeDelta &, const RefPtr &, float, float); void prepare_keyframe(TimedKeyFrame &); public: void add_event(const Time::TimeDelta &, const std::string &, const Variant & = Variant());