[4570] | 1 | /*! |
---|
[5391] | 2 | * @file p_node.h |
---|
| 3 | * @brief Definition of a parenting node |
---|
| 4 | * |
---|
| 5 | * parenting is how coordinates are handled in orxonox, meaning, that all coordinates |
---|
| 6 | * are representet relative to another parent node. this nodes build a parenting |
---|
| 7 | * tree of one-sided references (from up to down referenced). |
---|
| 8 | * Every node manages itself a list of childrens (of whos it is parent - easy...). |
---|
| 9 | * |
---|
| 10 | * absCoordinate, absDirection have to be recalculated as soon as there was a change in |
---|
| 11 | * place or ortientation. this is only the case if |
---|
| 12 | * o bDirChanged is true (so changed) AND timeStamp != now |
---|
| 13 | * o bCoorChanged is true (so moved) AND timeStamp != now |
---|
| 14 | * this conditions make it cheaper to recalculate the tree (reduces redundant work). |
---|
| 15 | */ |
---|
[3246] | 16 | |
---|
| 17 | |
---|
| 18 | #ifndef _P_NODE_H |
---|
| 19 | #define _P_NODE_H |
---|
| 20 | |
---|
[3543] | 21 | #include "base_object.h" |
---|
[3804] | 22 | #include "vector.h" |
---|
[3246] | 23 | |
---|
[5405] | 24 | // FORWARD DECLARATION |
---|
[4436] | 25 | class TiXmlElement; |
---|
[3607] | 26 | template<class T> class tList; |
---|
[3246] | 27 | |
---|
[5006] | 28 | #define PNODE_ITERATION_DELTA .001 |
---|
[4765] | 29 | //! Parental linkage modes |
---|
| 30 | typedef enum |
---|
| 31 | { |
---|
| 32 | PNODE_LOCAL_ROTATE = 1, //!< Rotates all the children around their centers. |
---|
| 33 | PNODE_ROTATE_MOVEMENT = 2, //!< Moves all the children around the center of their parent, without the rotation around their own centers. |
---|
| 34 | |
---|
| 35 | PNODE_MOVEMENT = 4, //!< Moves all children along with the parent. |
---|
[3565] | 36 | // special linkage modes |
---|
[4765] | 37 | PNODE_ALL = 3, //!< Moves all children around the center of their parent, and also rotates their centers |
---|
[4991] | 38 | PNODE_ROTATE_AND_MOVE = 5 //!< Rotates all children around their axis, and moves them as the Parent Moves, but does not rotate around the center of their parent. |
---|
[3565] | 39 | |
---|
[4765] | 40 | } PARENT_MODE; |
---|
| 41 | |
---|
[3450] | 42 | //! The default mode of the translation-binding. |
---|
[5209] | 43 | #define PNODE_PARENT_MODE_DEFAULT PNODE_ALL |
---|
[3246] | 44 | |
---|
[4440] | 45 | |
---|
[3450] | 46 | //! Patent Node is a Engine to calculate the position of an Object in respect to the position of its parent. |
---|
[4382] | 47 | class PNode : virtual public BaseObject { |
---|
[3365] | 48 | |
---|
[3246] | 49 | public: |
---|
| 50 | PNode (); |
---|
[4436] | 51 | PNode(const TiXmlElement* root); |
---|
[4993] | 52 | PNode (const Vector& absCoor, PNode* pNode); |
---|
[3365] | 53 | virtual ~PNode (); |
---|
[3246] | 54 | |
---|
[4436] | 55 | void loadParams(const TiXmlElement* root); |
---|
| 56 | |
---|
[3810] | 57 | void setRelCoor (const Vector& relCoord); |
---|
[4610] | 58 | void setRelCoor (float x, float y, float z); |
---|
[4992] | 59 | void setRelCoorSoft(const Vector& relCoordSoft, float bias = 1.0); |
---|
| 60 | void setRelCoorSoft(float x, float y, float z, float bias = 1.0); |
---|
[4836] | 61 | /** @returns the relative position */ |
---|
[5050] | 62 | inline const Vector& getRelCoor () const { return this->prevRelCoordinate; }; |
---|
[5113] | 63 | /** @returns the Relative Coordinate Destination */ |
---|
| 64 | inline const Vector& getRelCoorSoft2D() const { return (this->toCoordinate)?*this->toCoordinate:this->relCoordinate; }; |
---|
[3809] | 65 | void setAbsCoor (const Vector& absCoord); |
---|
[4610] | 66 | void setAbsCoor (float x, float y, float z); |
---|
[5406] | 67 | void setAbsCoorSoft(const Vector& absCoordSoft, float bias = 1.0); |
---|
| 68 | void setAbsCoorSoft(float x, float y, float z, float bias = 1.0); |
---|
[4836] | 69 | /** @returns the absolute position */ |
---|
[4372] | 70 | inline const Vector& getAbsCoor () const { return this->absCoordinate; }; |
---|
[3809] | 71 | void shiftCoor (const Vector& shift); |
---|
[3246] | 72 | |
---|
[3810] | 73 | void setRelDir (const Quaternion& relDir); |
---|
[4771] | 74 | void setRelDir (float x, float y, float z); |
---|
[4992] | 75 | void setRelDirSoft(const Quaternion& relDirSoft, float bias = 1.0); |
---|
| 76 | void setRelDirSoft(float x, float y, float z, float bias = 1.0); |
---|
[4836] | 77 | /** @returns the relative Direction */ |
---|
[5050] | 78 | inline const Quaternion& getRelDir () const { return this->prevRelDirection; }; |
---|
[5113] | 79 | /** @returns the Relative Directional Destination */ |
---|
| 80 | inline const Quaternion& getRelDirSoft2D() const { return (this->toDirection)?*this->toDirection:this->relDirection; }; |
---|
[4836] | 81 | /** @returns a Vector pointing into the relative Direction */ |
---|
[5050] | 82 | inline Vector getRelDirV() const { return this->prevRelDirection.apply(Vector(0,1,0)); }; |
---|
[3810] | 83 | void setAbsDir (const Quaternion& absDir); |
---|
[4771] | 84 | void setAbsDir (float x, float y, float z); |
---|
[5414] | 85 | void setAbsDirSoft(const Quaternion& absDirSoft, float bias = 1.0); |
---|
| 86 | void setAbsDirSoft(float x, float y, float z, float bias = 1.0); |
---|
[4836] | 87 | /** @returns the absolute Direction */ |
---|
[4372] | 88 | inline const Quaternion& getAbsDir () const { return this->absDirection; }; |
---|
[4836] | 89 | /** @returns a Vector pointing into the absolute Direction */ |
---|
[4372] | 90 | inline Vector getAbsDirV() const { return this->absDirection.apply(Vector(0,1,0)); }; |
---|
[3802] | 91 | void shiftDir (const Quaternion& shift); |
---|
[3246] | 92 | |
---|
[4836] | 93 | /** @returns the Speed of the Node */ |
---|
[4993] | 94 | inline float getSpeed() const { return this->velocity.len(); }; |
---|
[4836] | 95 | /** @returns the Velocity of the Node */ |
---|
[4993] | 96 | inline const Vector& getVelocity() const { return this->velocity; }; |
---|
[3644] | 97 | |
---|
[4440] | 98 | |
---|
[5382] | 99 | void addChild (PNode* child); |
---|
[4765] | 100 | void addChild (const char* childName); |
---|
[4993] | 101 | void removeChild (PNode* child); |
---|
[3537] | 102 | void remove(); |
---|
| 103 | |
---|
[3535] | 104 | void setParent (PNode* parent); |
---|
[4987] | 105 | void setParent (const char* parentName); |
---|
[4966] | 106 | /** @returns the parent of this PNode */ |
---|
[5387] | 107 | inline PNode* getParent () const { return this->parent; }; |
---|
| 108 | /** @returns the List of Children of this PNode */ |
---|
| 109 | inline const tList<PNode>* getChildren() const { return this->children; }; |
---|
[4761] | 110 | |
---|
[5382] | 111 | void setParentSoft(PNode* parentNode, float bias = 1.0); |
---|
| 112 | void setParentSoft(const char* parentName, float bias = 1.0); |
---|
[4987] | 113 | |
---|
[4993] | 114 | /** @param parentMode sets the parentingMode of this Node */ |
---|
| 115 | void setParentMode (PARENT_MODE parentMode) { this->parentMode = parentMode; }; |
---|
[4765] | 116 | void setParentMode (const char* parentingMode); |
---|
[4836] | 117 | /** @returns the Parenting mode of this node */ |
---|
[4444] | 118 | int getParentMode() const { return this->parentMode; }; |
---|
[3246] | 119 | |
---|
[4440] | 120 | void update (float dt); |
---|
[3246] | 121 | |
---|
[4574] | 122 | void debug (unsigned int depth = 1, unsigned int level = 0) const; |
---|
[5383] | 123 | void debugDraw(unsigned int depth = 1, float size = 1.0, const Vector& color = Vector(1, 0, 0), unsigned int level = 0) const; |
---|
[3365] | 124 | |
---|
[4993] | 125 | |
---|
| 126 | // helper functions // |
---|
| 127 | static const char* parentingModeToChar(int parentingMode); |
---|
| 128 | static PARENT_MODE charToParentingMode(const char* parentingMode); |
---|
[4440] | 129 | private: |
---|
| 130 | void init(PNode* parent); |
---|
[4987] | 131 | /** tells the child that the parent's Coordinate has changed */ |
---|
[4440] | 132 | inline void parentCoorChanged () { this->bRelCoorChanged = true; } |
---|
[4987] | 133 | /** tells the child that the parent's Direction has changed */ |
---|
[4440] | 134 | inline void parentDirChanged () { this->bRelDirChanged = true; } |
---|
[4836] | 135 | /** @returns the last calculated coordinate */ |
---|
[4993] | 136 | inline Vector getLastAbsCoor() { return this->lastAbsCoordinate; } |
---|
[3246] | 137 | |
---|
[3537] | 138 | |
---|
[3644] | 139 | private: |
---|
[4440] | 140 | bool bRelCoorChanged; //!< If Relative Coordinate has changed since last time we checked |
---|
| 141 | bool bRelDirChanged; //!< If Relative Direction has changed since last time we checked |
---|
[3644] | 142 | |
---|
[4440] | 143 | Vector relCoordinate; //!< coordinates relative to the parent |
---|
| 144 | Vector absCoordinate; //!< absolute coordinates in the world ( from (0,0,0) ) |
---|
| 145 | Quaternion relDirection; //!< direction relative to the parent |
---|
| 146 | Quaternion absDirection; //!< absolute direvtion in the world ( from (0,0,1) ) |
---|
| 147 | |
---|
[5050] | 148 | Vector prevRelCoordinate; //!< The last Relative Coordinate from the last update-Cycle. |
---|
[4440] | 149 | Vector lastAbsCoordinate; //!< this is used for speedcalculation, it stores the last coordinate |
---|
[5050] | 150 | Quaternion prevRelDirection; //!< The last Relative Direciton from the last update-Cycle. |
---|
| 151 | // Quaternion lastAbsDirection; |
---|
[4440] | 152 | |
---|
[5050] | 153 | Vector velocity; //!< Saves the velocity. |
---|
[4987] | 154 | |
---|
[5382] | 155 | Vector* toCoordinate; //!< a position to which to iterate. (This is used in conjunction with setParentSoft.and set*CoorSoft) |
---|
| 156 | Quaternion* toDirection; //!< a direction to which to iterate. (This is used in conjunction with setParentSoft and set*DirSoft) |
---|
[4992] | 157 | float bias; //!< how fast to iterate to the given position (default is 1) |
---|
[4987] | 158 | |
---|
[4440] | 159 | PNode* parent; //!< a pointer to the parent node |
---|
[4987] | 160 | tList<PNode>* children; //!< list of the children of this PNode |
---|
[4440] | 161 | |
---|
[4444] | 162 | unsigned int parentMode; //!< the mode of the binding |
---|
[3246] | 163 | }; |
---|
| 164 | |
---|
| 165 | #endif /* _P_NODE_H */ |
---|
[4570] | 166 | |
---|