]> git.mxchange.org Git - flightgear.git/blob - src/Scripting/NasalSys.cxx
Add a lower-bound type navaid lookup, and the ability to specify navaid type in the...
[flightgear.git] / src / Scripting / NasalSys.cxx
1 #include <string.h>
2 #include <stdio.h>
3 #include <sys/types.h>
4 #include <sys/stat.h>
5
6 #include <plib/ul.h>
7
8 #include <simgear/nasal/nasal.h>
9 #include <simgear/props/props.hxx>
10 #include <simgear/math/sg_random.h>
11 #include <simgear/misc/sg_path.hxx>
12 #include <simgear/misc/interpolator.hxx>
13 #include <simgear/structure/commands.hxx>
14
15 #include <Main/globals.hxx>
16 #include <Main/fg_props.hxx>
17
18 #include "NasalSys.hxx"
19
20 // Read and return file contents in a single buffer.  Note use of
21 // stat() to get the file size.  This is a win32 function, believe it
22 // or not. :) Note the REALLY IMPORTANT use of the "b" flag to fopen.
23 // Text mode brain damage will kill us if we're trying to do bytewise
24 // I/O.
25 static char* readfile(const char* file, int* lenOut)
26 {
27     struct stat data;
28     if(stat(file, &data) != 0) return 0;
29     FILE* f = fopen(file, "rb");
30     if(!f) return 0;
31     char* buf = new char[data.st_size];
32     *lenOut = fread(buf, 1, data.st_size, f);
33     fclose(f);
34     if(*lenOut != data.st_size) {
35         // Shouldn't happen, but warn anyway since it represents a
36         // platform bug and not a typical runtime error (missing file,
37         // etc...)
38         SG_LOG(SG_NASAL, SG_ALERT,
39                "ERROR in Nasal initialization: " <<
40                "short count returned from fread() of " << file <<
41                ".  Check your C library!");
42         delete[] buf;
43         return 0;
44     }
45     return buf;
46 }
47
48 FGNasalSys::FGNasalSys()
49 {
50     _context = 0;
51     _globals = naNil();
52     _gcHash = naNil();
53     _nextGCKey = 0; // Any value will do
54 }
55
56 FGNasalSys::~FGNasalSys()
57 {
58     // Nasal doesn't have a "destroy context" API yet. :(
59     // Not a problem for a global subsystem that will never be
60     // destroyed.  And the context is actually a global, so no memory
61     // is technically leaked (although the GC pool memory obviously
62     // won't be freed).
63     _context = 0;
64     _globals = naNil();
65 }
66
67 bool FGNasalSys::parseAndRun(const char* sourceCode)
68 {
69     naRef code = parse("FGNasalSys::parseAndRun()", sourceCode,
70                        strlen(sourceCode));
71     if(naIsNil(code))
72         return false;
73
74     naCall(_context, code, 0, 0, naNil(), naNil());
75
76     if(!naGetError(_context)) return true;
77     logError();
78     return false;
79 }
80
81 FGNasalScript* FGNasalSys::parseScript(const char* src, const char* name)
82 {
83     FGNasalScript* script = new FGNasalScript();
84     script->_gcKey = -1; // important, if we delete it on a parse
85     script->_nas = this; // error, don't clobber a real handle!
86
87     char buf[256];
88     if(!name) {
89         sprintf(buf, "FGNasalScript@%p", script);
90         name = buf;
91     }
92
93     script->_code = parse(name, src, strlen(src));
94     if(naIsNil(script->_code)) {
95         delete script;
96         return 0;
97     }
98
99     script->_gcKey = gcSave(script->_code);
100     return script;
101 }
102
103 // Utility.  Sets a named key in a hash by C string, rather than nasal
104 // string object.
105 void FGNasalSys::hashset(naRef hash, const char* key, naRef val)
106 {
107     naRef s = naNewString(_context);
108     naStr_fromdata(s, (char*)key, strlen(key));
109     naHash_set(hash, s, val);
110 }
111
112 // The get/setprop functions accept a *list* of strings and walk
113 // through the property tree with them to find the appropriate node.
114 // This allows a Nasal object to hold onto a property path and use it
115 // like a node object, e.g. setprop(ObjRoot, "size-parsecs", 2.02).  This
116 // is the utility function that walks the property tree.
117 // Future enhancement: support integer arguments to specify array
118 // elements.
119 static SGPropertyNode* findnode(naContext c, naRef* vec, int len)
120 {
121     SGPropertyNode* p = globals->get_props();
122     for(int i=0; i<len; i++) {
123         naRef a = vec[i];
124         if(!naIsString(a)) return 0;
125         p = p->getNode(naStr_data(a));
126         if(p == 0) return 0;
127     }
128     return p;
129 }
130
131 // getprop() extension function.  Concatenates its string arguments as
132 // property names and returns the value of the specified property.  Or
133 // nil if it doesn't exist.
134 static naRef f_getprop(naContext c, naRef me, int argc, naRef* args)
135 {
136     const SGPropertyNode* p = findnode(c, args, argc);
137     if(!p) return naNil();
138
139     switch(p->getType()) {
140     case SGPropertyNode::BOOL:   case SGPropertyNode::INT:
141     case SGPropertyNode::LONG:   case SGPropertyNode::FLOAT:
142     case SGPropertyNode::DOUBLE:
143         return naNum(p->getDoubleValue());
144
145     case SGPropertyNode::STRING:
146     case SGPropertyNode::UNSPECIFIED:
147         {
148             naRef nastr = naNewString(c);
149             const char* val = p->getStringValue();
150             naStr_fromdata(nastr, (char*)val, strlen(val));
151             return nastr;
152         }
153     case SGPropertyNode::ALIAS: // <--- FIXME, recurse?
154     default:
155         return naNil();
156     }
157 }
158
159 // setprop() extension function.  Concatenates its string arguments as
160 // property names and sets the value of the specified property to the
161 // final argument.
162 static naRef f_setprop(naContext c, naRef me, int argc, naRef* args)
163 {
164 #define BUFLEN 1024
165     char buf[BUFLEN + 1];
166     buf[BUFLEN] = 0;
167     char* p = buf;
168     int buflen = BUFLEN;
169     for(int i=0; i<argc-1; i++) {
170         naRef s = naStringValue(c, args[i]);
171         if(naIsNil(s)) return naNil();
172         strncpy(p, naStr_data(s), buflen);
173         p += naStr_len(s);
174         buflen = BUFLEN - (p - buf);
175         if(i < (argc-2) && buflen > 0) {
176             *p++ = '/';
177             buflen--;
178         }
179     }
180
181     SGPropertyNode* props = globals->get_props();
182     naRef val = args[argc-1];
183     if(naIsString(val)) props->setStringValue(buf, naStr_data(val));
184     else                props->setDoubleValue(buf, naNumValue(val).num);
185     return naNil();
186 #undef BUFLEN
187 }
188
189 // print() extension function.  Concatenates and prints its arguments
190 // to the FlightGear log.  Uses the highest log level (SG_ALERT), to
191 // make sure it appears.  Is there better way to do this?
192 static naRef f_print(naContext c, naRef me, int argc, naRef* args)
193 {
194 #define BUFLEN 1024
195     char buf[BUFLEN + 1];
196     buf[BUFLEN] = 0; // extra nul to handle strncpy brain damage
197     buf[0] = 0; // Zero-length in case there are no arguments
198     char* p = buf;
199     int buflen = BUFLEN;
200     int n = argc;
201     for(int i=0; i<n; i++) {
202         naRef s = naStringValue(c, args[i]);
203         if(naIsNil(s)) continue;
204         strncpy(p, naStr_data(s), buflen);
205         p += naStr_len(s);
206         buflen = BUFLEN - (p - buf);
207         if(buflen <= 0) break;
208     }
209     SG_LOG(SG_GENERAL, SG_ALERT, buf);
210     return naNil();
211 #undef BUFLEN
212 }
213
214 // fgcommand() extension function.  Executes a named command via the
215 // FlightGear command manager.  Takes a single property node name as
216 // an argument.
217 static naRef f_fgcommand(naContext c, naRef me, int argc, naRef* args)
218 {
219     if(argc < 2 || !naIsString(args[0]) || !naIsGhost(args[1]))
220         naRuntimeError(c, "bad arguments to fgcommand()");
221     naRef cmd = args[0], props = args[1];
222     SGPropertyNode_ptr* node = (SGPropertyNode_ptr*)naGhost_ptr(props);
223     globals->get_commands()->execute(naStr_data(cmd), *node);
224     return naNil();
225
226 }
227
228 // settimer(func, dt, simtime) extension function.  Falls through to
229 // FGNasalSys::setTimer().  See there for docs.
230 static naRef f_settimer(naContext c, naRef me, int argc, naRef* args)
231 {
232     FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal");
233     nasal->setTimer(argc, args);
234     return naNil();
235 }
236
237 // Returns a ghost handle to the argument to the currently executing
238 // command
239 static naRef f_cmdarg(naContext c, naRef me, int argc, naRef* args)
240 {
241     FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal");
242     return nasal->cmdArgGhost();
243 }
244
245 // Sets up a property interpolation.  The first argument is either a
246 // ghost (SGPropertyNode_ptr*) or a string (global property path) to
247 // interpolate.  The second argument is a vector of pairs of
248 // value/delta numbers.
249 static naRef f_interpolate(naContext c, naRef me, int argc, naRef* args)
250 {
251     SGPropertyNode* node;
252     naRef prop = argc > 0 ? args[0] : naNil();
253     if(naIsString(prop)) node = fgGetNode(naStr_data(prop), true);
254     else if(naIsGhost(prop)) node = *(SGPropertyNode_ptr*)naGhost_ptr(prop);
255     else return naNil();
256
257     naRef curve = argc > 1 ? args[1] : naNil();
258     if(!naIsVector(curve)) return naNil();
259     int nPoints = naVec_size(curve) / 2;
260     double* values = new double[nPoints];
261     double* deltas = new double[nPoints];
262     for(int i=0; i<nPoints; i++) {
263         values[i] = naNumValue(naVec_get(curve, 2*i)).num;
264         deltas[i] = naNumValue(naVec_get(curve, 2*i+1)).num;
265     }
266
267     ((SGInterpolator*)globals->get_subsystem("interpolator"))
268         ->interpolate(node, nPoints, values, deltas);
269
270     return naNil();
271 }
272
273 // This is a better RNG than the one in the default Nasal distribution
274 // (which is based on the C library rand() implementation). It will
275 // override.
276 static naRef f_rand(naContext c, naRef me, int argc, naRef* args)
277 {
278     return naNum(sg_random());
279 }
280
281 // Table of extension functions.  Terminate with zeros.
282 static struct { char* name; naCFunction func; } funcs[] = {
283     { "getprop",   f_getprop },
284     { "setprop",   f_setprop },
285     { "print",     f_print },
286     { "_fgcommand", f_fgcommand },
287     { "settimer",  f_settimer },
288     { "_cmdarg",  f_cmdarg },
289     { "_interpolate",  f_interpolate },
290     { "rand",  f_rand },
291     { 0, 0 }
292 };
293
294 naRef FGNasalSys::cmdArgGhost()
295 {
296     return propNodeGhost(_cmdArg);
297 }
298
299 void FGNasalSys::init()
300 {
301     int i;
302
303     _context = naNewContext();
304
305     // Start with globals.  Add it to itself as a recursive
306     // sub-reference under the name "globals".  This gives client-code
307     // write access to the namespace if someone wants to do something
308     // fancy.
309     _globals = naStdLib(_context);
310     naSave(_context, _globals);
311     hashset(_globals, "globals", _globals);
312
313     // Add in the math library under "math"
314     hashset(_globals, "math", naMathLib(_context));
315
316     // Add our custom extension functions:
317     for(i=0; funcs[i].name; i++)
318         hashset(_globals, funcs[i].name,
319                 naNewFunc(_context, naNewCCode(_context, funcs[i].func)));
320
321     // And our SGPropertyNode wrapper
322     hashset(_globals, "props", genPropsModule());
323
324     // Make a "__gcsave" hash to hold the naRef objects which get
325     // passed to handles outside the interpreter (to protect them from
326     // begin garbage-collected).
327     _gcHash = naNewHash(_context);
328     hashset(_globals, "__gcsave", _gcHash);
329
330     // Now load the various source files in the Nasal directory
331     SGPath p(globals->get_fg_root());
332     p.append("Nasal");
333     ulDirEnt* dent;
334     ulDir* dir = ulOpenDir(p.c_str());
335     while(dir && (dent = ulReadDir(dir)) != 0) {
336         SGPath fullpath(p);
337         fullpath.append(dent->d_name);
338         SGPath file(dent->d_name);
339         if(file.extension() != "nas") continue;
340         loadModule(fullpath, file.base().c_str());
341     }
342
343     // Pull scripts out of the property tree, too
344     loadPropertyScripts();
345 }
346
347 // Loads the scripts found under /nasal in the global tree
348 void FGNasalSys::loadPropertyScripts()
349 {
350     SGPropertyNode* nasal = globals->get_props()->getNode("nasal");
351     if(!nasal) return;
352
353     for(int i=0; i<nasal->nChildren(); i++) {
354         SGPropertyNode* n = nasal->getChild(i);
355
356         const char* module = n->getName();
357         if(n->hasChild("module"))
358             module = n->getStringValue("module");
359
360         // allow multiple files to be specified within in a single
361         // Nasal module tag
362         int j = 0;
363         SGPropertyNode *fn;
364         bool file_specified = false;
365         while ( (fn = n->getChild("file", j)) != NULL ) {
366             file_specified = true;
367             const char* file = fn->getStringValue();
368             SGPath p(globals->get_fg_root());
369             p.append(file);
370             loadModule(p, module);
371             j++;
372         }
373
374         // Old code which only allowed a single file to be specified per module
375         /*
376         const char* file = n->getStringValue("file");
377         if(!n->hasChild("file")) file = 0; // Hrm...
378         if(file) {
379             SGPath p(globals->get_fg_root());
380             p.append(file);
381             loadModule(p, module);
382         }
383         */
384         
385         const char* src = n->getStringValue("script");
386         if(!n->hasChild("script")) src = 0; // Hrm...
387         if(src)
388             createModule(module, n->getPath(), src, strlen(src));
389
390         if(!file_specified && !src)
391             SG_LOG(SG_NASAL, SG_ALERT, "Nasal error: " <<
392                    "no <file> or <script> defined in " <<
393                    "/nasal/" << module);
394     }
395 }
396
397 // Logs a runtime error, with stack trace, to the FlightGear log stream
398 void FGNasalSys::logError()
399 {
400     SG_LOG(SG_NASAL, SG_ALERT,
401            "Nasal runtime error: " << naGetError(_context));
402     SG_LOG(SG_NASAL, SG_ALERT,
403            "  at " << naStr_data(naGetSourceFile(_context, 0)) <<
404            ", line " << naGetLine(_context, 0));
405     for(int i=1; i<naStackDepth(_context); i++)
406         SG_LOG(SG_NASAL, SG_ALERT,
407                "  called from: " << naStr_data(naGetSourceFile(_context, i)) <<
408                ", line " << naGetLine(_context, i));
409 }
410
411 // Reads a script file, executes it, and places the resulting
412 // namespace into the global namespace under the specified module
413 // name.
414 void FGNasalSys::loadModule(SGPath file, const char* module)
415 {
416     int len = 0;
417     char* buf = readfile(file.c_str(), &len);
418     if(!buf) {
419         SG_LOG(SG_NASAL, SG_ALERT,
420                "Nasal error: could not read script file " << file.c_str()
421                << " into module " << module);
422         return;
423     }
424
425     createModule(module, file.c_str(), buf, len);
426     delete[] buf;
427 }
428
429 // Parse and run.  Save the local variables namespace, as it will
430 // become a sub-object of globals.
431 void FGNasalSys::createModule(const char* moduleName, const char* fileName,
432                               const char* src, int len)
433 {
434     naRef code = parse(fileName, src, len);
435     if(naIsNil(code))
436         return;
437
438     // See if we already have a module hash to use.  This allows the
439     // user to, for example, add functions to the built-in math
440     // module.  Make a new one if necessary.
441     naRef locals;
442     naRef modname = naNewString(_context);
443     naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
444     if(!naHash_get(_globals, modname, &locals))
445         locals = naNewHash(_context);
446
447     naCall(_context, code, 0, 0, naNil(), locals);
448     if(naGetError(_context)) {
449         logError();
450         return;
451     }
452     hashset(_globals, moduleName, locals);
453 }
454
455 naRef FGNasalSys::parse(const char* filename, const char* buf, int len)
456 {
457     int errLine = -1;
458     naRef srcfile = naNewString(_context);
459     naStr_fromdata(srcfile, (char*)filename, strlen(filename));
460     naRef code = naParseCode(_context, srcfile, 1, (char*)buf, len, &errLine);
461     if(naIsNil(code)) {
462         SG_LOG(SG_NASAL, SG_ALERT,
463                "Nasal parse error: " << naGetError(_context) <<
464                " in "<< filename <<", line " << errLine);
465         return naNil();
466     }
467
468     // Bind to the global namespace before returning
469     return naBindFunction(_context, code, _globals);
470 }
471
472 bool FGNasalSys::handleCommand(const SGPropertyNode* arg)
473 {
474     const char* nasal = arg->getStringValue("script");
475     const char* moduleName = arg->getStringValue("module");
476     naRef code = parse(arg->getPath(true), nasal, strlen(nasal));
477     if(naIsNil(code)) return false;
478
479     naRef locals = naNil();
480     if (moduleName[0]) {
481         naRef modname = naNewString(_context);
482         naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
483         if(!naHash_get(_globals, modname, &locals))
484             locals = naNewHash(_context);
485     }
486     // Cache the command argument for inspection via cmdarg().  For
487     // performance reasons, we won't bother with it if the invoked
488     // code doesn't need it.
489     _cmdArg = (SGPropertyNode*)arg;
490
491     // Call it!
492     naRef result = naCall(_context, code, 0, 0, naNil(), locals);
493     if(!naGetError(_context)) return true;
494     logError();
495     return false;
496 }
497
498 // settimer(func, dt, simtime) extension function.  The first argument
499 // is a Nasal function to call, the second is a delta time (from now),
500 // in seconds.  The third, if present, is a boolean value indicating
501 // that "real world" time (rather than simulator time) is to be used.
502 //
503 // Implementation note: the FGTimer objects don't live inside the
504 // garbage collector, so the Nasal handler functions have to be
505 // "saved" somehow lest they be inadvertently cleaned.  In this case,
506 // they are inserted into a globals.__gcsave hash and removed on
507 // expiration.
508 void FGNasalSys::setTimer(int argc, naRef* args)
509 {
510     // Extract the handler, delta, and simtime arguments:
511     naRef handler = argc > 0 ? args[0] : naNil();
512     if(!(naIsCode(handler) || naIsCCode(handler) || naIsFunc(handler)))
513         return;
514
515     naRef delta = argc > 1 ? args[1] : naNil();
516     if(naIsNil(delta)) return;
517     
518     bool simtime = (argc > 2 && naTrue(args[2])) ? false : true;
519
520     // Generate and register a C++ timer handler
521     NasalTimer* t = new NasalTimer;
522     t->handler = handler;
523     t->gcKey = gcSave(handler);
524     t->nasal = this;
525
526     globals->get_event_mgr()->addEvent("NasalTimer",
527                                        t, &NasalTimer::timerExpired,
528                                        delta.num, simtime);
529 }
530
531 void FGNasalSys::handleTimer(NasalTimer* t)
532 {
533     naCall(_context, t->handler, 0, 0, naNil(), naNil());
534     if(naGetError(_context))
535         logError();
536     gcRelease(t->gcKey);
537 }
538
539 int FGNasalSys::gcSave(naRef r)
540 {
541     int key = _nextGCKey++;
542     naHash_set(_gcHash, naNum(key), r);
543     return key;
544 }
545
546 void FGNasalSys::gcRelease(int key)
547 {
548     naHash_delete(_gcHash, naNum(key));
549 }
550
551 void FGNasalSys::NasalTimer::timerExpired()
552 {
553     nasal->handleTimer(this);
554     delete this;
555 }