JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGModelLoader Class Reference

Detailed Description

Definition at line 62 of file FGModelLoader.h.

Public Member Functions

 FGModelLoader (const FGModel *_model)
 
Element_ptr Open (Element *el)
 

Constructor & Destructor Documentation

◆ FGModelLoader()

FGModelLoader ( const FGModel _model)
inline

Definition at line 65 of file FGModelLoader.h.

65: model(_model) {}

Member Function Documentation

◆ Open()

Element_ptr Open ( Element el)

Definition at line 53 of file FGModelLoader.cpp.

54{
55 Element_ptr document = el;
56 string fname = el->GetAttributeValue("file");
57
58 if (!fname.empty()) {
59 FGXMLFileRead XMLFileRead;
60 SGPath path(SGPath::fromUtf8(fname.c_str()));
61
62 if (path.isRelative())
63 path = model->FindFullPathName(path);
64
65 if (CachedFiles.find(path.utf8Str()) != CachedFiles.end())
66 document = CachedFiles[path.utf8Str()];
67 else {
68 document = XMLFileRead.LoadXMLDocument(path);
69 if (document == 0L) {
70 cerr << endl << el->ReadFrom()
71 << "Could not open file: " << fname << endl;
72 return NULL;
73 }
74 CachedFiles[path.utf8Str()] = document;
75 }
76
77 if (document->GetName() != el->GetName()) {
78 document->SetParent(el);
79 el->AddChildElement(document);
80 }
81 }
82
83 return document;
84}

The documentation for this class was generated from the following files: