From: mfranz Date: Tue, 23 Jan 2007 15:53:04 +0000 (+0000) Subject: - remove "nasal-dir-initialized" signal node after use. This code is executed X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=inline;h=016750c865641b5fe617a55de73708d7132fb89f;p=flightgear.git - remove "nasal-dir-initialized" signal node after use. This code is executed before the property tree is stored away for reinit, so the signal would be emitted again on reset. - fix inconsistent style that sneaked in with a previous patch --- diff --git a/src/Scripting/NasalSys.cxx b/src/Scripting/NasalSys.cxx index c486ce90c..9d04fb295 100644 --- a/src/Scripting/NasalSys.cxx +++ b/src/Scripting/NasalSys.cxx @@ -82,7 +82,7 @@ naRef FGNasalSys::call(naRef code, naRef locals) FGNasalSys::~FGNasalSys() { map::iterator it, end = _listener.end(); - for (it = _listener.begin(); it != end; ++it) + for(it = _listener.begin(); it != end; ++it) delete it->second; // Nasal doesn't have a "destroy context" API yet. :( @@ -426,7 +426,12 @@ void FGNasalSys::init() loadModule(fullpath, file.base().c_str()); } ulCloseDir(dir); - fgSetBool("/sim/signals/nasal-dir-initialized", true); + + // set signal and remove node to avoid restoring at reinit + const char *s = "nasal-dir-initialized"; + SGPropertyNode *signal = fgGetNode("/sim/signals", true); + signal->setBoolValue(s, true); + signal->removeChildren(s); // Pull scripts out of the property tree, too loadPropertyScripts(); @@ -662,7 +667,7 @@ naRef FGNasalSys::setListener(int argc, naRef* args) else if(naIsGhost(prop)) node = *(SGPropertyNode_ptr*)naGhost_ptr(prop); else return naNil(); - if (node->isTied()) + if(node->isTied()) SG_LOG(SG_NASAL, SG_DEBUG, "Attaching listener to tied property " << node->getPath()); @@ -747,12 +752,12 @@ void FGNasalModelData::modelLoaded(const string& path, SGPropertyNode *prop, osg::Node *) { SGPropertyNode *n = prop->getNode("nasal"), *load; - if (!n) + if(!n) return; load = n->getNode("load"); _unload = n->getNode("unload"); - if (!load && !_unload) + if(!load && !_unload) return; _module = path; @@ -763,17 +768,17 @@ void FGNasalModelData::modelLoaded(const string& path, SGPropertyNode *prop, FGNasalModelData::~FGNasalModelData() { - if (_module.empty()) + if(_module.empty()) return; FGNasalSys *nas = (FGNasalSys *)globals->get_subsystem("nasal"); - if (!nas) { + if(!nas) { SG_LOG(SG_NASAL, SG_ALERT, "Trying to run an script " "without Nasal subsystem present."); return; } - if (_unload) { + if(_unload) { const char *s = _unload->getStringValue(); nas->createModule(_module.c_str(), _module.c_str(), s, strlen(s)); }