1 | /*! |
---|
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 | */ |
---|
16 | |
---|
17 | |
---|
18 | #ifndef _P_NODE_H |
---|
19 | #define _P_NODE_H |
---|
20 | |
---|
21 | #include "base_object.h" |
---|
22 | #include "vector.h" |
---|
23 | |
---|
24 | // FORWARD DECLARATION |
---|
25 | class TiXmlElement; |
---|
26 | template<class T> class tList; |
---|
27 | |
---|
28 | #define PNODE_ITERATION_DELTA .001 |
---|
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. |
---|
36 | // special linkage modes |
---|
37 | PNODE_ALL = 3, //!< Moves all children around the center of their parent, and also rotates their centers |
---|
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. |
---|
39 | |
---|
40 | } PARENT_MODE; |
---|
41 | |
---|
42 | //! The default mode of the translation-binding. |
---|
43 | #define PNODE_PARENT_MODE_DEFAULT PNODE_ALL |
---|
44 | |
---|
45 | |
---|
46 | //! Patent Node is a Engine to calculate the position of an Object in respect to the position of its parent. |
---|
47 | class PNode : virtual public BaseObject { |
---|
48 | |
---|
49 | public: |
---|
50 | PNode (); |
---|
51 | PNode(const TiXmlElement* root); |
---|
52 | PNode (const Vector& absCoor, PNode* pNode); |
---|
53 | virtual ~PNode (); |
---|
54 | |
---|
55 | void loadParams(const TiXmlElement* root); |
---|
56 | |
---|
57 | void setRelCoor (const Vector& relCoord); |
---|
58 | void setRelCoor (float x, float y, float z); |
---|
59 | void setRelCoorSoft(const Vector& relCoordSoft, float bias = 1.0); |
---|
60 | void setRelCoorSoft(float x, float y, float z, float bias = 1.0); |
---|
61 | /** @returns the relative position */ |
---|
62 | inline const Vector& getRelCoor () const { return this->prevRelCoordinate; }; |
---|
63 | /** @returns the Relative Coordinate Destination */ |
---|
64 | inline const Vector& getRelCoorSoft2D() const { return (this->toCoordinate)?*this->toCoordinate:this->relCoordinate; }; |
---|
65 | void setAbsCoor (const Vector& absCoord); |
---|
66 | void setAbsCoor (float x, float y, float z); |
---|
67 | void setAbsCoorSoft(const Vector& absCoordSoft, float bias = 1.0); |
---|
68 | void setAbsCoorSoft(float x, float y, float z, float bias = 1.0); |
---|
69 | /** @returns the absolute position */ |
---|
70 | inline const Vector& getAbsCoor () const { return this->absCoordinate; }; |
---|
71 | void shiftCoor (const Vector& shift); |
---|
72 | void shiftCoor (float x, float y, float z) { this->shiftCoor(Vector(x, y, z)); }; |
---|
73 | |
---|
74 | void setRelDir (const Quaternion& relDir); |
---|
75 | void setRelDir (float x, float y, float z); |
---|
76 | void setRelDirSoft(const Quaternion& relDirSoft, float bias = 1.0); |
---|
77 | void setRelDirSoft(float x, float y, float z, float bias = 1.0); |
---|
78 | /** @returns the relative Direction */ |
---|
79 | inline const Quaternion& getRelDir () const { return this->prevRelDirection; }; |
---|
80 | /** @returns the Relative Directional Destination */ |
---|
81 | inline const Quaternion& getRelDirSoft2D() const { return (this->toDirection)?*this->toDirection:this->relDirection; }; |
---|
82 | /** @returns a Vector pointing into the relative Direction */ |
---|
83 | inline Vector getRelDirV() const { return this->prevRelDirection.apply(Vector(0,1,0)); }; |
---|
84 | void setAbsDir (const Quaternion& absDir); |
---|
85 | void setAbsDir (float x, float y, float z); |
---|
86 | void setAbsDirSoft(const Quaternion& absDirSoft, float bias = 1.0); |
---|
87 | void setAbsDirSoft(float x, float y, float z, float bias = 1.0); |
---|
88 | /** @returns the absolute Direction */ |
---|
89 | inline const Quaternion& getAbsDir () const { return this->absDirection; }; |
---|
90 | /** @returns a Vector pointing into the absolute Direction */ |
---|
91 | inline Vector getAbsDirV() const { return this->absDirection.apply(Vector(0,1,0)); }; |
---|
92 | void shiftDir (const Quaternion& shift); |
---|
93 | |
---|
94 | /** @returns the Speed of the Node */ |
---|
95 | inline float getSpeed() const { return this->velocity.len(); }; |
---|
96 | /** @returns the Velocity of the Node */ |
---|
97 | inline const Vector& getVelocity() const { return this->velocity; }; |
---|
98 | |
---|
99 | |
---|
100 | void addChild (PNode* child); |
---|
101 | void addChild (const char* childName); |
---|
102 | void removeChild (PNode* child); |
---|
103 | void remove(); |
---|
104 | |
---|
105 | void setParent (PNode* parent); |
---|
106 | void setParent (const char* parentName); |
---|
107 | /** @returns the parent of this PNode */ |
---|
108 | inline PNode* getParent () const { return this->parent; }; |
---|
109 | /** @returns the List of Children of this PNode */ |
---|
110 | inline const tList<PNode>* getChildren() const { return this->children; }; |
---|
111 | |
---|
112 | void setParentSoft(PNode* parentNode, float bias = 1.0); |
---|
113 | void setParentSoft(const char* parentName, float bias = 1.0); |
---|
114 | |
---|
115 | /** @param parentMode sets the parentingMode of this Node */ |
---|
116 | void setParentMode (PARENT_MODE parentMode) { this->parentMode = parentMode; }; |
---|
117 | void setParentMode (const char* parentingMode); |
---|
118 | /** @returns the Parenting mode of this node */ |
---|
119 | int getParentMode() const { return this->parentMode; }; |
---|
120 | |
---|
121 | void update (float dt); |
---|
122 | |
---|
123 | void debug (unsigned int depth = 1, unsigned int level = 0) const; |
---|
124 | void debugDraw(unsigned int depth = 1, float size = 1.0, const Vector& color = Vector(1, 0, 0), unsigned int level = 0) const; |
---|
125 | |
---|
126 | |
---|
127 | // helper functions // |
---|
128 | static const char* parentingModeToChar(int parentingMode); |
---|
129 | static PARENT_MODE charToParentingMode(const char* parentingMode); |
---|
130 | |
---|
131 | |
---|
132 | private: |
---|
133 | void init(PNode* parent); |
---|
134 | /** tells the child that the parent's Coordinate has changed */ |
---|
135 | inline void parentCoorChanged () { this->bRelCoorChanged = true; } |
---|
136 | /** tells the child that the parent's Direction has changed */ |
---|
137 | inline void parentDirChanged () { this->bRelDirChanged = true; } |
---|
138 | /** @returns the last calculated coordinate */ |
---|
139 | inline Vector getLastAbsCoor() { return this->lastAbsCoordinate; } |
---|
140 | |
---|
141 | |
---|
142 | private: |
---|
143 | bool bRelCoorChanged; //!< If Relative Coordinate has changed since last time we checked |
---|
144 | bool bRelDirChanged; //!< If Relative Direction has changed since last time we checked |
---|
145 | |
---|
146 | Vector relCoordinate; //!< coordinates relative to the parent |
---|
147 | Vector absCoordinate; //!< absolute coordinates in the world ( from (0,0,0) ) |
---|
148 | Quaternion relDirection; //!< direction relative to the parent |
---|
149 | Quaternion absDirection; //!< absolute direvtion in the world ( from (0,0,1) ) |
---|
150 | |
---|
151 | Vector prevRelCoordinate; //!< The last Relative Coordinate from the last update-Cycle. |
---|
152 | Vector lastAbsCoordinate; //!< this is used for speedcalculation, it stores the last coordinate |
---|
153 | Quaternion prevRelDirection; //!< The last Relative Direciton from the last update-Cycle. |
---|
154 | // Quaternion lastAbsDirection; |
---|
155 | |
---|
156 | Vector velocity; //!< Saves the velocity. |
---|
157 | |
---|
158 | Vector* toCoordinate; //!< a position to which to iterate. (This is used in conjunction with setParentSoft.and set*CoorSoft) |
---|
159 | Quaternion* toDirection; //!< a direction to which to iterate. (This is used in conjunction with setParentSoft and set*DirSoft) |
---|
160 | float bias; //!< how fast to iterate to the given position (default is 1) |
---|
161 | |
---|
162 | PNode* parent; //!< a pointer to the parent node |
---|
163 | tList<PNode>* children; //!< list of the children of this PNode |
---|
164 | |
---|
165 | unsigned int parentMode; //!< the mode of the binding |
---|
166 | }; |
---|
167 | |
---|
168 | #endif /* _P_NODE_H */ |
---|
169 | |
---|