[3365] | 1 | |
---|
[3018] | 2 | /*! |
---|
| 3 | \file curve.h |
---|
| 4 | \brief A basic 3D curve framework |
---|
| 5 | |
---|
| 6 | Contains classes to handle curves |
---|
| 7 | */ |
---|
| 8 | |
---|
| 9 | #ifndef _CURVE_H |
---|
| 10 | #define _CURVE_H |
---|
| 11 | |
---|
| 12 | #include "vector.h" |
---|
| 13 | |
---|
[3365] | 14 | //! An Enumerator that defines what sort of Curves are availible |
---|
| 15 | enum CurveType {BEZIERCURVE, UPOINTCURVE}; |
---|
[3018] | 16 | |
---|
[3365] | 17 | |
---|
| 18 | //! An abstract class to handle curves. Needed for the Tracking system in orxonox. |
---|
[3019] | 19 | class Curve |
---|
[3018] | 20 | { |
---|
[3019] | 21 | protected: |
---|
[3217] | 22 | int nodeCount; //!< The count of nodes the Curve has. |
---|
| 23 | Vector curvePoint; //!< The point on the Cureve at a local Time. |
---|
| 24 | float localTime; //!< If the time of one point is asked more than once the programm will not calculate it again. |
---|
[3365] | 25 | Curve* dirCurve; //!< The derivation-curve of this Curve. |
---|
| 26 | int derivation; //!< Which derivation of a Curve is this. |
---|
[3019] | 27 | |
---|
[3217] | 28 | //! Handles the curve-points (dynamic List) |
---|
[3018] | 29 | struct PathNode |
---|
| 30 | { |
---|
[3217] | 31 | int number; //!< The N-th node of this curve. |
---|
[3365] | 32 | float factor; //!< Curve specific multiplier factor. |
---|
| 33 | Vector vFactor; //!< A Vector-factor for multipliing. |
---|
[3217] | 34 | Vector position; //!< Vector Pointung to this curve-point. |
---|
| 35 | PathNode* next; //!< Pointer to the next Node. |
---|
[3018] | 36 | }; |
---|
| 37 | |
---|
[3217] | 38 | PathNode* firstNode; //!< First node of the curve. |
---|
| 39 | PathNode* currentNode; //!< The node we are working with (the Last node). |
---|
[3018] | 40 | |
---|
[3365] | 41 | private: |
---|
| 42 | virtual void rebuild(void) = 0; |
---|
[3019] | 43 | public: |
---|
[3365] | 44 | void addNode(const Vector& newNode); |
---|
| 45 | Vector getNode(unsigned int nodeToFind); |
---|
| 46 | inline int getNodeCount(void) { return this->nodeCount;} |
---|
[3019] | 47 | |
---|
[3365] | 48 | virtual Vector calcPos(float t) = 0; |
---|
| 49 | virtual Vector calcDir(float t) = 0; |
---|
| 50 | virtual Quaternion calcQuat(float t) = 0; |
---|
| 51 | |
---|
[3019] | 52 | }; |
---|
| 53 | |
---|
[3365] | 54 | //! Class to handle bezier curves in 3-dimesnsional space |
---|
[3019] | 55 | /** |
---|
[3365] | 56 | This Curve is good, for Fast Interaction. If you want to change it during the game, go on. |
---|
| 57 | !!be aware!! BezierCurves only flow through their first and last Node. Their Tangents at those Points a directed to the second and second-last Point. |
---|
[3019] | 58 | */ |
---|
| 59 | class BezierCurve : public Curve |
---|
| 60 | { |
---|
| 61 | private: |
---|
[3365] | 62 | void rebuild(void); |
---|
[3018] | 63 | public: |
---|
[3365] | 64 | BezierCurve(void); |
---|
| 65 | BezierCurve(int derivation); |
---|
| 66 | ~BezierCurve(void); |
---|
| 67 | void init(void); |
---|
| 68 | |
---|
| 69 | Vector calcPos(float t); |
---|
| 70 | Vector calcDir(float t); |
---|
| 71 | Quaternion calcQuat(float t); |
---|
[3018] | 72 | |
---|
[3028] | 73 | |
---|
[3365] | 74 | Vector getPos(void) const; |
---|
[3018] | 75 | }; |
---|
| 76 | |
---|
| 77 | |
---|
[3365] | 78 | //! B-Spline |
---|
| 79 | /** |
---|
| 80 | class to handle b-spline in 3d space |
---|
| 81 | */ |
---|
| 82 | class BSplieCurve : public Curve |
---|
| 83 | { |
---|
[3018] | 84 | |
---|
[3365] | 85 | |
---|
| 86 | }; |
---|
| 87 | |
---|
| 88 | //! Uniform Point Curve-class |
---|
| 89 | /** |
---|
| 90 | A UPoint Curve is a A Curve, that flows through all the nodes given it. |
---|
| 91 | The Algorithm to buid the curve is rather slow, but Painting and tracing along the curve has high speed, so do not change this curve during the Game. |
---|
| 92 | |
---|
| 93 | This Curve is very erattic, so i do not recommend to use it. |
---|
| 94 | */ |
---|
| 95 | class UPointCurve : public Curve |
---|
| 96 | { |
---|
| 97 | private: |
---|
| 98 | void rebuild(void); |
---|
| 99 | public: |
---|
| 100 | UPointCurve(void); |
---|
| 101 | UPointCurve(int derivation); |
---|
| 102 | ~UPointCurve(void); |
---|
| 103 | void init(void); |
---|
| 104 | |
---|
| 105 | Vector calcPos(float t); |
---|
| 106 | Vector calcDir(float t); |
---|
| 107 | Quaternion calcQuat(float t); |
---|
| 108 | |
---|
| 109 | Vector getPos(void) const; |
---|
| 110 | }; |
---|
| 111 | |
---|
[3018] | 112 | #endif /* _CURVE_H */ |
---|