]> git.mxchange.org Git - flightgear.git/blob - src/ATC/AIMgr.hxx
Removed a lot of the remaining hardwired KEMT stuff, made the initialisation more...
[flightgear.git] / src / ATC / AIMgr.hxx
1 // AIMgr.hxx - definition of FGAIMgr 
2 // - a global management class for FlightGear generated AI traffic
3 //
4 // Written by David Luff, started March 2002.
5 //
6 // Copyright (C) 2002  David C Luff - david.luff@nottingham.ac.uk
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22 #ifndef _FG_AIMGR_HXX
23 #define _FG_AIMGR_HXX
24
25 #include <Main/fgfs.hxx>
26 #include <Main/fg_props.hxx>
27
28 #include <list>
29
30 #include "AIEntity.hxx"
31
32 SG_USING_STD(list);
33
34 class FGAIMgr : public FGSubsystem
35 {
36
37 private:
38
39     // A list of pointers to all currently active AI stuff
40     typedef list <FGAIEntity*> ai_list_type;
41     typedef ai_list_type::iterator ai_list_iterator;
42     typedef ai_list_type::const_iterator ai_list_const_iterator;
43
44     // Everything put in this list should be created dynamically
45     // on the heap and ***DELETED WHEN REMOVED!!!!!***
46     ai_list_type ai_list;
47     ai_list_iterator ai_list_itr;
48     // Any member function of FGATCMgr is permitted to leave this iterator pointing
49     // at any point in or at the end of the list.
50     // Hence any new access must explicitly first check for atc_list.end() before dereferencing.
51
52     // Position of the Users Aircraft
53     // (This may be needed to calculate the distance from the user when deciding which 3D model to render)
54     double current_lon;
55     double current_lat;
56     double current_elev;
57     // Pointers to current users position
58     SGPropertyNode *current_lon_node;
59     SGPropertyNode *current_lat_node;
60     SGPropertyNode *current_elev_node;
61
62     //FGATIS atis;
63     //FGGround ground;
64     //FGTower tower;
65     //FGApproach approach;
66     //FGDeparture departure;
67
68 public:
69
70     FGAIMgr();
71     ~FGAIMgr();
72
73     void init();
74
75     void bind();
76
77     void unbind();
78
79     void update(double dt);
80
81 private:
82
83     // Remove a class from the ai_list and delete it from memory
84     //void RemoveFromList(const char* id, atc_type tp);
85
86 };
87
88 #endif  // _FG_AIMGR_HXX