Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/parenting/src/p_node.h @ 3277

Last change on this file since 3277 was 3277, checked in by patrick, 19 years ago

orxonox/branches/parenting: worldentity is now derived from parentnode, pNode added into the world class, not yet used activly.. this will be a mess…

File size: 2.5 KB
Line 
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    remember: if you have to change the coordinates or the directions, use the functions
17    that are defined to execute this operation - otherwhise there will be big problems...
18*/
19
20
21#ifndef _P_NODE_H
22#define _P_NODE_H
23
24#include "stdincl.h"
25
26class PNode; /* forward decleration, so that parentEntry has access to PNode */
27
28typedef enum parentingMode {MOVEMENT = 0, ROTATION, ALL};
29#define DEFAULT_MODE ALL
30
31class PNode {
32
33 public:
34  PNode ();
35  PNode (Vector* absCoordinate, PNode* pNode);
36  virtual ~PNode ();
37
38  void destroy ();
39
40  PNode* parent; //! a pointer to the parent node
41  tList<PNode>* children; //! list of the children
42
43  parentingMode mode;
44
45  Vector getRelCoor ();
46  void setRelCoor (Vector* relCoord);
47  Vector getAbsCoor ();
48  void setAbsCoor (Vector* absCoord);
49  void shiftCoor (Vector* shift);
50
51  Quaternion getRelDir ();
52  void setRelDir (Quaternion* relDir);
53  Quaternion getAbsDir ();
54  void setAbsDir (Quaternion* absDir);
55  void shiftDir (Quaternion* shift);
56
57  void addChild (PNode* pNode);
58  void addChild (PNode* pNode, parentingMode mode);
59  void removeChild (PNode* pNode);
60  void setParent (PNode* parent);
61  void parentCoorChanged ();
62  void parentDirChanged ();
63  void setMode (parentingMode mode);
64  virtual void update (long timeStamp);
65
66  void debug ();
67
68  long timeStamp;   //! this the timeStamp of when the abs{Coordinat, Direction} has been calculated
69  bool bAbsCoorChanged;
70  bool bRelCoorChanged;
71  bool bRelDirChanged;
72  bool bAbsDirChanged;
73
74  Vector relCoordinate;  //! coordinates relative to the parent
75  Vector absCoordinate; //! absolute coordinates in the world ( from (0,0,0) )
76  Quaternion relDirection; //! direction relative to the parent
77  Quaternion absDirection; //! absolute direvtion in the world ( from (0,0,1) )
78
79};
80
81#endif /* _P_NODE_H */
Note: See TracBrowser for help on using the repository browser.