[3851] | 1 | /*! |
---|
| 2 | \file animation3d.h |
---|
| 3 | */ |
---|
| 4 | |
---|
| 5 | #include "animation.h" |
---|
| 6 | |
---|
| 7 | #include "vector.h" |
---|
| 8 | class PNode; |
---|
| 9 | |
---|
| 10 | //! KeyFrame3D Struct |
---|
| 11 | /** |
---|
| 12 | This represents one point with direction of the animation |
---|
| 13 | */ |
---|
| 14 | typedef struct KeyFrame3D { |
---|
[3855] | 15 | float duration; //!< The duration of this KeyFrame |
---|
| 16 | Vector position; //!< The position of this KeyFrame |
---|
| 17 | Quaternion direction; //!< The direction of this KeyFrame |
---|
| 18 | ANIM_FUNCTION animFunc; //!< with whitch function to iterate to the next KeyFrame3D |
---|
[3851] | 19 | }; |
---|
| 20 | |
---|
| 21 | //! Animation Struct |
---|
| 22 | /** |
---|
| 23 | This represents an animation for a object |
---|
| 24 | */ |
---|
| 25 | class Animation3D : public Animation |
---|
| 26 | { |
---|
| 27 | public: |
---|
[3852] | 28 | Animation3D(PNode* object); |
---|
[3851] | 29 | virtual ~Animation3D(void); |
---|
| 30 | |
---|
| 31 | virtual void rewind(void); |
---|
| 32 | |
---|
| 33 | void addKeyFrame(Vector position, Quaternion direction, float time, ANIM_FUNCTION animFunc = ANIM_LINEAR); |
---|
[3855] | 34 | // void addKeyFrame(KeyFrame3D* frame); |
---|
[3851] | 35 | |
---|
[3852] | 36 | virtual void tick(float dt); |
---|
[3851] | 37 | |
---|
| 38 | // animation functions |
---|
| 39 | void setAnimFunc(ANIM_FUNCTION animFunc); |
---|
| 40 | |
---|
| 41 | private: |
---|
[3852] | 42 | void constant(float timePassed) const; |
---|
| 43 | void linear(float timePassed) const; |
---|
| 44 | void sine(float timePassed) const; |
---|
| 45 | void cosine(float timePassed) const; |
---|
| 46 | void exp(float timePassed) const; |
---|
| 47 | void negExp(float timePassed) const; |
---|
| 48 | void quadratic(float timePassed) const; |
---|
| 49 | void random(float timePassed) const; |
---|
[3851] | 50 | // ANIM_FUNCTION animFunc; |
---|
[3855] | 51 | void (Animation3D::*animFunc)(float) const; //!< A Function for the AnimationType |
---|
[3851] | 52 | |
---|
[3855] | 53 | KeyFrame3D* currentKeyFrame; //!< The current KeyFrame |
---|
| 54 | KeyFrame3D* nextKeyFrame; //!< The KeyFrame we iterate to |
---|
| 55 | tList<KeyFrame3D>* keyFrameList; //!< The KeyFrameList |
---|
| 56 | |
---|
[3851] | 57 | // more class-local description |
---|
[3855] | 58 | PNode* object; //!< The Object from which to Animate something |
---|
| 59 | Vector lastPosition; //!< ?? |
---|
| 60 | Vector tmpVect; //!< what for?? |
---|
| 61 | float deltaT; //!< ?? |
---|
[3851] | 62 | }; |
---|