Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: b5b5dad2152f904763eda54ea51d7e893ac0e6ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
   base/racetrack.h
   This file is part of the Osirion project and is distributed under 
   the terms and conditions of the GNU General Public License version 2 
*/

#ifndef __INCLUDED_BASE_RACETRACK_H__
#define __INCLUDED_BASE_RACETRACK_H__

#include "core/entity.h"
#include "core/player.h"
#include "math/mathlib.h"

#include <string>

namespace base {

class CheckPoint;

/* ---- class RaceTrack -------------------------------------------- */

class RaceTrack : public core::EntityDynamic {

public:
	typedef std::list<CheckPoint *>  CheckPoints ;

	RaceTrack();
	~RaceTrack();

	void add_checkpoint(CheckPoint *checkpoint);

	/// reset the race track
	void reset();

	virtual void frame(float seconds);

	inline core::Player *player() { return track_player; }

private:
	CheckPoints 		track_checkpoints;
	core::Player		*track_player;
	float			track_racestart;
	float			track_checkpointtime;
	CheckPoints::iterator	track_checkpoint;
	
};

/* ---- class CheckPoint ------------------------------------------- */

class CheckPoint : public core::EntityDynamic  {
public:
	CheckPoint(RaceTrack *parent);
	~CheckPoint();

private:
	RaceTrack		*parent_track;
};


}

#endif // __INCLUDED_BASE_NAVPOINT_H__