]> git.mxchange.org Git - flightgear.git/blobdiff - src/Scripting/NasalSys.hxx
HTTP: Rename urlretrieve/urlload to save/load.
[flightgear.git] / src / Scripting / NasalSys.hxx
index 83efde6e427ab94204736701714eb95c5e5ab548..b5b3d00d4c65b2827ecb923710d040a55f744931 100644 (file)
@@ -4,10 +4,15 @@
 #include <simgear/misc/sg_path.hxx>
 #include <simgear/structure/subsystem_mgr.hxx>
 #include <simgear/misc/sg_dir.hxx>
+#include <simgear/nasal/cppbind/NasalHash.hxx>
 #include <simgear/nasal/nasal.h>
-#include <simgear/scene/model/modellib.hxx>
-#include <simgear/xml/easyxml.hxx>
 #include <simgear/threads/SGQueue.hxx>
+#include <simgear/props/props.hxx>
+
+// Required only for MSVC
+#ifdef _MSC_VER
+#   include <Scripting/NasalModelData.hxx>
+#endif
 
 #include <map>
 
 class FGNasalScript;
 class FGNasalListener;
 class SGCondition;
+class FGNasalModelData;
 
-/** Nasal model data container.
- * load and unload methods must be run in main thread (not thread-safe). */
-class FGNasalModelData : public SGReferenced
-{
-public:
-    /** Constructor to be run in an arbitrary thread. */
-    FGNasalModelData(SGPropertyNode *root, const string& path, SGPropertyNode *prop,
-                     SGPropertyNode* load, SGPropertyNode* unload) :
-        _path(path),
-        _root(root), _prop(prop),
-        _load(load), _unload(unload)
-     {
-     }
-
-    /** Load hook. Always call from inside the main loop. */
-    void load();
-
-    /** Unload hook. Always call from inside the main loop. */
-    void unload();
-
-private:
-    static unsigned int _module_id;
-
-    string _module, _path;
-    SGPropertyNode_ptr _root, _prop;
-    SGConstPropertyNode_ptr _load, _unload;
-};
-
-/** Thread-safe proxy for FGNasalModelData.
- * modelLoaded/destroy methods only register the requested
- * operation. Actual (un)loading of Nasal module is deferred
- * and done in the main loop. */
-class FGNasalModelDataProxy : public simgear::SGModelData
-{
-public:
-    FGNasalModelDataProxy(SGPropertyNode *root = 0) :
-        _root(root), _data(0)
-    {
-    }
-
-    ~FGNasalModelDataProxy();
-
-    void modelLoaded(const string& path, SGPropertyNode *prop, osg::Node *);
-
-protected:
-    SGPropertyNode_ptr _root;
-    SGSharedPtr<FGNasalModelData> _data;
-};
+namespace simgear { class BufferedLogCallback; }
 
 SGPropertyNode* ghostToPropNode(naRef ref);
 SGCondition* conditionGhost(naRef r);
@@ -92,7 +51,7 @@ public:
     // this function.  The "name" argument specifies the "file name"
     // for the source code that will be printed in Nasal stack traces
     // on error.
-    FGNasalScript* parseScript(const char* src, const char* name=0);
//   FGNasalScript* parseScript(const char* src, const char* name=0);
 
     // Implementation of the settimer extension function
     void setTimer(naContext c, int argc, naRef* args);
@@ -104,6 +63,14 @@ public:
     // Returns a ghost wrapper for the current _cmdArg
     naRef cmdArgGhost();
 
