X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAIBase.hxx;h=726ce303bef95d5d008609686c5d2757b84b7cd5;hb=04395fa9a5e2e1fe82652666252f597f51de3ebd;hp=fa85d5d2b656ab066311caf672ec4ceac73167f1;hpb=1e7d072eed9060bede14ff04f8aca57237fad3cd;p=flightgear.git diff --git a/src/AIModel/AIBase.hxx b/src/AIModel/AIBase.hxx index fa85d5d2b..726ce303b 100644 --- a/src/AIModel/AIBase.hxx +++ b/src/AIModel/AIBase.hxx @@ -43,6 +43,7 @@ using std::list; class SGMaterial; class FGAIManager; class FGAIFlightPlan; +class FGFX; class FGAIBase : public SGReferenced { @@ -64,6 +65,7 @@ public: virtual void unbind(); virtual void reinit() {} + void updateLOD(); void setManager(FGAIManager* mgr, SGPropertyNode* p); void setPath( const char* model ); void setSMPath( const string& p ); @@ -133,7 +135,7 @@ public: string _path; string _callsign; string _submodel; - string _name; + std::string _name; string _parent; SGGeod userpos; @@ -186,7 +188,6 @@ protected: double ht_diff; // value used by radar display instrument string model_path; //Path to the 3D model - osg::ref_ptr model; //The 3D model object SGModelPlacement aip; bool delete_me; @@ -216,12 +217,16 @@ protected: void CalculateMach(); double UpdateRadar(FGAIManager* manager); + void removeModel(); + static int _newAIModelID(); private: int _refID; object_type _otype; bool _initialized; + osg::ref_ptr _model; //The 3D model LOD object + SGSharedPtr _fx; public: object_type getType();