]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIBase.cxx
AI aircraft will need to switch frequencies before being able to request
[flightgear.git] / src / AIModel / AIBase.cxx
1 // FGAIBase - abstract base class for AI objects
2 // Written by David Culp, started Nov 2003, based on
3 // David Luff's FGAIEntity class.
4 // - davidculp2@comcast.net
5 //
6 // With additions by Mathias Froehlich & Vivian Meazza 2004 -2007
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21
22
23 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include <simgear/compiler.h>
28
29 #include <string>
30
31 #include <osg/ref_ptr>
32 #include <osg/Node>
33 #include <osgDB/FileUtils>
34
35 #include <simgear/math/SGMath.hxx>
36 #include <simgear/misc/sg_path.hxx>
37 #include <simgear/scene/model/modellib.hxx>
38 #include <simgear/scene/util/SGNodeMasks.hxx>
39 #include <simgear/debug/logstream.hxx>
40 #include <simgear/props/props.hxx>
41
42 #include <Main/globals.hxx>
43 #include <Scenery/scenery.hxx>
44 #include <Scripting/NasalSys.hxx>
45
46 #include "AIBase.hxx"
47 #include "AIManager.hxx"
48
49 const char *default_model = "Models/Geometry/glider.ac";
50 const double FGAIBase::e = 2.71828183;
51 const double FGAIBase::lbs_to_slugs = 0.031080950172;   //conversion factor
52
53 using namespace simgear;
54
55 FGAIBase::FGAIBase(object_type ot) :
56     props( NULL ),
57     model_removed( fgGetNode("/ai/models/model-removed", true) ),
58     manager( NULL ),
59     fp( NULL ),
60
61     _impact_lat(0),
62     _impact_lon(0),
63     _impact_elev(0),
64     _impact_hdg(0),
65     _impact_pitch(0),
66     _impact_roll(0),
67     _impact_speed(0),
68
69     _refID( _newAIModelID() ),
70     _otype(ot),
71     _initialized(false)
72 {
73     tgt_heading = hdg = tgt_altitude_ft = tgt_speed = 0.0;
74     tgt_roll = roll = tgt_pitch = tgt_yaw = tgt_vs = vs = pitch = 0.0;
75     bearing = elevation = range = rdot = 0.0;
76     x_shift = y_shift = rotation = 0.0;
77     in_range = false;
78     invisible = false;
79     no_roll = true;
80     life = 900;
81     delete_me = false;
82     _impact_reported = false;
83     _collision_reported = false;
84     _subID = 0;
85
86     _x_offset = 0;
87     _y_offset = 0;
88     _z_offset = 0;
89
90     _pitch_offset = 0;
91     _roll_offset = 0;
92     _yaw_offset = 0;
93
94     userpos = SGGeod::fromDeg(0, 0);
95
96     pos = SGGeod::fromDeg(0, 0);
97     speed = 0;
98     altitude_ft = 0;
99     speed_north_deg_sec = 0;
100     speed_east_deg_sec = 0;
101     turn_radius_ft = 0;
102
103     ft_per_deg_lon = 0;
104     ft_per_deg_lat = 0;
105
106     horiz_offset = 0;
107     vert_offset = 0;
108     ht_diff = 0;
109
110     serviceable = false;
111
112     fp = 0;
113
114     rho = 1;
115     T = 280;
116     p = 1e5;
117     a = 340;
118     Mach = 0;
119 }
120
121 FGAIBase::~FGAIBase() {
122     // Unregister that one at the scenery manager
123     if (globals->get_scenery()) {
124         globals->get_scenery()->get_scene_graph()->removeChild(aip.getSceneGraph());
125     }
126
127     if (props) {
128         SGPropertyNode* parent = props->getParent();
129
130         if (parent)
131             model_removed->setStringValue(props->getPath());
132     }
133     delete fp;
134     fp = 0;
135 }
136
137 void FGAIBase::readFromScenario(SGPropertyNode* scFileNode)
138 {
139     if (!scFileNode)
140         return;
141
142     setPath(scFileNode->getStringValue("model",
143             fgGetString("/sim/multiplay/default-model", default_model)));
144
145     setHeading(scFileNode->getDoubleValue("heading", 0.0));
146     setSpeed(scFileNode->getDoubleValue("speed", 0.0));
147     setAltitude(scFileNode->getDoubleValue("altitude", 0.0));
148     setLongitude(scFileNode->getDoubleValue("longitude", 0.0));
149     setLatitude(scFileNode->getDoubleValue("latitude", 0.0));
150     setBank(scFileNode->getDoubleValue("roll", 0.0));
151
152     SGPropertyNode* submodels = scFileNode->getChild("submodels");
153
154     if (submodels) {
155         setServiceable(submodels->getBoolValue("serviceable", false));
156         setSMPath(submodels->getStringValue("path", ""));
157     }
158
159 }
160
161 void FGAIBase::update(double dt) {
162
163     if (_otype == otStatic)
164         return;
165
166     if (_otype == otBallistic)
167         CalculateMach();
168
169     ft_per_deg_lat = 366468.96 - 3717.12 * cos(pos.getLatitudeRad());
170     ft_per_deg_lon = 365228.16 * cos(pos.getLatitudeRad());
171 }
172
173 void FGAIBase::Transform() {
174
175     if (!invisible) {
176         aip.setVisible(true);
177         aip.setPosition(pos);
178
179         if (no_roll)
180             aip.setOrientation(0.0, pitch, hdg);
181         else
182             aip.setOrientation(roll, pitch, hdg);
183
184         aip.update();
185     } else {
186         aip.setVisible(false);
187         aip.update();
188     }
189
190 }
191
192 bool FGAIBase::init(bool search_in_AI_path) {
193     osg::ref_ptr<osgDB::ReaderWriter::Options> opt=
194         new osgDB::ReaderWriter::Options(*osgDB::Registry::instance()->getOptions());
195
196     if(search_in_AI_path)
197     {
198         SGPath ai_path(globals->get_fg_root());
199         ai_path.append("AI");
200         opt->getDatabasePathList().push_front(ai_path.str());
201     }
202
203     string f = osgDB::findDataFile(model_path, opt.get());
204
205     if(f.empty())
206         f = fgGetString("/sim/multiplay/default-model", default_model);
207
208     model = load3DModel(f, props);
209
210     if (model.valid() && _initialized == false) {
211         aip.init( model.get() );
212         aip.setVisible(true);
213         invisible = false;
214         globals->get_scenery()->get_scene_graph()->addChild(aip.getSceneGraph());
215         _initialized = true;
216
217     } else if (!model_path.empty()) {
218         SG_LOG(SG_INPUT, SG_WARN, "AIBase: Could not load model " << model_path);
219     }
220
221     setDie(false);
222     return true;
223 }
224
225 void FGAIBase::initModel(osg::Node *node)
226 {
227     if (model.valid()) {
228
229         fgSetString("/ai/models/model-added", props->getPath());
230
231     } else if (!model_path.empty()) {
232         SG_LOG(SG_INPUT, SG_WARN, "AIBase: Could not load model " << model_path);
233     }
234
235     props->setStringValue("submodels/path", _path.c_str());
236     setDie(false);
237 }
238
239
240 osg::Node* FGAIBase::load3DModel(const string &path, SGPropertyNode *prop_root)
241 {
242   model = SGModelLib::loadPagedModel(path, prop_root, new FGNasalModelData(prop_root));
243   initModel(model.get());
244   return model.get();
245 }
246
247 bool FGAIBase::isa( object_type otype ) {
248     return otype == _otype;
249 }
250
251
252 void FGAIBase::bind() {
253     props->tie("id", SGRawValueMethods<FGAIBase,int>(*this,
254         &FGAIBase::getID));
255     props->tie("velocities/true-airspeed-kt",  SGRawValuePointer<double>(&speed));
256     props->tie("velocities/vertical-speed-fps",
257         SGRawValueMethods<FGAIBase,double>(*this,
258         &FGAIBase::_getVS_fps,
259         &FGAIBase::_setVS_fps));
260
261     props->tie("position/altitude-ft",
262         SGRawValueMethods<FGAIBase,double>(*this,
263         &FGAIBase::_getAltitude,
264         &FGAIBase::_setAltitude));
265     props->tie("position/latitude-deg",
266         SGRawValueMethods<FGAIBase,double>(*this,
267         &FGAIBase::_getLatitude,
268         &FGAIBase::_setLatitude));
269     props->tie("position/longitude-deg",
270         SGRawValueMethods<FGAIBase,double>(*this,
271         &FGAIBase::_getLongitude,
272         &FGAIBase::_setLongitude));
273
274     props->tie("position/global-x",
275         SGRawValueMethods<FGAIBase,double>(*this,
276         &FGAIBase::_getCartPosX,
277         0));
278     props->tie("position/global-y",
279         SGRawValueMethods<FGAIBase,double>(*this,
280         &FGAIBase::_getCartPosY,
281         0));
282     props->tie("position/global-z",
283         SGRawValueMethods<FGAIBase,double>(*this,
284         &FGAIBase::_getCartPosZ,
285         0));
286     props->tie("callsign",
287         SGRawValueMethods<FGAIBase,const char*>(*this,
288         &FGAIBase::_getCallsign,
289         0));
290
291     props->tie("orientation/pitch-deg",   SGRawValuePointer<double>(&pitch));
292     props->tie("orientation/roll-deg",    SGRawValuePointer<double>(&roll));
293     props->tie("orientation/true-heading-deg", SGRawValuePointer<double>(&hdg));
294
295     props->tie("radar/in-range", SGRawValuePointer<bool>(&in_range));
296     props->tie("radar/bearing-deg",   SGRawValuePointer<double>(&bearing));
297     props->tie("radar/elevation-deg", SGRawValuePointer<double>(&elevation));
298     props->tie("radar/range-nm", SGRawValuePointer<double>(&range));
299     props->tie("radar/h-offset", SGRawValuePointer<double>(&horiz_offset));
300     props->tie("radar/v-offset", SGRawValuePointer<double>(&vert_offset));
301     props->tie("radar/x-shift", SGRawValuePointer<double>(&x_shift));
302     props->tie("radar/y-shift", SGRawValuePointer<double>(&y_shift));
303     props->tie("radar/rotation", SGRawValuePointer<double>(&rotation));
304     props->tie("radar/ht-diff-ft", SGRawValuePointer<double>(&ht_diff));
305     props->tie("subID", SGRawValuePointer<int>(&_subID));
306     props->tie("controls/lighting/nav-lights",
307         SGRawValueFunctions<bool>(_isNight));
308     props->setBoolValue("controls/lighting/beacon", true);
309     props->setBoolValue("controls/lighting/strobe", true);
310     props->setBoolValue("controls/glide-path", true);
311
312     props->setStringValue("controls/flight/lateral-mode", "roll");
313     props->setDoubleValue("controls/flight/target-hdg", hdg);
314     props->setDoubleValue("controls/flight/target-roll", roll);
315
316     props->setStringValue("controls/flight/longitude-mode", "alt");
317     props->setDoubleValue("controls/flight/target-alt", altitude_ft);
318     props->setDoubleValue("controls/flight/target-pitch", pitch);
319
320    props->setDoubleValue("controls/flight/target-spd", speed);
321
322 }
323
324 void FGAIBase::unbind() {
325     props->untie("id");
326     props->untie("velocities/true-airspeed-kt");
327     props->untie("velocities/vertical-speed-fps");
328
329     props->untie("position/altitude-ft");
330     props->untie("position/latitude-deg");
331     props->untie("position/longitude-deg");
332     props->untie("position/global-x");
333     props->untie("position/global-y");
334     props->untie("position/global-z");
335     props->untie("callsign");
336
337     props->untie("orientation/pitch-deg");
338     props->untie("orientation/roll-deg");
339     props->untie("orientation/true-heading-deg");
340
341     props->untie("radar/in-range");
342     props->untie("radar/bearing-deg");
343     props->untie("radar/elevation-deg");
344     props->untie("radar/range-nm");
345     props->untie("radar/h-offset");
346     props->untie("radar/v-offset");
347     props->untie("radar/x-shift");
348     props->untie("radar/y-shift");
349     props->untie("radar/rotation");
350     props->untie("radar/ht-diff-ft");
351
352     props->untie("controls/lighting/nav-lights");
353
354     props->setBoolValue("/sim/controls/radar/", true);
355
356 }
357
358 double FGAIBase::UpdateRadar(FGAIManager* manager) {
359     bool control = fgGetBool("/sim/controls/radar", true);
360
361     if(!control) return 0;
362
363     double radar_range_ft2 = fgGetDouble("/instrumentation/radar/range");
364     bool force_on = fgGetBool("/instrumentation/radar/debug-mode", false);
365     radar_range_ft2 *= SG_NM_TO_METER * SG_METER_TO_FEET * 1.1; // + 10%
366     radar_range_ft2 *= radar_range_ft2;
367
368     double user_latitude  = manager->get_user_latitude();
369     double user_longitude = manager->get_user_longitude();
370     double lat_range = fabs(pos.getLatitudeDeg() - user_latitude) * ft_per_deg_lat;
371     double lon_range = fabs(pos.getLongitudeDeg() - user_longitude) * ft_per_deg_lon;
372     double range_ft2 = lat_range*lat_range + lon_range*lon_range;
373
374     //
375     // Test whether the target is within radar range.
376     //
377     in_range = (range_ft2 && (range_ft2 <= radar_range_ft2));
378
379     if ( in_range || force_on ) {
380         props->setBoolValue("radar/in-range", true);
381
382         // copy values from the AIManager
383         double user_altitude  = manager->get_user_altitude();
384         double user_heading   = manager->get_user_heading();
385         double user_pitch     = manager->get_user_pitch();
386         //double user_yaw       = manager->get_user_yaw();
387         //double user_speed     = manager->get_user_speed();
388
389         // calculate range to target in feet and nautical miles
390         double range_ft = sqrt( range_ft2 );
391         range = range_ft / 6076.11549;
392
393         // calculate bearing to target
394         if (pos.getLatitudeDeg() >= user_latitude) {
395             bearing = atan2(lat_range, lon_range) * SG_RADIANS_TO_DEGREES;
396             if (pos.getLongitudeDeg() >= user_longitude) {
397                 bearing = 90.0 - bearing;
398             } else {
399                 bearing = 270.0 + bearing;
400             }
401         } else {
402             bearing = atan2(lon_range, lat_range) * SG_RADIANS_TO_DEGREES;
403             if (pos.getLongitudeDeg() >= user_longitude) {
404                 bearing = 180.0 - bearing;
405             } else {
406                 bearing = 180.0 + bearing;
407             }
408         }
409
410         // This is an alternate way to compute bearing and distance which
411         // agrees with the original scheme within about 0.1 degrees.
412         //
413         // Point3D start( user_longitude * SGD_DEGREES_TO_RADIANS,
414         //                user_latitude * SGD_DEGREES_TO_RADIANS, 0 );
415         // Point3D dest( pos.getLongitudeRad(), pos.getLatitudeRad(), 0 );
416         // double gc_bearing, gc_range;
417         // calc_gc_course_dist( start, dest, &gc_bearing, &gc_range );
418         // gc_range *= SG_METER_TO_NM;
419         // gc_bearing *= SGD_RADIANS_TO_DEGREES;
420         // printf("orig b = %.3f %.2f  gc b= %.3f, %.2f\n",
421         //        bearing, range, gc_bearing, gc_range);
422
423         // calculate look left/right to target, without yaw correction
424         horiz_offset = bearing - user_heading;
425         if (horiz_offset > 180.0) horiz_offset -= 360.0;
426         if (horiz_offset < -180.0) horiz_offset += 360.0;
427
428         // calculate elevation to target
429         elevation = atan2( altitude_ft - user_altitude, range_ft ) * SG_RADIANS_TO_DEGREES;
430
431         // calculate look up/down to target
432         vert_offset = elevation - user_pitch;
433
434         /* this calculation needs to be fixed, but it isn't important anyway
435         // calculate range rate
436         double recip_bearing = bearing + 180.0;
437         if (recip_bearing > 360.0) recip_bearing -= 360.0;
438         double my_horiz_offset = recip_bearing - hdg;
439         if (my_horiz_offset > 180.0) my_horiz_offset -= 360.0;
440         if (my_horiz_offset < -180.0) my_horiz_offset += 360.0;
441         rdot = (-user_speed * cos( horiz_offset * SG_DEGREES_TO_RADIANS ))
442         +(-speed * 1.686 * cos( my_horiz_offset * SG_DEGREES_TO_RADIANS ));
443         */
444
445         // now correct look left/right for yaw
446         // horiz_offset += user_yaw; // FIXME: WHY WOULD WE WANT TO ADD IN SIDE-SLIP HERE?
447
448         // calculate values for radar display
449         y_shift = range * cos( horiz_offset * SG_DEGREES_TO_RADIANS);
450         x_shift = range * sin( horiz_offset * SG_DEGREES_TO_RADIANS);
451         rotation = hdg - user_heading;
452         if (rotation < 0.0) rotation += 360.0;
453         ht_diff = altitude_ft - user_altitude;
454
455     }
456
457     return range_ft2;
458 }
459
460 /*
461 * Getters and Setters
462 */
463
464 SGVec3d FGAIBase::getCartPosAt(const SGVec3d& _off) const {
465     // Transform that one to the horizontal local coordinate system.
466     SGQuatd hlTrans = SGQuatd::fromLonLat(pos);
467
468     // and postrotate the orientation of the AIModel wrt the horizontal
469     // local frame
470     hlTrans *= SGQuatd::fromYawPitchRollDeg(hdg, pitch, roll);
471
472     // The offset converted to the usual body fixed coordinate system
473     // rotated to the earth fiexed coordinates axis
474     SGVec3d off = hlTrans.backTransform(_off);
475
476     // Add the position offset of the AIModel to gain the earth centered position
477     SGVec3d cartPos = SGVec3d::fromGeod(pos);
478
479     return cartPos + off;
480 }
481
482 SGVec3d FGAIBase::getCartPos() const {
483     SGVec3d cartPos = SGVec3d::fromGeod(pos);
484     return cartPos;
485 }
486
487 bool FGAIBase::getGroundElevationM(const SGGeod& pos, double& elev,
488                                    const SGMaterial** material) const {
489     return globals->get_scenery()->get_elevation_m(pos, elev, material,
490                                                    model.get());
491 }
492
493 double FGAIBase::_getCartPosX() const {
494     SGVec3d cartPos = getCartPos();
495     return cartPos.x();
496 }
497
498 double FGAIBase::_getCartPosY() const {
499     SGVec3d cartPos = getCartPos();
500     return cartPos.y();
501 }
502
503 double FGAIBase::_getCartPosZ() const {
504     SGVec3d cartPos = getCartPos();
505     return cartPos.z();
506 }
507
508 void FGAIBase::_setLongitude( double longitude ) {
509     pos.setLongitudeDeg(longitude);
510 }
511
512 void FGAIBase::_setLatitude ( double latitude )  {
513     pos.setLatitudeDeg(latitude);
514 }
515
516 void FGAIBase::_setUserPos(){
517     userpos.setLatitudeDeg(manager->get_user_latitude());
518     userpos.setLongitudeDeg(manager->get_user_longitude());
519     userpos.setElevationM(manager->get_user_altitude() * SG_FEET_TO_METER);
520 }
521
522 void FGAIBase::_setSubID( int s ) {
523     _subID = s;
524 }
525
526 double FGAIBase::_getLongitude() const {
527     return pos.getLongitudeDeg();
528 }
529
530 double FGAIBase::_getLatitude() const {
531     return pos.getLatitudeDeg();
532 }
533
534 double FGAIBase::_getElevationFt () const {
535     return pos.getElevationFt();
536 }
537
538 double FGAIBase::_getRdot() const {
539     return rdot;
540 }
541
542 double FGAIBase::_getVS_fps() const {
543     return vs*60.0;
544 }
545
546 double FGAIBase::_get_speed_east_fps() const {
547     return speed_east_deg_sec * ft_per_deg_lon;
548 }
549
550 double FGAIBase::_get_speed_north_fps() const {
551     return speed_north_deg_sec * ft_per_deg_lat;
552 }
553
554 void FGAIBase::_setVS_fps( double _vs ) {
555     vs = _vs/60.0;
556 }
557
558 double FGAIBase::_getAltitude() const {
559     return altitude_ft;
560 }
561
562 bool FGAIBase::_getServiceable() const {
563     return serviceable;
564 }
565
566 SGPropertyNode* FGAIBase::_getProps() const {
567     return props;
568 }
569
570 void FGAIBase::_setAltitude( double _alt ) {
571     setAltitude( _alt );
572 }
573
574 bool FGAIBase::_isNight() {
575     return (fgGetFloat("/sim/time/sun-angle-rad") > 1.57);
576 }
577
578 bool FGAIBase::_getCollisionData() {
579     return _collision_reported;
580 }
581
582 bool FGAIBase::_getImpactData() {
583     return _impact_reported;
584 }
585
586 double FGAIBase::_getImpactLat() const {
587     return _impact_lat;
588 }
589
590 double FGAIBase::_getImpactLon() const {
591     return _impact_lon;
592 }
593
594 double FGAIBase::_getImpactElevFt() const {
595     return _impact_elev * SG_METER_TO_FEET;
596 }
597
598 double FGAIBase::_getImpactPitch() const {
599     return _impact_pitch;
600 }
601
602 double FGAIBase::_getImpactRoll() const {
603     return _impact_roll;
604 }
605
606 double FGAIBase::_getImpactHdg() const {
607     return _impact_hdg;
608 }
609
610 double FGAIBase::_getImpactSpeed() const {
611     return _impact_speed;
612 }
613
614 int FGAIBase::getID() const {
615     return  _refID;
616 }
617
618 int FGAIBase::_getSubID() const {
619     return  _subID;
620 }
621
622 double FGAIBase::_getSpeed() const {
623     return speed;
624 }
625
626 double FGAIBase::_getRoll() const {
627     return roll;
628 }
629
630 double FGAIBase::_getPitch() const {
631     return pitch;
632 }
633
634 double FGAIBase::_getHeading() const {
635     return hdg;
636 }
637
638 double  FGAIBase::_getXOffset() const {
639     return _x_offset;
640 }
641
642 double  FGAIBase::_getYOffset() const {
643     return _y_offset;
644 }
645
646 double  FGAIBase::_getZOffset() const {
647     return _z_offset;
648 }
649
650 const char* FGAIBase::_getPath() const {
651     return model_path.c_str();
652 }
653
654 const char* FGAIBase::_getSMPath() const {
655     return _path.c_str();
656 }
657
658 const char* FGAIBase::_getName() const {
659     return _name.c_str();
660 }
661
662 const char* FGAIBase::_getCallsign() const {
663     return _callsign.c_str();
664 }
665
666 const char* FGAIBase::_getSubmodel() const {
667     return _submodel.c_str();
668 }
669
670 void FGAIBase::CalculateMach() {
671     // Calculate rho at altitude, using standard atmosphere
672     // For the temperature T and the pressure p,
673     double altitude = altitude_ft;
674
675     if (altitude < 36152) {             // curve fits for the troposphere
676         T = 59 - 0.00356 * altitude;
677         p = 2116 * pow( ((T + 459.7) / 518.6) , 5.256);
678     } else if ( 36152 < altitude && altitude < 82345 ) {    // lower stratosphere
679         T = -70;
680         p = 473.1 * pow( e , 1.73 - (0.000048 * altitude) );
681     } else {                                    //  upper stratosphere
682         T = -205.05 + (0.00164 * altitude);
683         p = 51.97 * pow( ((T + 459.7) / 389.98) , -11.388);
684     }
685
686     rho = p / (1718 * (T + 459.7));
687
688     // calculate the speed of sound at altitude
689     // a = sqrt ( g * R * (T + 459.7))
690     // where:
691     // a = speed of sound [ft/s]
692     // g = specific heat ratio, which is usually equal to 1.4
693     // R = specific gas constant, which equals 1716 ft-lb/slug/R
694     a = sqrt ( 1.4 * 1716 * (T + 459.7));
695
696     // calculate Mach number
697     Mach = speed/a;
698
699     // cout  << "Speed(ft/s) "<< speed <<" Altitude(ft) "<< altitude << " Mach " << Mach << endl;
700 }
701
702 int FGAIBase::_newAIModelID() {
703     static int id = 0;
704
705     if (!++id)
706         id++;   // id = 0 is not allowed.
707
708     return id;
709 }
710