Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 80a5766880837ce7c65d75d5ef7d940850bfdd62 (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
64
65
66
67
68
69
70
71
72
73
74
75
/*
   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 game {

class CheckPoint;

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

/// a race track entity
class RaceTrack : public core::EntityDynamic {

public:
	/// default constructor
	RaceTrack();

	/// default destructor
	virtual ~RaceTrack();

	/// list of racetrack checkpoints
	typedef std::list<CheckPoint *>  CheckPoints ;

	/// the player who activated the race
	inline core::Player *player() { return track_player; }

	/// add a checkpoint to the racetrack
	void add_checkpoint(CheckPoint *checkpoint);

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

	/// entity received a docking request
	virtual void dock(core::Entity *entity);

	/// run one time frame
	virtual void frame(float elapsed);
	
private:
	CheckPoints 		track_checkpoints;
	core::Player		*track_player;
	float			track_racestart;
	float			track_checkpointtime;
	CheckPoints::iterator	track_checkpoint;
	
};

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

/// a checkpoint for the race track
class CheckPoint : public core::EntityDynamic  {
public:
	CheckPoint(RaceTrack *parent);
	~CheckPoint();

private:
	RaceTrack		*parent_track;
};


}

#endif // __INCLUDED_BASE_NAVPOINT_H__