Last change
on this file since 10262 was
10096,
checked in by bknecht, 18 years ago
|
connected the track with the worldentities and the spaceship
|
File size:
1.6 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 |
---|
12 | class PNode; |
---|
13 | class TiXmlElement; |
---|
14 | |
---|
15 | class 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 addPoint(Vector newPoint); |
---|
27 | |
---|
28 | void finalize(); |
---|
29 | inline Vector calcPos() const; |
---|
30 | inline Vector calcDir() const; |
---|
31 | void tick(float dt); |
---|
32 | |
---|
33 | PNode* getTrackNode(); |
---|
34 | |
---|
35 | //float startingTime; //!< The time at which this Track begins. |
---|
36 | float duration; //!< The time used to cross this Track (curve). |
---|
37 | float endTime; //!< The time at which this Track ends. |
---|
38 | float width; //!< Th width of the Path. This tells the Player(s), how far he(they) can go to the left/right. |
---|
39 | |
---|
40 | int nodeCount; //!< The count of points this Track has. |
---|
41 | Curve* curve; //!< The Curve of this Track |
---|
42 | |
---|
43 | private: |
---|
44 | void init(); |
---|
45 | |
---|
46 | |
---|
47 | private: |
---|
48 | CurveType curveType; //!< The CurveType the entire TrackSystem will have. |
---|
49 | float localTime; //!< The time that has been passed since the traveling the Track. |
---|
50 | PNode* trackNode; //!< The node that is slave to the Track. This node will be moved while update the Track, and must NOT move itself. |
---|
51 | }; |
---|
52 | |
---|
53 | #endif /* _TRACK_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.