]> git.mxchange.org Git - flightgear.git/blob - src/Scripting/NasalSys.hxx
More route-manager functionality moved to Nasal.
[flightgear.git] / src / Scripting / NasalSys.hxx
1 #ifndef __NASALSYS_HXX
2 #define __NASALSYS_HXX
3
4 #include <simgear/misc/sg_path.hxx>
5 #include <simgear/structure/subsystem_mgr.hxx>
6 #include <simgear/misc/sg_dir.hxx>
7 #include <simgear/nasal/nasal.h>
8 #include <simgear/scene/model/modellib.hxx>
9 #include <simgear/xml/easyxml.hxx>
10 #include <simgear/threads/SGQueue.hxx>
11
12 #include <map>
13
14
15 class FGNasalScript;
16 class FGNasalListener;
17
18
19 /** Nasal model data container.
20  * load and unload methods must be run in main thread (not thread-safe). */
21 class FGNasalModelData : public SGReferenced
22 {
23 public:
24     /** Constructor to be run in an arbitrary thread. */
25     FGNasalModelData(SGPropertyNode *root, const string& path, SGPropertyNode *prop,
26                      SGPropertyNode* load, SGPropertyNode* unload) :
27         _path(path),
28         _root(root), _prop(prop),
29         _load(load), _unload(unload)
30      {
31      }
32
33     /** Load hook. Always call from inside the main loop. */
34     void load();
35
36     /** Unload hook. Always call from inside the main loop. */
37     void unload();
38
39 private:
40     static unsigned int _module_id;
41
42     string _module, _path;
43     SGPropertyNode_ptr _root, _prop;
44     SGConstPropertyNode_ptr _load, _unload;
45 };
46
47 /** Thread-safe proxy for FGNasalModelData.
48  * modelLoaded/destroy methods only register the requested
49  * operation. Actual (un)loading of Nasal module is deferred
50  * and done in the main loop. */
51 class FGNasalModelDataProxy : public simgear::SGModelData
52 {
53 public:
54     FGNasalModelDataProxy(SGPropertyNode *root = 0) :
55         _root(root), _data(0)
56     {
57     }
58
59     ~FGNasalModelDataProxy();
60
61     void modelLoaded(const string& path, SGPropertyNode *prop, osg::Node *);
62
63 protected:
64     SGPropertyNode_ptr _root;
65     SGSharedPtr<FGNasalModelData> _data;
66 };
67
68 class FGNasalSys : public SGSubsystem
69 {
70 public:
71     FGNasalSys();
72     virtual ~FGNasalSys();
73     virtual void init();
74     virtual void update(double dt);
75
76     // Loads a nasal script from an external file and inserts it as a
77     // global module of the specified name.
78     bool loadModule(SGPath file, const char* moduleName);
79
80     // Simple hook to run arbitrary source code.  Returns a bool to
81     // indicate successful execution.  Does *not* return any Nasal
82     // values, because handling garbage-collected objects from C space
83     // is deep voodoo and violates the "simple hook" idea.
84     bool parseAndRun(const char* sourceCode);
85
86     // Slightly more complicated hook to get a handle to a precompiled
87     // Nasal script that can be invoked via a call() method.  The
88     // caller is expected to delete the FGNasalScript returned from
89     // this function.  The "name" argument specifies the "file name"
90     // for the source code that will be printed in Nasal stack traces
91     // on error.
92     FGNasalScript* parseScript(const char* src, const char* name=0);
93
94     // Implementation of the settimer extension function
95     void setTimer(naContext c, int argc, naRef* args);
96
97     // Implementation of the setlistener extension function
98     naRef setListener(naContext c, int argc, naRef* args);
99     naRef removeListener(naContext c, int argc, naRef* args);
100
101     // Returns a ghost wrapper for the current _cmdArg
102     naRef cmdArgGhost();
103
104     // Callbacks for command and timer bindings
105     virtual bool handleCommand(const SGPropertyNode* arg);
106
107     bool createModule(const char* moduleName, const char* fileName,
108                       const char* src, int len, const SGPropertyNode* cmdarg=0,
109                       int argc=0, naRef*args=0);
110
111     void deleteModule(const char* moduleName);
112
113     naRef call(naRef code, int argc, naRef* args, naRef locals);
114   
115     naRef callMethod(naRef code, naRef self, int argc, naRef* args, naRef locals);
116   
117     naRef propNodeGhost(SGPropertyNode* handle);
118
119     void registerToLoad(FGNasalModelData* data)   { _loadList.push(data);}
120     void registerToUnload(FGNasalModelData* data) { _unloadList.push(data);}
121
122     // can't call this 'globals' due to naming clash
123     naRef nasalGlobals() const
124     { return _globals; }
125   
126     naContext context() const
127     { return _context; }
128   
129     // This mechanism is here to allow naRefs to be passed to
130     // locations "outside" the interpreter.  Normally, such a
131     // reference would be garbage collected unexpectedly.  By passing
132     // it to gcSave and getting a key/handle, it can be cached in a
133     // globals.__gcsave hash.  Be sure to release it with gcRelease
134     // when done.
135     int gcSave(naRef r);
136     void gcRelease(int key);
137 private:
138     friend class FGNasalScript;
139     friend class FGNasalListener;
140     friend class FGNasalModuleListener;
141
142     SGLockedQueue<SGSharedPtr<FGNasalModelData> > _loadList;
143     SGLockedQueue<SGSharedPtr<FGNasalModelData> > _unloadList;
144
145     //
146     // FGTimer subclass for handling Nasal timer callbacks.
147     // See the implementation of the settimer() extension function for
148     // more notes.
149     //
150     struct NasalTimer {
151         virtual void timerExpired();
152         virtual ~NasalTimer() {}
153         naRef handler;
154         int gcKey;
155         FGNasalSys* nasal;
156     };
157
158     // Listener
159     std::map<int, FGNasalListener *> _listener;
160     vector<FGNasalListener *> _dead_listener;
161     static int _listenerId;
162
163     void loadPropertyScripts();
164     void loadPropertyScripts(SGPropertyNode* n);
165     void loadScriptDirectory(simgear::Dir nasalDir);
166     void addModule(string moduleName, simgear::PathList scripts);
167     void hashset(naRef hash, const char* key, naRef val);
168     void logError(naContext);
169     naRef parse(const char* filename, const char* buf, int len);
170     naRef genPropsModule();
171
172     naContext _context;
173     naRef _globals;
174
175     SGPropertyNode_ptr _cmdArg;
176
177     int _nextGCKey;
178     naRef _gcHash;
179     int _callCount;
180
181     public: void handleTimer(NasalTimer* t);
182 };
183
184
185 class FGNasalScript {
186 public:
187     ~FGNasalScript() { _nas->gcRelease(_gcKey); }
188
189     bool call() {
190         naRef n = naNil();
191         naCall(_nas->_context, _code, 0, &n, naNil(), naNil());
192         return naGetError(_nas->_context) == 0;
193     }
194
195 private:
196     friend class FGNasalSys;
197     naRef _code;
198     int _gcKey;
199     FGNasalSys* _nas;
200 };
201
202
203 class FGNasalListener : public SGPropertyChangeListener {
204 public:
205     FGNasalListener(SGPropertyNode* node, naRef code, FGNasalSys* nasal,
206                     int key, int id, int init, int type);
207
208     virtual ~FGNasalListener();
209     virtual void valueChanged(SGPropertyNode* node);
210     virtual void childAdded(SGPropertyNode* parent, SGPropertyNode* child);
211     virtual void childRemoved(SGPropertyNode* parent, SGPropertyNode* child);
212
213 private:
214     bool changed(SGPropertyNode* node);
215     void call(SGPropertyNode* which, naRef mode);
216
217     friend class FGNasalSys;
218     SGPropertyNode_ptr _node;
219     naRef _code;
220     int _gcKey;
221     int _id;
222     FGNasalSys* _nas;
223     int _init;
224     int _type;
225     unsigned int _active;
226     bool _dead;
227     long _last_int;
228     double _last_float;
229     string _last_string;
230 };
231
232
233 class NasalXMLVisitor : public XMLVisitor {
234 public:
235     NasalXMLVisitor(naContext c, int argc, naRef* args);
236     virtual ~NasalXMLVisitor() { naFreeContext(_c); }
237
238     virtual void startElement(const char* tag, const XMLAttributes& a);
239     virtual void endElement(const char* tag);
240     virtual void data(const char* str, int len);
241     virtual void pi(const char* target, const char* data);
242
243 private:
244     void call(naRef func, int num, naRef a = naNil(), naRef b = naNil());
245     naRef make_string(const char* s, int n = -1);
246
247     naContext _c;
248     naRef _start_element, _end_element, _data, _pi;
249 };
250
251 #endif // __NASALSYS_HXX