41#include "FGModelLoader.h"
42#include "FGXMLFileRead.h"
43#include "models/FGModel.h"
53Element_ptr FGModelLoader::Open(Element *el)
55 Element_ptr document = el;
56 string fname = el->GetAttributeValue(
"file");
59 FGXMLFileRead XMLFileRead;
60 SGPath path(SGPath::fromUtf8(fname.c_str()));
62 if (path.isRelative())
63 path = model->FindFullPathName(path);
65 if (CachedFiles.find(path.utf8Str()) != CachedFiles.end())
66 document = CachedFiles[path.utf8Str()];
68 document = XMLFileRead.LoadXMLDocument(path);
70 cerr << endl << el->ReadFrom()
71 <<
"Could not open file: " << fname << endl;
74 CachedFiles[path.utf8Str()] = document;
77 if (document->GetName() != el->GetName()) {
78 document->SetParent(el);
79 el->AddChildElement(document);
86SGPath CheckPathName(
const SGPath& path,
const SGPath& filename) {
87 SGPath fullName = path/filename.utf8Str();
89 if (fullName.extension() !=
"xml")
90 fullName.concat(
".xml");
92 return fullName.exists() ? fullName : SGPath();