X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAIBase.cxx;h=de107a682bfc8ae356784e42c119304aa80098b3;hb=388a0a5b6af2b91f2ed36488177813d693ed374e;hp=28944390218b3edc59e51ae9b4447671bba3bdd5;hpb=b452234cb203c3336cfc5299be8ff4789a0eb416;p=flightgear.git diff --git a/src/AIModel/AIBase.cxx b/src/AIModel/AIBase.cxx index 289443902..de107a682 100644 --- a/src/AIModel/AIBase.cxx +++ b/src/AIModel/AIBase.cxx @@ -24,20 +24,17 @@ # include #endif - #include -#include STL_STRING +#include #include #include +#include -#include -#include -#include +#include #include -#include -#include +#include #include #include #include @@ -49,9 +46,11 @@ #include "AIBase.hxx" #include "AIManager.hxx" +const char *default_model = "Models/Geometry/glider.ac"; const double FGAIBase::e = 2.71828183; const double FGAIBase::lbs_to_slugs = 0.031080950172; //conversion factor +using namespace simgear; FGAIBase::FGAIBase(object_type ot) : props( NULL ), @@ -68,7 +67,8 @@ FGAIBase::FGAIBase(object_type ot) : _impact_speed(0), _refID( _newAIModelID() ), - _otype(ot) + _otype(ot), + _initialized(false) { tgt_heading = hdg = tgt_altitude_ft = tgt_speed = 0.0; tgt_roll = roll = tgt_pitch = tgt_yaw = tgt_vs = vs = pitch = 0.0; @@ -82,6 +82,40 @@ FGAIBase::FGAIBase(object_type ot) : _impact_reported = false; _collision_reported = false; _subID = 0; + + _x_offset = 0; + _y_offset = 0; + _z_offset = 0; + + _pitch_offset = 0; + _roll_offset = 0; + _yaw_offset = 0; + + userpos = SGGeod::fromDeg(0, 0); + + pos = SGGeod::fromDeg(0, 0); + speed = 0; + altitude_ft = 0; + speed_north_deg_sec = 0; + speed_east_deg_sec = 0; + turn_radius_ft = 0; + + ft_per_deg_lon = 0; + ft_per_deg_lat = 0; + + horiz_offset = 0; + vert_offset = 0; + ht_diff = 0; + + serviceable = false; + + fp = 0; + + rho = 1; + T = 280; + p = 1e5; + a = 340; + Mach = 0; } FGAIBase::~FGAIBase() { @@ -105,7 +139,8 @@ void FGAIBase::readFromScenario(SGPropertyNode* scFileNode) if (!scFileNode) return; - setPath(scFileNode->getStringValue("model", "Models/Geometry/glider.ac")); + setPath(scFileNode->getStringValue("model", + fgGetString("/sim/multiplay/default-model", default_model))); setHeading(scFileNode->getDoubleValue("heading", 0.0)); setSpeed(scFileNode->getDoubleValue("speed", 0.0)); @@ -138,6 +173,7 @@ void FGAIBase::update(double dt) { void FGAIBase::Transform() { if (!invisible) { + aip.setVisible(true); aip.setPosition(pos); if (no_roll) @@ -146,63 +182,65 @@ void FGAIBase::Transform() { aip.setOrientation(roll, pitch, hdg); aip.update(); + } else { + aip.setVisible(false); + aip.update(); } } bool FGAIBase::init(bool search_in_AI_path) { + osg::ref_ptr opt= + new osgDB::ReaderWriter::Options(*osgDB::Registry::instance()->getOptions()); + + if(search_in_AI_path) + { + SGPath ai_path(globals->get_fg_root()); + ai_path.append("AI"); + opt->getDatabasePathList().push_front(ai_path.str()); + } - if (!model_path.empty()) { - - if ( search_in_AI_path - && (model_path.substr(model_path.size() - 4, 4) == ".xml")) { - SGPath ai_path("AI"); - ai_path.append(model_path); - try { - model = load3DModel( globals->get_fg_root(), ai_path.str(), props, - globals->get_sim_time_sec() ); - } catch (const sg_exception &e) { - model = NULL; - } - } else - model = NULL; - - if (!model.get()) { - try { - model = load3DModel( globals->get_fg_root(), model_path, props, - globals->get_sim_time_sec() ); - } catch (const sg_exception &e) { - model = NULL; - } - } + string f = osgDB::findDataFile(model_path, opt.get()); - } + if(f.empty()) + f = fgGetString("/sim/multiplay/default-model", default_model); - if (model.get()) { + model = load3DModel(f, props); + + if (model.valid() && _initialized == false) { aip.init( model.get() ); aip.setVisible(true); invisible = false; globals->get_scenery()->get_scene_graph()->addChild(aip.getSceneGraph()); - fgSetString("/ai/models/model-added", props->getPath()); + _initialized = true; } else if (!model_path.empty()) { SG_LOG(SG_INPUT, SG_WARN, "AIBase: Could not load model " << model_path); } - props->setStringValue("submodels/path", _path.c_str()); setDie(false); return true; } +void FGAIBase::initModel(osg::Node *node) +{ + if (model.valid()) { + + fgSetString("/ai/models/model-added", props->getPath().c_str()); + + } else if (!model_path.empty()) { + SG_LOG(SG_INPUT, SG_WARN, "AIBase: Could not load model " << model_path); + } + + props->setStringValue("submodels/path", _path.c_str()); + setDie(false); +} + -osg::Node* FGAIBase::load3DModel(const string& fg_root, - const string &path, - SGPropertyNode *prop_root, - double sim_time_sec) +osg::Node* FGAIBase::load3DModel(const string &path, SGPropertyNode *prop_root) { - model = sgLoad3DModel(fg_root, path, prop_root, sim_time_sec, 0, - new FGNasalModelData(prop_root)); - model->setNodeMask(model->getNodeMask() & ~SG_NODEMASK_TERRAIN_BIT); + model = SGModelLib::loadPagedModel(path, prop_root, new FGNasalModelData(prop_root)); + initModel(model.get()); return model.get(); } @@ -312,9 +350,16 @@ void FGAIBase::unbind() { props->untie("radar/ht-diff-ft"); props->untie("controls/lighting/nav-lights"); + + props->setBoolValue("/sim/controls/radar/", true); + } double FGAIBase::UpdateRadar(FGAIManager* manager) { + bool control = fgGetBool("/sim/controls/radar", true); + + if(!control) return 0; + double radar_range_ft2 = fgGetDouble("/instrumentation/radar/range"); bool force_on = fgGetBool("/instrumentation/radar/debug-mode", false); radar_range_ft2 *= SG_NM_TO_METER * SG_METER_TO_FEET * 1.1; // + 10% @@ -435,18 +480,16 @@ SGVec3d FGAIBase::getCartPosAt(const SGVec3d& _off) const { } SGVec3d FGAIBase::getCartPos() const { - // Transform that one to the horizontal local coordinate system. - SGQuatd hlTrans = SGQuatd::fromLonLat(pos); - - // and postrotate the orientation of the AIModel wrt the horizontal - // local frame - hlTrans *= SGQuatd::fromYawPitchRollDeg(hdg, pitch, roll); - SGVec3d cartPos = SGVec3d::fromGeod(pos); - return cartPos; } +bool FGAIBase::getGroundElevationM(const SGGeod& pos, double& elev, + const SGMaterial** material) const { + return globals->get_scenery()->get_elevation_m(pos, elev, material, + model.get()); +} + double FGAIBase::_getCartPosX() const { SGVec3d cartPos = getCartPos(); return cartPos.x(); @@ -470,6 +513,12 @@ void FGAIBase::_setLatitude ( double latitude ) { pos.setLatitudeDeg(latitude); } +void FGAIBase::_setUserPos(){ + userpos.setLatitudeDeg(manager->get_user_latitude()); + userpos.setLongitudeDeg(manager->get_user_longitude()); + userpos.setElevationM(manager->get_user_altitude() * SG_FEET_TO_METER); +} + void FGAIBase::_setSubID( int s ) { _subID = s; } @@ -586,6 +635,18 @@ double FGAIBase::_getHeading() const { return hdg; } +double FGAIBase::_getXOffset() const { + return _x_offset; +} + +double FGAIBase::_getYOffset() const { + return _y_offset; +} + +double FGAIBase::_getZOffset() const { + return _z_offset; +} + const char* FGAIBase::_getPath() const { return model_path.c_str(); } @@ -606,7 +667,6 @@ const char* FGAIBase::_getSubmodel() const { return _submodel.c_str(); } - void FGAIBase::CalculateMach() { // Calculate rho at altitude, using standard atmosphere // For the temperature T and the pressure p,