Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/bezierTrack/src/track.h @ 3014

Last change on this file since 3014 was 3014, checked in by bensch, 19 years ago

orxonox/branches/bezierTrack: Track visible. It worked :)

File size: 1.3 KB
Line 
1/*!
2    \file track.h
3    \brief Basic level architecture
4*/ 
5
6#ifndef TRACK_H
7#define TRACK_H
8
9#include "stdincl.h"
10
11//!     The Red Line through a level
12/**
13   Handles level boundaries, bound movement mapping, camera placement and scripting.
14   To create special levels with special camera movement, rules or whatever, derive from this base class.
15*/
16class Track
17{
18 private:
19  Uint32 ID;
20  Vector* offset;
21  Vector* end;
22  BezierCurve curve;
23  // Vector* direction; // unity direction vector: it is costy to always recalculate it
24  //Vector* up; // direction where up is ment to be - diffuse in space, eh?
25  //Vector* traverse; // right-left
26  Uint32 nextID;
27 
28  Track* next;
29  Track* previous;
30       
31 public:
32  Track ();
33 
34  ~Track ();
35  virtual void init();
36
37  void addPoint (Vector point);
38  void addHotPoint (Vector hotPoint);
39 
40  Vector getPos(float t);
41 
42  virtual void post_enter (WorldEntity* entity);        // handle coordinate transition in here !!! (when dist < 0 or dist > lasttracklenght)
43  virtual void post_leave (WorldEntity* entity);
44  virtual void tick (float deltaT);
45  virtual void map_camera (Location* lookat, Placement* camplc);
46  virtual bool map_coords (Location* loc, Placement* plc);      // this should return true if the entity left track boundaries
47};
48
49#endif
Note: See TracBrowser for help on using the repository browser.