Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/track_manager.h @ 3524

Last change on this file since 3524 was 3522, checked in by bensch, 20 years ago

orxonox/trunk: merged the important files of the trackManager to the trunk
It was not anymore possible to merge.

this is not so big a problem, as I only coded inside the track_manager, track_node files. But it will be if we try to merge other branches back to the trunk

File size: 6.8 KB
Line 
1/*!
2    \file track_manager.h
3    \brief manages all tracks defined in the world and the path the player takes
4
5    it is a container for all tracks and all track-nodes. it manages the movement of
6    the track helper-parent (that drives the player). it is responsable for calculating
7    smooth curves etc.
8*/
9
10
11#ifndef _TRACK_MANAGER_H
12#define _TRACK_MANAGER_H
13
14#include "stdincl.h"
15#include "curve.h"
16
17class PNode;
18
19//! A Graph-Element, that holds the curve-structure of a Level.
20/**
21   A TrackElement is used, to define the structure of the Track itself.
22   It is a graph and not a tree, because paths can fork and join again.
23*/
24class TrackElement
25{
26 public:
27  TrackElement(void);
28  ~TrackElement(void);
29
30  TrackElement* findByID(unsigned int trackID);
31  bool backLoopCheck(TrackElement* trackElem);
32
33  bool isFresh;              //!< If no Points where added until now
34  bool isHotPoint;           //!< If the first node is a specialPoint;
35  bool isSavePoint;          //!< If the first node is a savePoint
36  bool isFork;               //!< If the first node is a Fork
37  bool isJoined;             //!< If the End of the Curve is joined.
38  bool mainJoin;             //!< If the End of the Curve is joined, and this is the one Curve the others join to.
39  int ID;                    //!< The ID of this TrackElement
40  float startingTime;        //!< The time at which this Track begins.
41  float duration;            //!< The time used to cross this TrackElement (curve).
42  float endTime;             //!< The time at which this Track ends.
43  float jumpTime;            //!< The Time this Track has to jump to its preceding Track (only >0 if Track isJoined==true)
44  CurveType curveType;       //!< The CurveType this will have.
45  int nodeCount;             //!< The count of points this TrackElement has.
46  char* name;                //!< A name for the Trac.
47  Curve* curve;              //!< The Curve of this TrackElement
48  int childCount;            //!< The number of Children This TrackElement has.
49  TrackElement** children;   //!< A TrackElement can have a Tree of following TrackElements.
50
51  // CONDITION FUNCTIONS and STUFF
52  void* subject;             //!< The Subject the Condition should act upon.
53  int (TrackElement::*condFunc)(void*); //!< Pointer to the condition function
54
55  int lowest(void* nothing);
56  int highest(void* nothing);
57  int random(void* nothing);
58
59  int leftRight(void* node);
60  int nearest(void* node);
61  // todo  int enemyKilled(void* entity);
62};
63
64//! the Condition to choose between the different ways of the game.
65enum CONDITION {LOWEST, HIGHEST, RANDOM, LEFTRIGHT, NEAREST, ENEMYKILLED};
66
67//! The TrackManager handles the flow of the Players through the game.
68/**
69
70   <b>The TrackManager works as followed:</b> \n
71     \n
72   <b>1. Initialize it, by setting up the Graph. You can do this by using the following Commands.</b>
73    \li workOn(): changes the ID that will be altered through the changes.
74    \li setCurveType(): lets you set the CurveType of the Curve we are Working on. (default is BezierCurve, set this as early as possible, for this uses resources).
75    \li setDuration(): sets the length of the current path in seconds.
76    \li addPoint(): adds a point to the Curve.
77    \li addHotPoint(): adds save/splitpoint.\n
78    \li fork(): adds some interessting non-linear movments through the level (fork will force addHotPoint if not done then).
79    \li condition(): decides under what condition a certain Path will be chosen.
80    \li join(): joins some tracks together again. Join will set the localTime to the longest time a Path has to get to this Point)
81    \li setSavePoint(): Sets a HotPoint into a savePoint. A Savepoint can be used as a rollbackpoint if a Player gets shot.
82
83    HotPoints and Joins are at the beginning of a TrackElement. \n
84    SavePoints and Forks are at the end of a TrackElement \n
85    look out: <b>SAVEPOINTS CAN NOT BE FORKS</b> (but joins), because the condition is really hard to guess if you do not give some impuls. \n
86\n
87   <b> 2. Runtime knows the following: </b>
88    \li calcPos(): returns the current position on the track
89    \li calcDir(): returns the current Direction the track is flying on.
90    \li tick(): makes a Step on the Path. increases localTime by dt.
91    \li choosePath(): a Function that decides which Path we should follow.
92   
93   TrackManager can be handled as a StateMachine.
94   \n\n
95    Names:
96    \li TrackManager: handles Tracks
97    \li Track:        The Track that the ship can follow
98    \li Path:         one way through the Level, that is dependent on conditionals.
99    \li Conditional:  A decition making device, that chooses betwen different TrackElements for the Path.
100    \li TrackElement: A Part of A whole Track
101*/
102class TrackManager : public BaseObject
103{
104 private:
105  TrackManager(void);
106
107  static TrackManager* singletonRef;  //!< There may only be one TrackManager existing.
108  TrackElement* firstTrackElem;       //!< The first TrackElement that exists.
109  TrackElement* currentTrackElem;     //!< The TrackElement we are working on.
110  float localTime;                    //!< The time that has been passed since the traveling the Track.
111  float maxTime;                      //!< The maximal time the track has.
112  int trackElemCount;                 //!< The count of TrackElements that exist.
113  PNode* bindSlave;                   //!< The node that is slave to the TrackManager. This node will be moved while update the TrackManager, and must NOT move itself.
114 
115  void initChildren(unsigned int childCount);
116
117  TrackElement* findTrackElementByID(unsigned int trackID) const;
118 
119 public:
120  ~TrackManager(void);
121  static TrackManager* getInstance(void);
122
123  // Methods to change the Path (initialisation)
124  void workOn(unsigned int trackID);
125  /** \see setCurveType(CurveType curveType, TrackElement* trackElem); \param curveType the type of the Curve */
126  inline void setCurveType(CurveType curveType) { this->setCurveType (curveType, this->currentTrackElem);};
127  void setCurveType(CurveType curveType, TrackElement* trackElem);
128  void setDuration(float time);
129  bool addPoint(Vector newPoint);
130  bool addPoint(Vector newPoint, TrackElement* trackElem);
131  int addHotPoint(Vector newPoint);
132  int setSavePoint(void);
133  void fork(unsigned int count, ...);
134  void forkV(unsigned int count, int* trackIDs);
135  void condition(CONDITION cond, void* subject);
136  void condition(unsigned int groupID, CONDITION cond, void* subject);
137  void join(unsigned int count, ...);
138  void joinV(unsigned int count, int* trackIDs);
139  void finalize(void);
140
141  // Methods to calculate the position on the Path (runtime)
142  inline Vector calcPos(void) const;
143  inline Vector calcDir(void) const;
144  void tick(float dt);
145  void jumpTo(float time);
146  inline int choosePath(TrackElement* trackElem);
147
148  void setBindSlave(PNode* bindSlave);
149
150  // DEBUG //
151  void drawGraph(float dt) const;
152  void debug(unsigned int level) const;
153};
154
155#endif /* _TRACK_MANAGER_H */
Note: See TracBrowser for help on using the repository browser.