]> git.tdb.fi Git - libs/gl.git/blobdiff - source/animation.h
Add a function to set depth clip of EnvironmentMap
[libs/gl.git] / source / animation.h
index 929cb13f497318c3a91492cc1cf18d36584f267e..3404f45bd9f8c446f5110844e2cae7114fffe6ea 100644 (file)
@@ -9,6 +9,7 @@
 namespace Msp {
 namespace GL {
 
+class AnimationEventObserver;
 class Armature;
 class Matrix;
 class Pose;
@@ -31,9 +32,15 @@ public:
        private:
                void init();
 
+               void event(const std::string &);
+               void event1i(const std::string &, int);
+               void event1f(const std::string &, float);
+               void event2f(const std::string &, float, float);
+               void event3f(const std::string &, float, float, float);
+               void event4f(const std::string &, float, float, float, float);
+               void interval(float);
                void keyframe(const std::string &);
                void keyframe_inline();
-               void interval(float);
        };
 
 private:
@@ -60,7 +67,6 @@ private:
 
        struct TimedKeyFrame
        {
-               const Animation &animation;
                const TimedKeyFrame *prev;
                Time::TimeDelta time;
                Time::TimeDelta delta_t;
@@ -69,8 +75,15 @@ private:
                std::vector<KeyFrame::AnimatedUniform> uniforms;
                std::vector<MatrixInterpolation> pose_matrices;
 
-               TimedKeyFrame(const Animation &);
-               void prepare();
+               TimedKeyFrame();
+               void prepare(const Animation &);
+       };
+
+       struct Event
+       {
+               Time::TimeDelta time;
+               std::string name;
+               Variant value;
        };
 
        struct UniformInfo
@@ -87,6 +100,7 @@ public:
        private:
                const Animation *animation;
                std::vector<TimedKeyFrame>::const_iterator iter;
+               std::vector<Event>::const_iterator event_iter;
                Time::TimeDelta time_since_keyframe;
                bool end;
 
@@ -94,6 +108,7 @@ public:
                Iterator(const Animation &);
 
                Iterator &operator+=(const Time::TimeDelta &);
+               void dispatch_events(AnimationEventObserver &);
 
                bool is_end() const { return end; }
                Matrix get_matrix() const;
@@ -104,6 +119,7 @@ public:
 private:
        const Armature *armature;
        std::vector<TimedKeyFrame> keyframes;
+       std::vector<Event> events;
        bool looping;
        std::vector<UniformInfo> uniforms;
 
@@ -120,9 +136,11 @@ public:
 
        void add_keyframe(const Time::TimeDelta &, const KeyFrame &);
 private:
+       void add_keyframe(const Time::TimeDelta &, const RefPtr<const KeyFrame> &);
        void prepare_keyframe(TimedKeyFrame &);
-
 public:
+       void add_event(const Time::TimeDelta &, const std::string &, const Variant & = Variant());
+
        void set_looping(bool);
 };