1 // FGAIPlane - abstract base class for an AI plane
3 // Written by David Luff, started 2002.
5 // Copyright (C) 2002 David C. Luff - david.luff@nottingham.ac.uk
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 // General Public License for more details.
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 /*****************************************************************
23 * WARNING - Curt has some ideas about AI traffic so anything in here
24 * may get rewritten or scrapped. Contact Curt curt@flightgear.org
25 * before spending any time or effort on this code!!!
27 ******************************************************************/
29 #ifndef _FG_AI_PLANE_HXX
30 #define _FG_AI_PLANE_HXX
32 #include <Model/model.hxx>
35 #include <simgear/math/point3d.hxx>
37 #include "AIEntity.hxx"
41 /*****************************************************************
43 * FGAIPlane - this class is derived from FGAIEntity and adds the
44 * practical requirement for an AI plane - the ability to send radio
45 * communication, and simple performance details for the actual AI
46 * implementation to use. The AI implementation is expected to be
47 * in derived classes - this class does nothing useful on its own.
49 ******************************************************************/
50 class FGAIPlane : public FGAIEntity {
56 // Run the internal calculations
57 virtual void Update(double dt);
59 // Send a transmission *TO* the AIPlane.
60 // FIXME int code is a hack - eventually this will receive Alexander's coded messages.
61 virtual void RegisterTransmission(int code);
66 double mag_hdg; // degrees - the heading that the physical aircraft is *pointing*
67 double track; // track that the physical aircraft is *following* - degrees relative to *true* north
68 double crab; // Difference between heading and track due to wind.
69 double mag_var; // degrees
70 double IAS; // Indicated airspeed in knots
71 double vel; // velocity along track in knots
72 double vel_si; // velocity along track in m/s
73 double slope; // Actual slope that the plane is flying (degrees) - +ve is uphill
74 double AoA; // degrees - difference between slope and pitch
75 // We'll assume that the plane doesn't yaw or slip - the track/heading difference is to allow for wind
77 double freq; // The comm frequency that we're operating on
79 // We need some way for this class to display its radio transmissions if on the
80 // same frequency and in the vicinity of the user's aircraft
81 // This may need to be done independently of ATC eg CTAF
82 // Make radio transmission - this simply sends the transmission for physical rendering if the users
83 // aircraft is on the same frequency and in range. It is up to the derived classes to let ATC know
85 void Transmit(string msg);
87 void Bank(double angle);
88 void LevelWings(void);
91 #endif // _FG_AI_PLANE_HXX