Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/util/track/track.h @ 10454

Last change on this file since 10454 was 10454, checked in by patrick, 17 years ago

track now got constant speed

File size: 1.9 KB
Line 
1/*!
2 * @file track.h
3 */
4
5#ifndef _TRACK_H_
6#define _TRACK_H_
7
8#include "curve.h"
9#include "base_object.h"
10
11// Forward Definition
12class PNode;
13class TiXmlElement;
14
15class Track : public BaseObject
16{
17  ObjectListDeclaration(Track);
18
19 public:
20   Track();
21   Track(const TiXmlElement* root);
22   virtual ~Track();
23
24   virtual void loadParams(const TiXmlElement* root);
25   void addPoint(float x, float y, float z);
26   void addPointV(Vector newPoint);
27   void setSpeed(float speed);
28   void setMode(int newMode);
29
30   //void finalize();
31   inline Vector calcPos() const;
32   inline Vector calcDir() const;
33   void tick(float dt);
34
35   PNode* getTrackNode();
36
37   void drawGraph(float dt = 0.01) const;
38
39   //float                 startingTime;         //!< The time at which this Track begins.
40   float                 speed;
41   float                 duration;             //!< The time used to cross this Track (curve).
42   float                 endTime;              //!< The time at which this Track ends.
43   float                 width;                //!< Th width of the Path. This tells the Player(s), how far he(they) can go to the left/right.
44
45   int                   nodeCount;            //!< The count of points this Track has.
46   Curve*                curve;                //!< The Curve of this Track
47
48 private:
49   void init();
50
51
52 private:
53   CurveType            curveType;              //!< The CurveType the entire TrackSystem will have.
54   float                localTime;              //!< The time that has been passed since the traveling the Track.
55   PNode*               trackNode;              //!< The node that is slave to the Track. This node will be moved while update the Track, and must NOT move itself.
56   int                  mode;                   //!< Defines the behaviour of the Track.
57};
58
59#endif /* _TRACK_H */
Note: See TracBrowser for help on using the repository browser.