]> git.mxchange.org Git - flightgear.git/blob - src/Scripting/NasalSys.hxx
- fix two bugs
[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/nasal/nasal.h>
7 #include <simgear/scene/model/model.hxx>
8
9 #include <map>
10 SG_USING_STD(map);
11
12
13 class FGNasalScript;
14 class FGNasalListener;
15
16 class FGNasalSys : public SGSubsystem
17 {
18 public:
19     FGNasalSys();
20     virtual ~FGNasalSys();
21     virtual void init();
22     virtual void update(double dt) { /* noop */ }
23
24     // Loads a nasal script from an external file and inserts it as a
25     // global module of the specified name.
26     void loadModule(SGPath file, const char* moduleName);
27
28     // Simple hook to run arbitrary source code.  Returns a bool to
29     // indicate successful execution.  Does *not* return any Nasal
30     // values, because handling garbage-collected objects from C space
31     // is deep voodoo and violates the "simple hook" idea.
32     bool parseAndRun(const char* sourceCode);
33
34     // Slightly more complicated hook to get a handle to a precompiled
35     // Nasal script that can be invoked via a call() method.  The
36     // caller is expected to delete the FGNasalScript returned from
37     // this function.  The "name" argument specifies the "file name"
38     // for the source code that will be printed in Nasal stack traces
39     // on error.
40     FGNasalScript* parseScript(const char* src, const char* name=0);
41
42     // Implementation of the settimer extension function
43     void setTimer(int argc, naRef* args);
44
45     // Implementation of the setlistener extension function
46     naRef setListener(int argc, naRef* args);
47     naRef removeListener(int argc, naRef* args);
48
49     // Returns a ghost wrapper for the current _cmdArg
50     naRef cmdArgGhost();
51
52     // Callbacks for command and timer bindings
53     virtual bool handleCommand(const SGPropertyNode* arg);
54
55     void createModule(const char* moduleName, const char* fileName,
56                     const char* src, int len, const SGPropertyNode* arg=0);
57
58     void deleteModule(const char* moduleName);
59
60 private:
61     friend class FGNasalScript;
62     friend class FGNasalListener;
63
64     //
65     // FGTimer subclass for handling Nasal timer callbacks.
66     // See the implementation of the settimer() extension function for
67     // more notes.
68     //
69     struct NasalTimer {
70         virtual void timerExpired();
71         naRef handler;
72         int gcKey;
73         FGNasalSys* nasal;
74     };
75
76     // Listener
77     map<int, FGNasalListener *> _listener;
78     static int _listenerId;
79
80     void loadPropertyScripts();
81     void hashset(naRef hash, const char* key, naRef val);
82     void logError(naContext);
83     naRef parse(const char* filename, const char* buf, int len);
84     naRef genPropsModule();
85     naRef propNodeGhost(SGPropertyNode* handle);
86
87     // This mechanism is here to allow naRefs to be passed to
88     // locations "outside" the interpreter.  Normally, such a
89     // reference would be garbage collected unexpectedly.  By passing
90     // it to gcSave and getting a key/handle, it can be cached in a
91     // globals.__gcsave hash.  Be sure to release it with gcRelease
92     // when done.
93     int gcSave(naRef r);
94     void gcRelease(int key);
95
96     naContext _context;
97     naRef _globals;
98
99     SGPropertyNode_ptr _cmdArg;
100
101     int _nextGCKey;
102     naRef _gcHash;
103
104     public: void handleTimer(NasalTimer* t);
105 };
106
107
108 class FGNasalScript {
109 public:
110     ~FGNasalScript() { _nas->gcRelease(_gcKey); }
111
112     bool call() {
113         naRef n = naNil();
114         naCall(_nas->_context, _code, 0, &n, naNil(), naNil());
115         return naGetError(_nas->_context) == 0;
116     }
117
118 private:
119     friend class FGNasalSys;
120     naRef _code;
121     int _gcKey;
122     FGNasalSys* _nas;
123 };
124
125
126 class FGNasalListener : public SGPropertyChangeListener {
127 public:
128     FGNasalListener(SGPropertyNode_ptr node, naRef handler,
129                     FGNasalSys* nasal, int key);
130
131     ~FGNasalListener();
132     void valueChanged(SGPropertyNode* node);
133
134 private:
135     friend class FGNasalSys;
136     SGPropertyNode_ptr _node;
137     naRef _handler;
138     int _gcKey;
139     FGNasalSys* _nas;
140     unsigned int _active;
141 };
142
143
144 class FGNasalModelData : public SGModelData {
145 public:
146     FGNasalModelData() : _unload(0) {}
147     ~FGNasalModelData();
148     void modelLoaded(const string& path, SGPropertyNode *prop, ssgBranch *);
149
150 private:
151     string _module;
152     SGConstPropertyNode_ptr _unload;
153 };
154
155 #endif // __NASALSYS_HXX