+    void setCmdArg(SGPropertyNode* aNode);
+    
+    /**
+     * create Nasal props.Node for an SGPropertyNode*
+     * This is the actual ghost, wrapped in a Nasal sugar class.
+     */
+    naRef wrappedPropsNode(SGPropertyNode* aProps);
+    
     // Callbacks for command and timer bindings
     virtual bool handleCommand( const char* moduleName,
                                 const char* fileName,
@@ -133,8 +100,8 @@ public:
   
     naRef propNodeGhost(SGPropertyNode* handle);
   
-    void registerToLoad(FGNasalModelData* data)   { _loadList.push(data);}
-    void registerToUnload(FGNasalModelData* data) { _unloadList.push(data);}
+    void registerToLoad(FGNasalModelData* data);
+    void registerToUnload(FGNasalModelData* data);
 
     // can't call this 'globals' due to naming clash
     naRef nasalGlobals() const
@@ -142,6 +109,9 @@ public:
   
     naContext context() const
     { return _context; }
+
+    nasal::Hash getGlobals() const
+    { return nasal::Hash(_globals, _context); }
   
     // This mechanism is here to allow naRefs to be passed to
     // locations "outside" the interpreter.  Normally, such a
@@ -151,14 +121,24 @@ public:
     // when done.
     int gcSave(naRef r);
     void gcRelease(int key);
+    
+    /// retrive the associated log object, for displaying log
+    /// output somewhere (a UI, presumably)
+    simgear::BufferedLogCallback* log() const
+    { return _log; }
 private:
-    friend class FGNasalScript;
+    //friend class FGNasalScript;
     friend class FGNasalListener;
     friend class FGNasalModuleListener;
 
     SGLockedQueue<SGSharedPtr<FGNasalModelData> > _loadList;
     SGLockedQueue<SGSharedPtr<FGNasalModelData> > _unloadList;
 
+    // Delay removing items of the _loadList to ensure the are already attached
+    // to the scene graph (eg. enables to retrieve world position in load
+    // callback).
+    bool _delay_load;
+
     //
     // FGTimer subclass for handling Nasal timer callbacks.
     // See the implementation of the settimer() extension function for
@@ -174,14 +154,15 @@ private:
 
     // Listener
     std::map<int, FGNasalListener *> _listener;
-    vector<FGNasalListener *> _dead_listener;
+    std::vector<FGNasalListener *> _dead_listener;
+    
     static int _listenerId;
 
     void loadPropertyScripts();
     void loadPropertyScripts(SGPropertyNode* n);
     void loadScriptDirectory(simgear::Dir nasalDir);
-    void addModule(string moduleName, simgear::PathList scripts);
-    void logError(naContext);
+    void addModule(std::string moduleName, simgear::PathList scripts);
+    static void logError(naContext);
     naRef parse(const char* filename, const char* buf, int len);
     naRef genPropsModule();
 
@@ -191,14 +172,12 @@ private:
 
     SGPropertyNode_ptr _cmdArg;
 
-    int _nextGCKey;
-    naRef _gcHash;
-    int _callCount;
-
-    public: void handleTimer(NasalTimer* t);
+    simgear::BufferedLogCallback* _log;
+public:
+    void handleTimer(NasalTimer* t);
 };
 
-
+#if 0
 class FGNasalScript {
 public:
     ~FGNasalScript() { _nas->gcRelease(_gcKey); }
@@ -208,61 +187,14 @@ public:
         naCall(_nas->_context, _code, 0, &n, naNil(), naNil());
         return naGetError(_nas->_context) == 0;
     }
-
-private:
-    friend class FGNasalSys;
-    naRef _code;
-    int _gcKey;
-    FGNasalSys* _nas;
-};
-
-
-class FGNasalListener : public SGPropertyChangeListener {
-public:
-    FGNasalListener(SGPropertyNode* node, naRef code, FGNasalSys* nasal,
-                    int key, int id, int init, int type);
-
-    virtual ~FGNasalListener();
-    virtual void valueChanged(SGPropertyNode* node);
-    virtual void childAdded(SGPropertyNode* parent, SGPropertyNode* child);
-    virtual void childRemoved(SGPropertyNode* parent, SGPropertyNode* child);
-
+    
+    FGNasalSys* sys() const { return _nas; }
 private:
-    bool changed(SGPropertyNode* node);
-    void call(SGPropertyNode* which, naRef mode);
-
     friend class FGNasalSys;
-    SGPropertyNode_ptr _node;
     naRef _code;
     int _gcKey;
-    int _id;
     FGNasalSys* _nas;
-    int _init;
-    int _type;
-    unsigned int _active;
-    bool _dead;
-    long _last_int;
-    double _last_float;
-    string _last_string;
-};
-
-
-class NasalXMLVisitor : public XMLVisitor {
-public:
-    NasalXMLVisitor(naContext c, int argc, naRef* args);
-    virtual ~NasalXMLVisitor() { naFreeContext(_c); }
-
-    virtual void startElement(const char* tag, const XMLAttributes& a);
-    virtual void endElement(const char* tag);
-    virtual void data(const char* str, int len);
-    virtual void pi(const char* target, const char* data);
-
-private:
-    void call(naRef func, int num, naRef a = naNil(), naRef b = naNil());
-    naRef make_string(const char* s, int n = -1);
-
-    naContext _c;
-    naRef _start_element, _end_element, _data, _pi;
 };
+#endif
 
 #endif // __NASALSYS_HXX