2002-04-03 23:54:44 +00:00
|
|
|
// AIMgr.hxx - definition of FGAIMgr
|
|
|
|
// - a global management class for FlightGear generated AI traffic
|
|
|
|
//
|
|
|
|
// Written by David Luff, started March 2002.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2002 David C Luff - david.luff@nottingham.ac.uk
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
#ifndef _FG_AIMGR_HXX
|
|
|
|
#define _FG_AIMGR_HXX
|
|
|
|
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/subsystem_mgr.hxx>
|
|
|
|
|
2002-04-03 23:54:44 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
2003-03-07 14:42:14 +00:00
|
|
|
#include "ATCmgr.hxx"
|
2002-04-03 23:54:44 +00:00
|
|
|
#include "AIEntity.hxx"
|
|
|
|
|
|
|
|
SG_USING_STD(list);
|
|
|
|
|
2003-03-07 13:58:33 +00:00
|
|
|
|
2003-09-24 17:20:55 +00:00
|
|
|
class FGAIMgr : public SGSubsystem
|
2002-04-03 23:54:44 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
private:
|
2003-03-07 13:58:33 +00:00
|
|
|
FGATCMgr* ATC;
|
|
|
|
// This is purely for synactic convienience to avoid writing globals->get_ATC_mgr()-> all through the code!
|
2002-04-03 23:54:44 +00:00
|
|
|
|
|
|
|
// A list of pointers to all currently active AI stuff
|
|
|
|
typedef list <FGAIEntity*> ai_list_type;
|
|
|
|
typedef ai_list_type::iterator ai_list_iterator;
|
|
|
|
typedef ai_list_type::const_iterator ai_list_const_iterator;
|
|
|
|
|
|
|
|
// Everything put in this list should be created dynamically
|
|
|
|
// on the heap and ***DELETED WHEN REMOVED!!!!!***
|
|
|
|
ai_list_type ai_list;
|
|
|
|
ai_list_iterator ai_list_itr;
|
|
|
|
// Any member function of FGATCMgr is permitted to leave this iterator pointing
|
|
|
|
// at any point in or at the end of the list.
|
|
|
|
// Hence any new access must explicitly first check for atc_list.end() before dereferencing.
|
2003-03-07 13:58:33 +00:00
|
|
|
|
2003-03-09 17:39:44 +00:00
|
|
|
// A list of airport ID's
|
|
|
|
typedef list < string > aptID_list_type;
|
|
|
|
typedef aptID_list_type::iterator aptID_list_iterator;
|
|
|
|
|
2003-03-07 13:58:33 +00:00
|
|
|
// A map of airport-IDs that have taxiway network files against bucket number
|
2003-03-09 17:39:44 +00:00
|
|
|
typedef map < int, aptID_list_type* > ai_apt_map_type;
|
2003-03-07 13:58:33 +00:00
|
|
|
typedef ai_apt_map_type::iterator ai_apt_map_iterator;
|
|
|
|
ai_apt_map_type airports;
|
2003-03-09 17:39:44 +00:00
|
|
|
|
|
|
|
// A map of airport ID's that we've activated AI traffic at
|
|
|
|
typedef map < string, int > ai_activated_map_type;
|
|
|
|
typedef ai_activated_map_type::iterator ai_activated_map_iterator;
|
|
|
|
ai_activated_map_type activated;
|
2002-04-03 23:54:44 +00:00
|
|
|
|
|
|
|
// Position of the Users Aircraft
|
2003-03-09 17:39:44 +00:00
|
|
|
double lon;
|
|
|
|
double lat;
|
|
|
|
double elev;
|
2002-04-03 23:54:44 +00:00
|
|
|
// Pointers to current users position
|
2003-03-09 17:39:44 +00:00
|
|
|
SGPropertyNode *lon_node;
|
|
|
|
SGPropertyNode *lat_node;
|
|
|
|
SGPropertyNode *elev_node;
|
2002-04-03 23:54:44 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FGAIMgr();
|
|
|
|
~FGAIMgr();
|
|
|
|
|
|
|
|
void init();
|
|
|
|
|
|
|
|
void bind();
|
|
|
|
|
|
|
|
void unbind();
|
|
|
|
|
2002-10-02 15:27:49 +00:00
|
|
|
void update(double dt);
|
2002-04-03 23:54:44 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2003-09-05 10:23:20 +00:00
|
|
|
bool initDone; // Hack - guard against update getting called before init
|
|
|
|
|
2002-04-03 23:54:44 +00:00
|
|
|
// Remove a class from the ai_list and delete it from memory
|
|
|
|
//void RemoveFromList(const char* id, atc_type tp);
|
2003-03-09 17:39:44 +00:00
|
|
|
|
|
|
|
// Activate AI traffic at an airport
|
|
|
|
void ActivateAirport(string id);
|
|
|
|
|
|
|
|
// Search for valid airports in the vicinity of the user and activate them if necessary
|
|
|
|
void SearchByPos(double range);
|
2002-04-03 23:54:44 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _FG_AIMGR_HXX
|