Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/trackManager/src/track_manager.h @ 3500

Last change on this file since 3500 was 3498, checked in by bensch, 21 years ago

orxonox/branches/trackManager: merged trunk back to tracManager R3440:3497 → 3498
merged with command:
svn merge ../trunk/ trackManager/ -r 3430:HEAD
conflicts resolved in favor of the Trunk

File size: 6.1 KB
RevLine 
[3311]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"
[3498]15#include "curve.h"
[3311]16
[3371]17class PNode;
[3311]18
[3331]19//! condition for choosing a certain Path. \todo implement a useful way.
20struct PathCondition
21{
22 
23};
24 
25
26//! A Graph-Element, that holds the curve-structure of a Level.
27/**
28   A TrackElement is used, to define the structure of the Track itself.
29   It is a graph and not a tree, because paths can fork and join again.
30*/
31class TrackElement
32{
33 public:
34  TrackElement(void);
35  ~TrackElement(void);
36
[3332]37  TrackElement* findByID(unsigned int trackID);
[3463]38  bool backLoopCheck(TrackElement* trackElem);
[3332]39
40  bool isFresh;              //!< If no Points where added until now
[3354]41  bool isHotPoint;           //!< If the first node is a specialPoint;
[3331]42  bool isSavePoint;          //!< If the first node is a savePoint
43  bool isFork;               //!< If the first node is a Fork
44  bool isJoined;             //!< If the End of the Curve is joined.
[3356]45  bool mainJoin;             //!< If the End of the Curve is joined, and this is the one Curve the others join to.
[3331]46  PathCondition cond;        //!< The Split Condition;
47  int ID;                    //!< The ID of this TrackElement
[3333]48  float startingTime;        //!< The time at which this Track begins.
49  float duration;            //!< The time used to cross this TrackElement (curve).
[3373]50  float endTime;             //!< The time at which this Track ends.
51  float jumpTime;            //!< The Time this Track has to jump to its preceding Track (only >0 if Track isJoined==true)
[3331]52  CurveType curveType;       //!< The CurveType this will have.
53  int nodeCount;             //!< The count of points this TrackElement has.
[3332]54  char* name;                //!< A name for the Trac.
[3331]55  Curve* curve;              //!< The Curve of this TrackElement
56  int childCount;            //!< The number of Children This TrackElement has.
57  TrackElement** children;   //!< A TrackElement can have a Tree of following TrackElements.
58};
59
60
61
[3330]62//! The TrackManager handles the flow of the Players through the game.
63/**
64
65   <b>The TrackManager works as followed:</b> \n
66     \n
67   <b>1. Initialize it, by setting up the Graph. You can do this by using the following Commands.</b>
68    \li workOn(): changes the ID that will be altered through the changes.
[3332]69    \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).
[3333]70    \li setDuration(): sets the length of the current path in seconds.
[3330]71    \li addPoint(): adds a point to the Curve.
72    \li addHotPoint(): adds save/splitpoint.\n
73    \li fork(): adds some interessting non-linear movments through the level (fork will force addHotPoint if not done then).
74    \li condition(): decides under what condition a certain Path will be chosen.
75    \li join(): joins some tracks together again. Join will set the localTime to the longest time a Path has to get to this Point)
76    \li setSavePoint(): Sets a HotPoint into a savePoint. A Savepoint can be used as a rollbackpoint if a Player gets shot.
77
[3332]78    HotPoints and Joins are at the beginning of a TrackElement. \n
79    SavePoints and Forks are at the end of a TrackElement \n
[3330]80    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
81\n
82   <b> 2. Runtime knows the following: </b>
83    \li calcPos(): returns the current position on the track
84    \li calcDir(): returns the current Direction the track is flying on.
85    \li tick(): makes a Step on the Path. increases localTime by dt.
86    \li choosePath(): a Function that decides which Path we should follow.
87   
88   TrackManager can be handled as a StateMachine.
[3331]89   \n\n
90    Names:
91    \li TrackManager: handles Tracks
92    \li Track:        The Track that the ship can follow
93    \li Path:         one way through the Level, that is dependent on conditionals.
94    \li Conditional:  A decition making device, that chooses betwen different TrackElements for the Path.
95    \li TrackElement: A Part of A whole Track
[3330]96*/
[3331]97class TrackManager : public BaseObject
98{
[3330]99 private:
[3331]100  TrackManager(void);
101
102  static TrackManager* singletonRef;  //!< There may only be one TrackManager existing.
103  TrackElement* firstTrackElem;       //!< The first TrackElement that exists.
[3332]104  TrackElement* currentTrackElem;     //!< The TrackElement we are working on.
[3331]105  float localTime;                    //!< The time that has been passed since the traveling the Track.
106  float maxTime;                      //!< The maximal time the track has.
107  int trackElemCount;                 //!< The count of TrackElements that exist.
[3371]108  PNode* bindSlave;
[3330]109 
[3335]110  void initChildren(unsigned int childCount);
[3311]111
[3332]112  TrackElement* findTrackElementByID(unsigned int trackID) const;
[3350]113 
[3311]114 public:
[3331]115  ~TrackManager(void);
116  static TrackManager* getInstance(void);
[3311]117
[3330]118  // Methods to change the Path (initialisation)
[3332]119  void workOn(unsigned int trackID);
[3373]120  inline void setCurveType(CurveType curveType) { this->setCurveType (curveType, this->currentTrackElem);}
121  void setCurveType(CurveType curveType, TrackElement* trackElem);
[3333]122  void setDuration(float time);
123  bool addPoint(Vector newPoint);
[3352]124  bool addPoint(Vector newPoint, TrackElement* trackElem);
[3333]125  int addHotPoint(Vector newPoint);
126  int setSavePoint(void);
[3332]127  void fork(unsigned int count, ...);
128  void forkV(unsigned int count, int* trackIDs);
129  void condition(unsigned int groupID, PathCondition cond); //!< \todo really do this!!
130  void join(unsigned int count, ...);
131  void joinV(unsigned int count, int* trackIDs);
[3376]132  void finalize(void);
[3311]133
[3330]134  // Methods to calculate the position on the Path (runtime)
[3332]135  Vector calcPos(void) const;
136  Vector calcDir(void) const;
[3330]137  void tick(float dt);
[3331]138  void jumpTo(float time);
[3330]139  void choosePath(int graphID);
[3311]140
[3371]141  void setBindSlave(PNode* bindSlave);
142
[3350]143  // DEBUG //
144  void drawGraph(float dt) const;
145  void debug(unsigned int level) const;
[3311]146};
147
148#endif /* _TRACK_MANAGER_H */
Note: See TracBrowser for help on using the repository browser.