X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FScripting%2FNasalSys.cxx;h=2690bda6dda8139f635093602909317f8dbb3e5f;hb=2bdaebb7d948de52b3e32b1d12224491c0361621;hp=a210d03569c50bbafbc35ba4bda2f4720e1f9f03;hpb=5889a7148b492411430a7f3a76ae7847e0096ff7;p=flightgear.git diff --git a/src/Scripting/NasalSys.cxx b/src/Scripting/NasalSys.cxx index a210d0356..2690bda6d 100644 --- a/src/Scripting/NasalSys.cxx +++ b/src/Scripting/NasalSys.cxx @@ -14,12 +14,11 @@ #include #include -#include - #include #include #include #include +#include #include #include #include @@ -33,11 +32,37 @@ #include
#include #include +#include #include "NasalSys.hxx" static FGNasalSys* nasalSys = 0; +// Listener class for loading Nasal modules on demand +class FGNasalModuleListener : public SGPropertyChangeListener +{ +public: + FGNasalModuleListener(SGPropertyNode* node); + + virtual void valueChanged(SGPropertyNode* node); + +private: + SGPropertyNode_ptr _node; +}; + +FGNasalModuleListener::FGNasalModuleListener(SGPropertyNode* node) : _node(node) +{ +} + +void FGNasalModuleListener::valueChanged(SGPropertyNode*) +{ + if (_node->getBoolValue("enabled",false)&& + !_node->getBoolValue("loaded",true)) + { + nasalSys->loadPropertyScripts(_node); + } +} + // Read and return file contents in a single buffer. Note use of // stat() to get the file size. This is a win32 function, believe it @@ -186,8 +211,16 @@ static naRef f_getprop(naContext c, naRef me, int argc, naRef* args) case props::BOOL: case props::INT: case props::LONG: case props::FLOAT: case props::DOUBLE: - return naNum(p->getDoubleValue()); - + { + double dv = p->getDoubleValue(); + if (osg::isNaN(dv)) { + SG_LOG(SG_GENERAL, SG_ALERT, "Nasal getprop: property " << p->getPath() << " is NaN"); + return naNil(); + } + + return naNum(dv); + } + case props::STRING: case props::UNSPECIFIED: { @@ -212,6 +245,7 @@ static naRef f_setprop(naContext c, naRef me, int argc, naRef* args) buf[BUFLEN] = 0; char* p = buf; int buflen = BUFLEN; + if(argc < 2) naRuntimeError(c, "setprop() expects at least 2 arguments"); for(int i=0; isetDoubleValue(buf, n.num); } } catch (const string& err) { @@ -362,18 +401,33 @@ static naRef f_directory(naContext c, naRef me, int argc, naRef* args) { if(argc != 1 || !naIsString(args[0])) naRuntimeError(c, "bad arguments to directory()"); - naRef ldir = args[0]; - ulDir* dir = ulOpenDir(naStr_data(args[0])); - if(!dir) return naNil(); + + simgear::Dir d(SGPath(naStr_data(args[0]))); + if(!d.exists()) return naNil(); naRef result = naNewVector(c); - ulDirEnt* dent; - while((dent = ulReadDir(dir))) - naVec_append(result, naStr_fromdata(naNewString(c), dent->d_name, - strlen(dent->d_name))); - ulCloseDir(dir); + + simgear::PathList paths = d.children(simgear::Dir::TYPE_FILE | simgear::Dir::TYPE_DIR); + for (unsigned int i=0; iresolve_maybe_aircraft_path(naStr_data(args[0])); + const char* pdata = p.c_str(); + return naStr_fromdata(naNewString(c), const_cast(pdata), strlen(pdata)); +} + // Parse XML file. // parsexml( [, [, [, [, ]]]]); // @@ -599,6 +653,28 @@ static naRef f_airportinfo(naContext c, naRef me, int argc, naRef* args) HASHSET("ils_frequency_mhz", 17, naNum(rwy->ILS()->get_freq() / 100.0)); } + std::vector sids(rwy->getSIDs()); + naRef sidVec = naNewVector(c); + + for (unsigned int s=0; s < sids.size(); ++s) { + naRef procId = naStr_fromdata(naNewString(c), + const_cast(sids[s]->ident().c_str()), + sids[s]->ident().length()); + naVec_append(sidVec, procId); + } + HASHSET("sids", 4, sidVec); + + std::vector stars(rwy->getSTARs()); + naRef starVec = naNewVector(c); + + for (unsigned int s=0; s < stars.size(); ++s) { + naRef procId = naStr_fromdata(naNewString(c), + const_cast(stars[s]->ident().c_str()), + stars[s]->ident().length()); + naVec_append(starVec, procId); + } + HASHSET("stars", 5, starVec); + #undef HASHSET naHash_set(rwys, rwyid, rwydata); } @@ -635,6 +711,7 @@ static struct { const char* name; naCFunction func; } funcs[] = { { "srand", f_srand }, { "abort", f_abort }, { "directory", f_directory }, + { "resolvepath", f_resolveDataPath }, { "parsexml", f_parsexml }, { "systime", f_systime }, { "carttogeod", f_carttogeod }, @@ -684,18 +761,17 @@ void FGNasalSys::init() hashset(_globals, "__gcsave", _gcHash); // Now load the various source files in the Nasal directory - SGPath p(globals->get_fg_root()); - p.append("Nasal"); - ulDirEnt* dent; - ulDir* dir = ulOpenDir(p.c_str()); - while(dir && (dent = ulReadDir(dir)) != 0) { - SGPath fullpath(p); - fullpath.append(dent->d_name); - SGPath file(dent->d_name); - if(file.extension() != "nas") continue; - loadModule(fullpath, file.base().c_str()); + simgear::Dir nasalDir(SGPath(globals->get_fg_root(), "Nasal")); + loadScriptDirectory(nasalDir); + + // Add modules in Nasal subdirectories to property tree + simgear::PathList directories = nasalDir.children(simgear::Dir::TYPE_DIR+ + simgear::Dir::NO_DOT_OR_DOTDOT, ""); + for (unsigned int i=0; i0) + { + SGPropertyNode* nasal = globals->get_props()->getNode("nasal"); + SGPropertyNode* module_node = nasal->getChild(moduleName,0,true); + for (unsigned int i=0; igetChild("file",i,true); + pFileNode->setStringValue(scripts[i].c_str()); + } + if (!module_node->hasChild("enabled",0)) + { + SGPropertyNode* node = module_node->getChild("enabled",0,true); + node->setBoolValue(true); + node->setAttribute(SGPropertyNode::USERARCHIVE,true); + } + } +} + // Loads the scripts found under /nasal in the global tree void FGNasalSys::loadPropertyScripts() { SGPropertyNode* nasal = globals->get_props()->getNode("nasal"); if(!nasal) return; - for(int i=0; inChildren(); i++) { + for(int i=0; inChildren(); i++) + { SGPropertyNode* n = nasal->getChild(i); + loadPropertyScripts(n); + } +} - const char* module = n->getName(); - if(n->hasChild("module")) - module = n->getStringValue("module"); +// Loads the scripts found under /nasal in the global tree +void FGNasalSys::loadPropertyScripts(SGPropertyNode* n) +{ + bool is_loaded = false; + const char* module = n->getName(); + if(n->hasChild("module")) + module = n->getStringValue("module"); + if (n->getBoolValue("enabled",true)) + { // allow multiple files to be specified within a single // Nasal module tag int j = 0; SGPropertyNode *fn; bool file_specified = false; + bool ok=true; while((fn = n->getChild("file", j)) != NULL) { file_specified = true; const char* file = fn->getStringValue(); - SGPath p(globals->get_fg_root()); - p.append(file); - loadModule(p, module); + SGPath p(file); + if (!p.isAbsolute() || !p.exists()) + { + p = globals->resolve_maybe_aircraft_path(file); + } + ok &= loadModule(p, module); j++; } @@ -762,10 +892,30 @@ void FGNasalSys::loadPropertyScripts() createModule(module, n->getPath().c_str(), src, strlen(src)); if(!file_specified && !src) + { + // module no longer exists - clear the archived "enable" flag + n->setAttribute(SGPropertyNode::USERARCHIVE,false); + SGPropertyNode* node = n->getChild("enabled",0,false); + if (node) + node->setAttribute(SGPropertyNode::USERARCHIVE,false); + SG_LOG(SG_NASAL, SG_ALERT, "Nasal error: " << - "no or