Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/coord/p_node.h @ 6046

Last change on this file since 6046 was 6042, checked in by bensch, 19 years ago

orxonox/trunk: new Definitions for PNodes reparenting structure

File size: 10.0 KB
RevLine 
[4570]1/*!
[5391]2 * @file p_node.h
[6042]3 * @brief Definition of THE Parenting Node
[5391]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
[6042]12 *  o bRelCoorChanged is true (so moved)
13 *  o bRelDirChanged is true (so changed)
[5391]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"
[6042]22
[3804]23#include "vector.h"
[5770]24#include <list>
[3246]25
[5405]26// FORWARD DECLARATION
[4436]27class TiXmlElement;
[3246]28
[5006]29#define PNODE_ITERATION_DELTA    .001
[4765]30//! Parental linkage modes
31typedef enum
32{
[5769]33  // PARENTAL FOLLOWING
[6042]34  PNODE_LOCAL_ROTATE                   = 0x0001,    //!< Rotates all the children around their centers.
35  PNODE_ROTATE_MOVEMENT                = 0x0002,    //!< Moves all the children around the center of their parent, without the rotation around their own centers.
[4765]36
[6042]37  PNODE_MOVEMENT                       = 0x0004,    //!< Moves all children along with the parent.
38  // special linkage modes
39  PNODE_ALL                            = 0x0003,    //!< Moves all children around the center of their parent, and also rotates their centers
40  PNODE_ROTATE_AND_MOVE                = 0x0005,    //!< Rotates all children around their axis, and moves them as the Parent Moves, but does not rotate around the center of their parent.
[3565]41
[5769]42
43  // REPARENTING
[6042]44  PNODE_REPARENT_TO_NULLPARENT         = 0x0010,    //!< Reparents to the NullParent, if the Parent is Removed.
45  PNODE_REPARENT_TO_PARANTS_PARENT     = 0x0020,    //!< Reparents the Node to the parents (old) parent it the parent gets removed.
46  PNODE_REPARENT_DELETE_CHILDREN       = 0x0040,    //!< Deletes the Children of the node when This Node is Removed. (Use with care).
47  PNODE_REPARENT_KEEP_POSITION         = 0x0080,    //!< Tries to keep the Position if the Node is reparented.
[5769]48
49
50  // DELETION
[6042]51  PNODE_PROHIBIT_CHILD_DELETE          = 0x0100,    //!< Prohibits the Children from being deleted if this Node gets deleted.
52  PNODE_PROHIBIT_DELETE_WITH_PARENT    = 0x0200,    //!< Prohibits the Node to be deleted if the Parent is. Child will be reparented according to the Repaenting-Rules
53  PNODE_REPARENT_CHILDREN_ON_DELETE    = 0x0400,    //!< Reparents the Children of the Node to
54  PNODE_REPARANT_CHILDREN_ON_REMOVE    = 0x0800,    //!< Reparents the Children of the Node if the Node gets Removed.
[5769]55
[6042]56  // VISIBILITY/ACTIVITY
57  PNODE_HIDE_CHILDREN_IF_HIDDEN        = 0x1000,    //!< Prohibits the Children from being drawn if this node isn't visible. (used for Draw))
58  PNODE_HIDE_IF_PARENT_HIDDEN          = 0x2000,    //!< Prohibits the node from being drawn if the Parent is invisible.
59  PNODE_UPDATE_CHILDREN_IF_INACTIVE    = 0x4000,    //!< Updates the Children of this Node even if the Parent is Inactive (note if this's parent is inactive children won't be updated.)
60  PNODE_STATIC_NODE                    = 0x8000,    //!< Used for nodes that do not have any moving children, and that do not move.
61
[4765]62} PARENT_MODE;
63
[3450]64//! The default mode of the translation-binding.
[6042]65#define PNODE_PARENT_MODE_DEFAULT PNODE_ALL | \
66                                  PNODE_REPARENT_KEEP_POSITION
[3246]67
[4440]68
[3450]69//! Patent Node is a Engine to calculate the position of an Object in respect to the position of its parent.
[4382]70class PNode : virtual public BaseObject {
[3365]71
[3246]72 public:
73  PNode ();
[4436]74  PNode(const TiXmlElement* root);
[4993]75  PNode (const Vector& absCoor, PNode* pNode);
[3365]76  virtual ~PNode ();
[3246]77
[4436]78  void loadParams(const TiXmlElement* root);
79
[3810]80  void setRelCoor (const Vector& relCoord);
[4610]81  void setRelCoor (float x, float y, float z);
[4992]82  void setRelCoorSoft(const Vector& relCoordSoft, float bias = 1.0);
83  void setRelCoorSoft(float x, float y, float z, float bias = 1.0);
[4836]84  /** @returns the relative position */
[5050]85  inline const Vector& getRelCoor () const { return this->prevRelCoordinate; };
[5113]86  /** @returns the Relative Coordinate Destination */
[5915]87  inline const Vector& getRelCoorSoft2D() const { return (this->toCoordinate)? *this->toCoordinate : this->relCoordinate; };
[3809]88  void setAbsCoor (const Vector& absCoord);
[4610]89  void setAbsCoor (float x, float y, float z);
[5406]90  void setAbsCoorSoft(const Vector& absCoordSoft, float bias = 1.0);
91  void setAbsCoorSoft(float x, float y, float z, float bias = 1.0);
[4836]92  /** @returns the absolute position */
[4372]93  inline const Vector& getAbsCoor () const { return this->absCoordinate; };
[3809]94  void shiftCoor (const Vector& shift);
[5750]95  void shiftCoor (float x, float y, float z) { this->shiftCoor(Vector(x, y, z)); };
[3246]96
[3810]97  void setRelDir (const Quaternion& relDir);
[4771]98  void setRelDir (float x, float y, float z);
[4992]99  void setRelDirSoft(const Quaternion& relDirSoft, float bias = 1.0);
100  void setRelDirSoft(float x, float y, float z, float bias = 1.0);
[4836]101  /** @returns the relative Direction */
[5050]102  inline const Quaternion& getRelDir () const { return this->prevRelDirection; };
[5113]103  /** @returns the Relative Directional Destination */
[5915]104  inline const Quaternion& getRelDirSoft2D() const { return (this->toDirection)? *this->toDirection : this->relDirection; };
[4836]105  /** @returns a Vector pointing into the relative Direction */
[5050]106  inline Vector getRelDirV() const { return this->prevRelDirection.apply(Vector(0,1,0)); };
[3810]107  void setAbsDir (const Quaternion& absDir);
[4771]108  void setAbsDir (float x, float y, float z);
[5414]109  void setAbsDirSoft(const Quaternion& absDirSoft, float bias = 1.0);
110  void setAbsDirSoft(float x, float y, float z, float bias = 1.0);
[5915]111  void shiftDir (const Quaternion& shift);
[4836]112  /** @returns the absolute Direction */
[4372]113  inline const Quaternion& getAbsDir () const { return this->absDirection; };
[4836]114  /** @returns a Vector pointing into the absolute Direction */
[4372]115  inline Vector getAbsDirV() const { return this->absDirection.apply(Vector(0,1,0)); };
[5915]116  /** @returns A Vector pointing into the forward direction (X) of the Node */
117  inline Vector getAbsDirX() const { return this->absDirection.apply(Vector(1,0,0)); };
118  /** @returns A Vector pointing into the upward direction (Y) of the Node */
119  inline Vector getAbsDirY() const { return this->absDirection.apply(Vector(0,1,0)); };
120  /** @returns A Vector pointing into the right direction (Z) of the Node */
121  inline Vector getAbsDirZ() const { return this->absDirection.apply(Vector(0,0,1)); };
[3246]122
[4836]123  /** @returns the Speed of the Node */
[4993]124  inline float getSpeed() const { return this->velocity.len(); };
[4836]125  /** @returns the Velocity of the Node */
[4993]126  inline const Vector& getVelocity() const { return this->velocity; };
[3644]127
[4440]128
[5382]129  void addChild (PNode* child);
[4765]130  void addChild (const char* childName);
[4993]131  void removeChild (PNode* child);
[5769]132  void removeNode();
[3537]133
[3535]134  void setParent (PNode* parent);
[4987]135  void setParent (const char* parentName);
[4966]136  /** @returns the parent of this PNode */
[5387]137  inline PNode* getParent () const { return this->parent; };
138  /** @returns the List of Children of this PNode */
[5769]139 // inline const tList<PNode>* getChildren() const { return this->children; };
[4761]140
[5382]141  void setParentSoft(PNode* parentNode, float bias = 1.0);
142  void setParentSoft(const char* parentName, float bias = 1.0);
[4987]143
[4993]144  /** @param parentMode sets the parentingMode of this Node */
145  void setParentMode (PARENT_MODE parentMode) { this->parentMode = parentMode; };
[4765]146  void setParentMode (const char* parentingMode);
[4836]147  /** @returns the Parenting mode of this node */
[4444]148  int getParentMode() const { return this->parentMode; };
[3246]149
[5769]150  void updateNode (float dt);
[3246]151
[5769]152  void countChildNodes(int& nodes) const;
153  void debugNode (unsigned int depth = 1, unsigned int level = 0) const;
[5383]154  void debugDraw(unsigned int depth = 1, float size = 1.0, const Vector& color = Vector(1, 0, 0), unsigned int level = 0) const;
[3365]155
[4993]156
157  // helper functions //
158  static const char* parentingModeToChar(int parentingMode);
159  static PARENT_MODE charToParentingMode(const char* parentingMode);
[5750]160
161
[4440]162 private:
163  void init(PNode* parent);
[4987]164  /** tells the child that the parent's Coordinate has changed */
[4440]165  inline void parentCoorChanged () { this->bRelCoorChanged = true; }
[4987]166  /** tells the child that the parent's Direction has changed */
[4440]167  inline void parentDirChanged () { this->bRelDirChanged = true; }
[4836]168  /** @returns the last calculated coordinate */
[4993]169  inline Vector getLastAbsCoor() { return this->lastAbsCoordinate; }
[3246]170
[3537]171
[3644]172 private:
[5770]173  bool               bRelCoorChanged;    //!< If Relative Coordinate has changed since last time we checked
174  bool               bRelDirChanged;     //!< If Relative Direction has changed since last time we checked
[3644]175
[5770]176  Vector             relCoordinate;      //!< coordinates relative to the parent
177  Vector             absCoordinate;      //!< absolute coordinates in the world ( from (0,0,0) )
178  Quaternion         relDirection;       //!< direction relative to the parent
179  Quaternion         absDirection;       //!< absolute direvtion in the world ( from (0,0,1) )
[4440]180
[5770]181  Vector             prevRelCoordinate;  //!< The last Relative Coordinate from the last update-Cycle.
182  Vector             lastAbsCoordinate;  //!< this is used for speedcalculation, it stores the last coordinate
183  Quaternion         prevRelDirection;   //!< The last Relative Direciton from the last update-Cycle.
184//  Quaternion         lastAbsDirection;
[4440]185
[5770]186  Vector             velocity;           //!< Saves the velocity.
[4987]187
[5770]188  Vector*            toCoordinate;       //!< a position to which to iterate. (This is used in conjunction with setParentSoft.and set*CoorSoft)
189  Quaternion*        toDirection;        //!< a direction to which to iterate. (This is used in conjunction with setParentSoft and set*DirSoft)
190  float              bias;               //!< how fast to iterate to the given position (default is 1)
[4987]191
[6042]192  PNode*             parent;             //!< a pointer to the parent node.
193  std::list<PNode*>  children;           //!< list of the children of this PNode.
[4440]194
[6042]195  bool               bActive;            //!< If the Node is Active (for cutting off the rest of the tree in update).
196  unsigned short     parentMode;         //!< the mode of the binding
[3246]197};
198
199#endif /* _P_NODE_H */
Note: See TracBrowser for help on using the repository browser.