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