]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIBase.cxx
bind the sky disable cutoff distance to a property
[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 <string.h>
28
29 #include <simgear/compiler.h>
30
31 #include <string>
32
33 #include <osg/ref_ptr>
34 #include <osg/Node>
35 #include <osgDB/FileUtils>
36
37 #include <simgear/math/SGMath.hxx>
38 #include <simgear/misc/sg_path.hxx>
39 #include <simgear/scene/model/modellib.hxx>
40 #include <simgear/scene/util/SGNodeMasks.hxx>
41 #include <simgear/sound/soundmgr_openal.hxx>
42 #include <simgear/debug/logstream.hxx>
43 #include <simgear/props/props.hxx>
44
45 #include <Main/globals.hxx>
46 #include <Scenery/scenery.hxx>
47 #include <Scripting/NasalSys.hxx>
48 #include <Sound/fg_fx.hxx>
49
50 #include "AIBase.hxx"
51 #include "AIManager.hxx"
52
53 const char *default_model = "Models/Geometry/glider.ac";
54 const double FGAIBase::e = 2.71828183;
55 const double FGAIBase::lbs_to_slugs = 0.031080950172;   //conversion factor
56
57 using namespace simgear;
58
59 FGAIBase::FGAIBase(object_type ot, bool enableHot) :
60     _max_speed(300),
61     _name(""),
62     _parent(""),
63     props( NULL ),
64     model_removed( fgGetNode("/ai/models/model-removed", true) ),
65     manager( NULL ),
66     _installed(false),
67     fp( NULL ),
68     _impact_lat(0),
69     _impact_lon(0),
70     _impact_elev(0),
71     _impact_hdg(0),
72     _impact_pitch(0),
73     _impact_roll(0),
74     _impact_speed(0),
75     _refID( _newAIModelID() ),
76     _otype(ot),
77     _initialized(false),
78     _modeldata(0),
79     _fx(0)
80
81 {
82     tgt_heading = hdg = tgt_altitude_ft = tgt_speed = 0.0;
83     tgt_roll = roll = tgt_pitch = tgt_yaw = tgt_vs = vs = pitch = 0.0;
84     bearing = elevation = range = rdot = 0.0;
85     x_shift = y_shift = rotation = 0.0;
86     in_range = false;
87     invisible = false;
88     no_roll = true;
89     life = 900;
90     delete_me = false;
91     _impact_reported = false;
92     _collision_reported = false;
93     _expiry_reported = false;
94
95     _subID = 0;
96
97     _x_offset = 0;
98     _y_offset = 0;
99     _z_offset = 0;
100
101     _pitch_offset = 0;
102     _roll_offset = 0;
103     _yaw_offset = 0;
104
105     userpos = SGGeod::fromDeg(0, 0);
106
107     pos = SGGeod::fromDeg(0, 0);
108     speed = 0;
109     altitude_ft = 0;
110     speed_north_deg_sec = 0;
111     speed_east_deg_sec = 0;
112     turn_radius_ft = 0;
113
114     ft_per_deg_lon = 0;
115     ft_per_deg_lat = 0;
116
117     horiz_offset = 0;
118     vert_offset = 0;
119     ht_diff = 0;
120
121     serviceable = false;
122
123     fp = 0;
124
125     rho = 1;
126     T = 280;
127     p = 1e5;
128     a = 340;
129     Mach = 0;
130
131     // explicitly disable HOT for (most) AI models
132     if (!enableHot)
133         aip.getSceneGraph()->setNodeMask(~SG_NODEMASK_TERRAIN_BIT);
134 }
135
136 FGAIBase::~FGAIBase() {
137     // Unregister that one at the scenery manager
138     removeModel();
139
140     if (props) {
141         SGPropertyNode* parent = props->getParent();
142
143         if (parent)
144             model_removed->setStringValue(props->getPath());
145     }
146
147     if (_fx && _refID != 0 && _refID !=  1) {
148         SGSoundMgr *smgr = globals->get_soundmgr();
149         stringstream name; 
150         name <<  "aifx:";
151         name << _refID;
152         smgr->remove(name.str());
153     }
154
155     if (fp)
156         delete fp;
157     fp = 0;
158 }
159
160 /** Cleanly remove the model
161  * and let the scenery database pager do the clean-up work.
162  */
163 void
164 FGAIBase::removeModel()
165 {
166     if (!_model.valid())
167         return;
168
169     FGScenery* pSceneryManager = globals->get_scenery();
170     if (pSceneryManager)
171     {
172         osg::ref_ptr<osg::Object> temp = _model.get();
173         pSceneryManager->get_scene_graph()->removeChild(aip.getSceneGraph());
174         // withdraw from SGModelPlacement and drop own reference (unref)
175         aip.init( 0 );
176         _model = 0;
177         // pass it on to the pager, to be be deleted in the pager thread
178         pSceneryManager->getPagerSingleton()->queueDeleteRequest(temp);
179     }
180     else
181     {
182         SG_LOG(SG_AI, SG_ALERT, "AIBase: Could not unload model. Missing scenery manager!");
183     }
184 }
185
186 void FGAIBase::readFromScenario(SGPropertyNode* scFileNode)
187 {
188     if (!scFileNode)
189         return;
190
191     setPath(scFileNode->getStringValue("model",
192             fgGetString("/sim/multiplay/default-model", default_model)));
193
194     setHeading(scFileNode->getDoubleValue("heading", 0.0));
195     setSpeed(scFileNode->getDoubleValue("speed", 0.0));
196     setAltitude(scFileNode->getDoubleValue("altitude", 0.0));
197     setLongitude(scFileNode->getDoubleValue("longitude", 0.0));
198     setLatitude(scFileNode->getDoubleValue("latitude", 0.0));
199     setBank(scFileNode->getDoubleValue("roll", 0.0));
200
201     SGPropertyNode* submodels = scFileNode->getChild("submodels");
202
203     if (submodels) {
204         setServiceable(submodels->getBoolValue("serviceable", false));
205         setSMPath(submodels->getStringValue("path", ""));
206     }
207
208 }
209
210 void FGAIBase::update(double dt) {
211
212     if (_otype == otStatic)
213         return;
214
215     if (_otype == otBallistic)
216         CalculateMach();
217
218     ft_per_deg_lat = 366468.96 - 3717.12 * cos(pos.getLatitudeRad());
219     ft_per_deg_lon = 365228.16 * cos(pos.getLatitudeRad());
220
221     if ( _fx )
222     {
223         // update model's audio sample values
224         _fx->set_position_geod( pos );
225
226         SGQuatd orient = SGQuatd::fromYawPitchRollDeg(hdg, pitch, roll);
227         _fx->set_orientation( orient );
228
229         SGVec3d velocity;
230         velocity = SGVec3d( speed_north_deg_sec, speed_east_deg_sec,
231                             pitch*speed );
232         _fx->set_velocity( velocity );
233     }
234     else if ((_modeldata)&&(_modeldata->needInitilization()))
235     {
236         // process deferred nasal initialization,
237         // which must be done in main thread
238         _modeldata->init();
239
240         // sound initialization
241         if (fgGetBool("/sim/sound/aimodels/enabled",false))
242         {
243             string fxpath = _modeldata->get_sound_path();
244             if (fxpath != "")
245             {
246                 props->setStringValue("sim/sound/path", fxpath.c_str());
247
248                 // initialize the sound configuration
249                 SGSoundMgr *smgr = globals->get_soundmgr();
250                 stringstream name;
251                 name <<  "aifx:";
252                 name << _refID;
253                 _fx = new FGFX(smgr, name.str(), props);
254                 _fx->init();
255             }
256         }
257     }
258 }
259
260 /** update LOD properties of the model */
261 void FGAIBase::updateLOD()
262 {
263     double maxRangeDetail = fgGetDouble("/sim/rendering/static-lod/ai-detailed", 10000.0);
264     double maxRangeBare   = fgGetDouble("/sim/rendering/static-lod/ai-bare", 20000.0);
265     if (_model.valid())
266     {
267         if( maxRangeDetail == 0.0 )
268         {
269             // disable LOD
270             _model->setRange(0, 0.0,     FLT_MAX);
271             _model->setRange(1, FLT_MAX, FLT_MAX);
272         }
273         else
274         {
275             _model->setRange(0, 0.0, maxRangeDetail);
276             _model->setRange(1, maxRangeDetail,maxRangeBare);
277         }
278     }
279 }
280
281 void FGAIBase::Transform() {
282
283     if (!invisible) {
284         aip.setVisible(true);
285         aip.setPosition(pos);
286
287         if (no_roll)
288             aip.setOrientation(0.0, pitch, hdg);
289         else
290             aip.setOrientation(roll, pitch, hdg);
291
292         aip.update();
293     } else {
294         aip.setVisible(false);
295         aip.update();
296     }
297
298 }
299
300 bool FGAIBase::init(bool search_in_AI_path)
301 {
302     if (_model.valid())
303     {
304         SG_LOG(SG_AI, SG_ALERT, "AIBase: Cannot initialize a model multiple times! " << model_path);
305         return false;
306     }
307
308     string f;
309     if(search_in_AI_path)
310     {
311     // setup a modified Options structure, with only the $fg-root/AI defined;
312     // we'll check that first, then give the normal search logic a chance.
313     // this ensures that models in AI/ are preferred to normal models, where
314     // both exist.
315         osg::ref_ptr<osgDB::ReaderWriter::Options> 
316           opt(osg::clone(osgDB::Registry::instance()->getOptions(), osg::CopyOp::SHALLOW_COPY));
317
318         SGPath ai_path(globals->get_fg_root(), "AI");
319         opt->setDatabasePath(ai_path.str());
320         
321         f = osgDB::findDataFile(model_path, opt.get());
322     }
323
324     if (f.empty()) {
325       f = simgear::SGModelLib::findDataFile(model_path);
326     }
327     
328     if(f.empty())
329         f = fgGetString("/sim/multiplay/default-model", default_model);
330     else
331         _installed = true;
332
333     _modeldata = new FGAIModelData(props);
334     osg::Node * mdl = SGModelLib::loadDeferredModel(f, props, _modeldata);
335
336     _model = new osg::LOD;
337     _model->setName("AI-model range animation node");
338
339     _model->addChild( mdl, 0, FLT_MAX );
340     _model->setCenterMode(osg::LOD::USE_BOUNDING_SPHERE_CENTER);
341     _model->setRangeMode(osg::LOD::DISTANCE_FROM_EYE_POINT);
342 //    We really need low-resolution versions of AI/MP aircraft.
343 //    Or at least dummy "stubs" with some default silhouette.
344 //        _model->addChild( SGModelLib::loadPagedModel(fgGetString("/sim/multiplay/default-model", default_model),
345 //                                                    props, new FGNasalModelData(props)), FLT_MAX, FLT_MAX);
346     updateLOD();
347
348     initModel(mdl);
349     if (_model.valid() && _initialized == false) {
350         aip.init( _model.get() );
351         aip.setVisible(true);
352         invisible = false;
353         globals->get_scenery()->get_scene_graph()->addChild(aip.getSceneGraph());
354
355         // Get the sound-path tag from the configuration file and store it
356         // in the property tree.
357         _initialized = true;
358
359     } else if (!model_path.empty()) {
360         SG_LOG(SG_AI, SG_WARN, "AIBase: Could not load model " << model_path);
361         // not properly installed...
362         _installed = false;
363     }
364
365     setDie(false);
366     return true;
367 }
368
369 void FGAIBase::initModel(osg::Node *node)
370 {
371     if (_model.valid()) { 
372
373         if( _path != ""){
374             props->setStringValue("submodels/path", _path.c_str());
375             SG_LOG(SG_AI, SG_DEBUG, "AIBase: submodels/path " << _path);
376         }
377
378         if( _parent!= ""){
379             props->setStringValue("parent-name", _parent.c_str());
380         }
381
382         fgSetString("/ai/models/model-added", props->getPath().c_str());
383     } else if (!model_path.empty()) {
384         SG_LOG(SG_AI, SG_WARN, "AIBase: Could not load model " << model_path);
385     }
386
387     setDie(false);
388 }
389
390
391 bool FGAIBase::isa( object_type otype ) {
392     return otype == _otype;
393 }
394
395
396 void FGAIBase::bind() {
397     _tiedProperties.setRoot(props);
398     tie("id", SGRawValueMethods<FGAIBase,int>(*this,
399         &FGAIBase::getID));
400     tie("velocities/true-airspeed-kt",  SGRawValuePointer<double>(&speed));
401     tie("velocities/vertical-speed-fps",
402         SGRawValueMethods<FGAIBase,double>(*this,
403         &FGAIBase::_getVS_fps,
404         &FGAIBase::_setVS_fps));
405
406     tie("position/altitude-ft",
407         SGRawValueMethods<FGAIBase,double>(*this,
408         &FGAIBase::_getAltitude,
409         &FGAIBase::_setAltitude));
410     tie("position/latitude-deg",
411         SGRawValueMethods<FGAIBase,double>(*this,
412         &FGAIBase::_getLatitude,
413         &FGAIBase::_setLatitude));
414     tie("position/longitude-deg",
415         SGRawValueMethods<FGAIBase,double>(*this,
416         &FGAIBase::_getLongitude,
417         &FGAIBase::_setLongitude));
418
419     tie("position/global-x",
420         SGRawValueMethods<FGAIBase,double>(*this,
421         &FGAIBase::_getCartPosX,
422         0));
423     tie("position/global-y",
424         SGRawValueMethods<FGAIBase,double>(*this,
425         &FGAIBase::_getCartPosY,
426         0));
427     tie("position/global-z",
428         SGRawValueMethods<FGAIBase,double>(*this,
429         &FGAIBase::_getCartPosZ,
430         0));
431     tie("callsign",
432         SGRawValueMethods<FGAIBase,const char*>(*this,
433         &FGAIBase::_getCallsign,
434         0));
435
436     tie("orientation/pitch-deg",   SGRawValuePointer<double>(&pitch));
437     tie("orientation/roll-deg",    SGRawValuePointer<double>(&roll));
438     tie("orientation/true-heading-deg", SGRawValuePointer<double>(&hdg));
439
440     tie("radar/in-range", SGRawValuePointer<bool>(&in_range));
441     tie("radar/bearing-deg",   SGRawValuePointer<double>(&bearing));
442     tie("radar/elevation-deg", SGRawValuePointer<double>(&elevation));
443     tie("radar/range-nm", SGRawValuePointer<double>(&range));
444     tie("radar/h-offset", SGRawValuePointer<double>(&horiz_offset));
445     tie("radar/v-offset", SGRawValuePointer<double>(&vert_offset));
446     tie("radar/x-shift", SGRawValuePointer<double>(&x_shift));
447     tie("radar/y-shift", SGRawValuePointer<double>(&y_shift));
448     tie("radar/rotation", SGRawValuePointer<double>(&rotation));
449     tie("radar/ht-diff-ft", SGRawValuePointer<double>(&ht_diff));
450     tie("subID", SGRawValuePointer<int>(&_subID));
451     tie("controls/lighting/nav-lights", SGRawValueFunctions<bool>(_isNight));
452
453     props->setBoolValue("controls/lighting/beacon", true);
454     props->setBoolValue("controls/lighting/strobe", true);
455     props->setBoolValue("controls/glide-path", true);
456
457     props->setStringValue("controls/flight/lateral-mode", "roll");
458     props->setDoubleValue("controls/flight/target-hdg", hdg);
459     props->setDoubleValue("controls/flight/target-roll", roll);
460
461     props->setStringValue("controls/flight/longitude-mode", "alt");
462     props->setDoubleValue("controls/flight/target-alt", altitude_ft);
463     props->setDoubleValue("controls/flight/target-pitch", pitch);
464
465     props->setDoubleValue("controls/flight/target-spd", speed);
466
467     props->setBoolValue("sim/sound/avionics/enabled", false);
468     props->setDoubleValue("sim/sound/avionics/volume", 0.0);
469     props->setBoolValue("sim/sound/avionics/external-view", false);
470     props->setBoolValue("sim/current-view/internal", false);
471 }
472
473 void FGAIBase::unbind() {
474     _tiedProperties.Untie();
475
476     props->setBoolValue("/sim/controls/radar", true);
477
478     // drop reference to sound effects now
479     _fx = 0;
480 }
481
482 double FGAIBase::UpdateRadar(FGAIManager* manager) {
483     bool control = fgGetBool("/sim/controls/radar", true);
484
485     if(!control) return 0;
486
487     double radar_range_ft2 = fgGetDouble("/instrumentation/radar/range");
488     bool force_on = fgGetBool("/instrumentation/radar/debug-mode", false);
489     radar_range_ft2 *= SG_NM_TO_METER * SG_METER_TO_FEET * 1.1; // + 10%
490     radar_range_ft2 *= radar_range_ft2;
491
492     double user_latitude  = manager->get_user_latitude();
493     double user_longitude = manager->get_user_longitude();
494     double lat_range = fabs(pos.getLatitudeDeg() - user_latitude) * ft_per_deg_lat;
495     double lon_range = fabs(pos.getLongitudeDeg() - user_longitude) * ft_per_deg_lon;
496     double range_ft2 = lat_range*lat_range + lon_range*lon_range;
497
498     //
499     // Test whether the target is within radar range.
500     //
501     in_range = (range_ft2 && (range_ft2 <= radar_range_ft2));
502
503     if ( in_range || force_on ) {
504         props->setBoolValue("radar/in-range", true);
505
506         // copy values from the AIManager
507         double user_altitude  = manager->get_user_altitude();
508         double user_heading   = manager->get_user_heading();
509         double user_pitch     = manager->get_user_pitch();
510         //double user_yaw       = manager->get_user_yaw();
511         //double user_speed     = manager->get_user_speed();
512
513         // calculate range to target in feet and nautical miles
514         double range_ft = sqrt( range_ft2 );
515         range = range_ft / 6076.11549;
516
517         // calculate bearing to target
518         if (pos.getLatitudeDeg() >= user_latitude) {
519             bearing = atan2(lat_range, lon_range) * SG_RADIANS_TO_DEGREES;
520             if (pos.getLongitudeDeg() >= user_longitude) {
521                 bearing = 90.0 - bearing;
522             } else {
523                 bearing = 270.0 + bearing;
524             }
525         } else {
526             bearing = atan2(lon_range, lat_range) * SG_RADIANS_TO_DEGREES;
527             if (pos.getLongitudeDeg() >= user_longitude) {
528                 bearing = 180.0 - bearing;
529             } else {
530                 bearing = 180.0 + bearing;
531             }
532         }
533
534         // This is an alternate way to compute bearing and distance which
535         // agrees with the original scheme within about 0.1 degrees.
536         //
537         // Point3D start( user_longitude * SGD_DEGREES_TO_RADIANS,
538         //                user_latitude * SGD_DEGREES_TO_RADIANS, 0 );
539         // Point3D dest( pos.getLongitudeRad(), pos.getLatitudeRad(), 0 );
540         // double gc_bearing, gc_range;
541         // calc_gc_course_dist( start, dest, &gc_bearing, &gc_range );
542         // gc_range *= SG_METER_TO_NM;
543         // gc_bearing *= SGD_RADIANS_TO_DEGREES;
544         // printf("orig b = %.3f %.2f  gc b= %.3f, %.2f\n",
545         //        bearing, range, gc_bearing, gc_range);
546
547         // calculate look left/right to target, without yaw correction
548         horiz_offset = bearing - user_heading;
549         if (horiz_offset > 180.0) horiz_offset -= 360.0;
550         if (horiz_offset < -180.0) horiz_offset += 360.0;
551
552         // calculate elevation to target
553         elevation = atan2( altitude_ft - user_altitude, range_ft ) * SG_RADIANS_TO_DEGREES;
554
555         // calculate look up/down to target
556         vert_offset = elevation - user_pitch;
557
558         /* this calculation needs to be fixed, but it isn't important anyway
559         // calculate range rate
560         double recip_bearing = bearing + 180.0;
561         if (recip_bearing > 360.0) recip_bearing -= 360.0;
562         double my_horiz_offset = recip_bearing - hdg;
563         if (my_horiz_offset > 180.0) my_horiz_offset -= 360.0;
564         if (my_horiz_offset < -180.0) my_horiz_offset += 360.0;
565         rdot = (-user_speed * cos( horiz_offset * SG_DEGREES_TO_RADIANS ))
566         +(-speed * 1.686 * cos( my_horiz_offset * SG_DEGREES_TO_RADIANS ));
567         */
568
569         // now correct look left/right for yaw
570         // horiz_offset += user_yaw; // FIXME: WHY WOULD WE WANT TO ADD IN SIDE-SLIP HERE?
571
572         // calculate values for radar display
573         y_shift = range * cos( horiz_offset * SG_DEGREES_TO_RADIANS);
574         x_shift = range * sin( horiz_offset * SG_DEGREES_TO_RADIANS);
575         rotation = hdg - user_heading;
576         if (rotation < 0.0) rotation += 360.0;
577         ht_diff = altitude_ft - user_altitude;
578
579     }
580
581     return range_ft2;
582 }
583
584 /*
585 * Getters and Setters
586 */
587
588 SGVec3d FGAIBase::getCartPosAt(const SGVec3d& _off) const {
589     // Transform that one to the horizontal local coordinate system.
590     SGQuatd hlTrans = SGQuatd::fromLonLat(pos);
591
592     // and postrotate the orientation of the AIModel wrt the horizontal
593     // local frame
594     hlTrans *= SGQuatd::fromYawPitchRollDeg(hdg, pitch, roll);
595
596     // The offset converted to the usual body fixed coordinate system
597     // rotated to the earth fixed coordinates axis
598     SGVec3d off = hlTrans.backTransform(_off);
599
600     // Add the position offset of the AIModel to gain the earth centered position
601     SGVec3d cartPos = SGVec3d::fromGeod(pos);
602
603     return cartPos + off;
604 }
605
606 SGVec3d FGAIBase::getCartPos() const {
607     SGVec3d cartPos = SGVec3d::fromGeod(pos);
608     return cartPos;
609 }
610
611 bool FGAIBase::getGroundElevationM(const SGGeod& pos, double& elev,
612                                    const SGMaterial** material) const {
613     return globals->get_scenery()->get_elevation_m(pos, elev, material,
614                                                    _model.get());
615 }
616
617 double FGAIBase::_getCartPosX() const {
618     SGVec3d cartPos = getCartPos();
619     return cartPos.x();
620 }
621
622 double FGAIBase::_getCartPosY() const {
623     SGVec3d cartPos = getCartPos();
624     return cartPos.y();
625 }
626
627 double FGAIBase::_getCartPosZ() const {
628     SGVec3d cartPos = getCartPos();
629     return cartPos.z();
630 }
631
632 void FGAIBase::_setLongitude( double longitude ) {
633     pos.setLongitudeDeg(longitude);
634 }
635
636 void FGAIBase::_setLatitude ( double latitude )  {
637     pos.setLatitudeDeg(latitude);
638 }
639
640 void FGAIBase::_setUserPos(){
641     userpos.setLatitudeDeg(manager->get_user_latitude());
642     userpos.setLongitudeDeg(manager->get_user_longitude());
643     userpos.setElevationM(manager->get_user_altitude() * SG_FEET_TO_METER);
644 }
645
646 void FGAIBase::_setSubID( int s ) {
647     _subID = s;
648 }
649
650 bool FGAIBase::setParentNode() {
651
652     if (_parent == ""){
653        SG_LOG(SG_AI, SG_ALERT, "AIBase: " << _name
654             << " parent not set ");
655        return false;
656     }
657
658     const SGPropertyNode_ptr ai = fgGetNode("/ai/models", true);
659
660     for (int i = ai->nChildren() - 1; i >= -1; i--) {
661         SGPropertyNode_ptr model;
662
663         if (i < 0) { // last iteration: selected model
664             model = _selected_ac;
665         } else {
666             model = ai->getChild(i);
667             string path = ai->getPath();
668             const string name = model->getStringValue("name");
669
670             if (!model->nChildren()){
671                 continue;
672             }
673             if (name == _parent) {
674                 _selected_ac = model;  // save selected model for last iteration
675                 break;
676             }
677
678         }
679         if (!model)
680             continue;
681
682     }// end for loop
683
684     if (_selected_ac != 0){
685         const string name = _selected_ac->getStringValue("name");
686         return true;
687     } else {
688         SG_LOG(SG_AI, SG_ALERT, "AIBase: " << _name
689             << " parent not found: dying ");
690         setDie(true);
691         return false;
692     }
693
694 }
695
696 double FGAIBase::_getLongitude() const {
697     return pos.getLongitudeDeg();
698 }
699
700 double FGAIBase::_getLatitude() const {
701     return pos.getLatitudeDeg();
702 }
703
704 double FGAIBase::_getElevationFt() const {
705     return pos.getElevationFt();
706 }
707
708 double FGAIBase::_getRdot() const {
709     return rdot;
710 }
711
712 double FGAIBase::_getVS_fps() const {
713     return vs/60.0;
714 }
715
716 double FGAIBase::_get_speed_east_fps() const {
717     return speed_east_deg_sec * ft_per_deg_lon;
718 }
719
720 double FGAIBase::_get_speed_north_fps() const {
721     return speed_north_deg_sec * ft_per_deg_lat;
722 }
723
724 void FGAIBase::_setVS_fps( double _vs ) {
725     vs = _vs*60.0;
726 }
727
728 double FGAIBase::_getAltitude() const {
729     return altitude_ft;
730 }
731
732 double FGAIBase::_getAltitudeAGL(SGGeod inpos, double start){
733     getGroundElevationM(SGGeod::fromGeodM(inpos, start),
734         _elevation_m, &_material);
735     return inpos.getElevationFt() - _elevation_m * SG_METER_TO_FEET;
736 }
737
738 bool FGAIBase::_getServiceable() const {
739     return serviceable;
740 }
741
742 SGPropertyNode* FGAIBase::_getProps() const {
743     return props;
744 }
745
746 void FGAIBase::_setAltitude( double _alt ) {
747     setAltitude( _alt );
748 }
749
750 bool FGAIBase::_isNight() {
751     return (fgGetFloat("/sim/time/sun-angle-rad") > 1.57);
752 }
753
754 bool FGAIBase::_getCollisionData() {
755     return _collision_reported;
756 }
757
758 bool FGAIBase::_getExpiryData() {
759     return _expiry_reported;
760 }
761
762 bool FGAIBase::_getImpactData() {
763     return _impact_reported;
764 }
765
766 double FGAIBase::_getImpactLat() const {
767     return _impact_lat;
768 }
769
770 double FGAIBase::_getImpactLon() const {
771     return _impact_lon;
772 }
773
774 double FGAIBase::_getImpactElevFt() const {
775     return _impact_elev * SG_METER_TO_FEET;
776 }
777
778 double FGAIBase::_getImpactPitch() const {
779     return _impact_pitch;
780 }
781
782 double FGAIBase::_getImpactRoll() const {
783     return _impact_roll;
784 }
785
786 double FGAIBase::_getImpactHdg() const {
787     return _impact_hdg;
788 }
789
790 double FGAIBase::_getImpactSpeed() const {
791     return _impact_speed;
792 }
793
794 int FGAIBase::getID() const {
795     return  _refID;
796 }
797
798 int FGAIBase::_getSubID() const {
799     return  _subID;
800 }
801
802 double FGAIBase::_getSpeed() const {
803     return speed;
804 }
805
806 double FGAIBase::_getRoll() const {
807     return roll;
808 }
809
810 double FGAIBase::_getPitch() const {
811     return pitch;
812 }
813
814 double FGAIBase::_getHeading() const {
815     return hdg;
816 }
817
818 double  FGAIBase::_getXOffset() const {
819     return _x_offset;
820 }
821
822 double  FGAIBase::_getYOffset() const {
823     return _y_offset;
824 }
825
826 double  FGAIBase::_getZOffset() const {
827     return _z_offset;
828 }
829
830 const char* FGAIBase::_getPath() const {
831     return model_path.c_str();
832 }
833
834 const char* FGAIBase::_getSMPath() const {
835     return _path.c_str();
836 }
837
838 const char* FGAIBase::_getName() const {
839     return _name.c_str();
840 }
841
842 const char* FGAIBase::_getCallsign() const {
843     return _callsign.c_str();
844 }
845
846 const char* FGAIBase::_getSubmodel() const {
847     return _submodel.c_str();
848 }
849
850 void FGAIBase::CalculateMach() {
851     // Calculate rho at altitude, using standard atmosphere
852     // For the temperature T and the pressure p,
853     double altitude = altitude_ft;
854
855     if (altitude < 36152) {             // curve fits for the troposphere
856         T = 59 - 0.00356 * altitude;
857         p = 2116 * pow( ((T + 459.7) / 518.6) , 5.256);
858     } else if ( 36152 < altitude && altitude < 82345 ) {    // lower stratosphere
859         T = -70;
860         p = 473.1 * pow( e , 1.73 - (0.000048 * altitude) );
861     } else {                                    //  upper stratosphere
862         T = -205.05 + (0.00164 * altitude);
863         p = 51.97 * pow( ((T + 459.7) / 389.98) , -11.388);
864     }
865
866     rho = p / (1718 * (T + 459.7));
867
868     // calculate the speed of sound at altitude
869     // a = sqrt ( g * R * (T + 459.7))
870     // where:
871     // a = speed of sound [ft/s]
872     // g = specific heat ratio, which is usually equal to 1.4
873     // R = specific gas constant, which equals 1716 ft-lb/slug/R
874     a = sqrt ( 1.4 * 1716 * (T + 459.7));
875
876     // calculate Mach number
877     Mach = speed/a;
878
879     // cout  << "Speed(ft/s) "<< speed <<" Altitude(ft) "<< altitude << " Mach " << Mach << endl;
880 }
881
882 int FGAIBase::_newAIModelID() {
883     static int id = 0;
884
885     if (!++id)
886         id++;   // id = 0 is not allowed.
887
888     return id;
889 }
890
891
892 FGAIModelData::FGAIModelData(SGPropertyNode *root)
893   : _nasal( new FGNasalModelDataProxy(root) ),
894     _ready(false),
895     _initialized(false)
896 {
897 }
898
899 FGAIModelData::~FGAIModelData()
900 {
901     delete _nasal;
902     _nasal = NULL;
903 }
904
905 void FGAIModelData::modelLoaded(const string& path, SGPropertyNode *prop, osg::Node *n)
906 {
907     // WARNING: Called in a separate OSG thread! Only use thread-safe stuff here...
908     if (_ready)
909         return;
910
911     _fxpath = prop->getStringValue("sound/path");
912     _nasal->modelLoaded(path, prop, n);
913
914     _ready = true;
915 }