2006-02-18 13:58:09 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2003-11-25 21:08:36 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include <plib/ul.h>
|
|
|
|
|
|
|
|
#include <simgear/nasal/nasal.h>
|
|
|
|
#include <simgear/props/props.hxx>
|
2003-12-05 01:54:39 +00:00
|
|
|
#include <simgear/math/sg_random.h>
|
2003-11-25 21:08:36 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2003-12-05 01:54:39 +00:00
|
|
|
#include <simgear/misc/interpolator.hxx>
|
2003-11-25 21:08:36 +00:00
|
|
|
#include <simgear/structure/commands.hxx>
|
|
|
|
|
|
|
|
#include <Main/globals.hxx>
|
2003-12-05 01:54:39 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2003-11-25 21:08:36 +00:00
|
|
|
|
|
|
|
#include "NasalSys.hxx"
|
|
|
|
|
|
|
|
// Read and return file contents in a single buffer. Note use of
|
|
|
|
// stat() to get the file size. This is a win32 function, believe it
|
|
|
|
// or not. :) Note the REALLY IMPORTANT use of the "b" flag to fopen.
|
|
|
|
// Text mode brain damage will kill us if we're trying to do bytewise
|
|
|
|
// I/O.
|
|
|
|
static char* readfile(const char* file, int* lenOut)
|
|
|
|
{
|
|
|
|
struct stat data;
|
|
|
|
if(stat(file, &data) != 0) return 0;
|
|
|
|
FILE* f = fopen(file, "rb");
|
|
|
|
if(!f) return 0;
|
|
|
|
char* buf = new char[data.st_size];
|
|
|
|
*lenOut = fread(buf, 1, data.st_size, f);
|
|
|
|
fclose(f);
|
|
|
|
if(*lenOut != data.st_size) {
|
|
|
|
// Shouldn't happen, but warn anyway since it represents a
|
|
|
|
// platform bug and not a typical runtime error (missing file,
|
|
|
|
// etc...)
|
|
|
|
SG_LOG(SG_NASAL, SG_ALERT,
|
|
|
|
"ERROR in Nasal initialization: " <<
|
2003-12-01 14:35:49 +00:00
|
|
|
"short count returned from fread() of " << file <<
|
|
|
|
". Check your C library!");
|
2003-11-25 21:08:36 +00:00
|
|
|
delete[] buf;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
FGNasalSys::FGNasalSys()
|
|
|
|
{
|
|
|
|
_context = 0;
|
|
|
|
_globals = naNil();
|
2003-12-05 01:54:39 +00:00
|
|
|
_gcHash = naNil();
|
|
|
|
_nextGCKey = 0; // Any value will do
|
2003-11-25 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FGNasalSys::~FGNasalSys()
|
|
|
|
{
|
|
|
|
// Nasal doesn't have a "destroy context" API yet. :(
|
|
|
|
// Not a problem for a global subsystem that will never be
|
|
|
|
// destroyed. And the context is actually a global, so no memory
|
|
|
|
// is technically leaked (although the GC pool memory obviously
|
|
|
|
// won't be freed).
|
|
|
|
_context = 0;
|
|
|
|
_globals = naNil();
|
|
|
|
}
|
|
|
|
|
2003-12-01 14:35:49 +00:00
|
|
|
bool FGNasalSys::parseAndRun(const char* sourceCode)
|
|
|
|
{
|
|
|
|
naRef code = parse("FGNasalSys::parseAndRun()", sourceCode,
|
|
|
|
strlen(sourceCode));
|
|
|
|
if(naIsNil(code))
|
|
|
|
return false;
|
|
|
|
|
2005-09-20 21:09:52 +00:00
|
|
|
naCall(_context, code, 0, 0, naNil(), naNil());
|
2003-12-01 14:35:49 +00:00
|
|
|
|
|
|
|
if(!naGetError(_context)) return true;
|
2006-01-27 19:51:25 +00:00
|
|
|
logError(_context);
|
2003-12-01 14:35:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-12-05 01:54:39 +00:00
|
|
|
FGNasalScript* FGNasalSys::parseScript(const char* src, const char* name)
|
|
|
|
{
|
|
|
|
FGNasalScript* script = new FGNasalScript();
|
|
|
|
script->_gcKey = -1; // important, if we delete it on a parse
|
|
|
|
script->_nas = this; // error, don't clobber a real handle!
|
|
|
|
|
|
|
|
char buf[256];
|
|
|
|
if(!name) {
|
2005-06-14 19:57:24 +00:00
|
|
|
sprintf(buf, "FGNasalScript@%p", script);
|
2003-12-05 01:54:39 +00:00
|
|
|
name = buf;
|
|
|
|
}
|
|
|
|
|
2005-04-26 20:57:06 +00:00
|
|
|
script->_code = parse(name, src, strlen(src));
|
2003-12-05 01:54:39 +00:00
|
|
|
if(naIsNil(script->_code)) {
|
|
|
|
delete script;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
script->_gcKey = gcSave(script->_code);
|
|
|
|
return script;
|
|
|
|
}
|
|
|
|
|
2003-11-25 21:08:36 +00:00
|
|
|
// Utility. Sets a named key in a hash by C string, rather than nasal
|
|
|
|
// string object.
|
|
|
|
void FGNasalSys::hashset(naRef hash, const char* key, naRef val)
|
|
|
|
{
|
|
|
|
naRef s = naNewString(_context);
|
|
|
|
naStr_fromdata(s, (char*)key, strlen(key));
|
|
|
|
naHash_set(hash, s, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The get/setprop functions accept a *list* of strings and walk
|
|
|
|
// through the property tree with them to find the appropriate node.
|
|
|
|
// This allows a Nasal object to hold onto a property path and use it
|
|
|
|
// like a node object, e.g. setprop(ObjRoot, "size-parsecs", 2.02). This
|
|
|
|
// is the utility function that walks the property tree.
|
|
|
|
// Future enhancement: support integer arguments to specify array
|
|
|
|
// elements.
|
2005-04-18 19:49:13 +00:00
|
|
|
static SGPropertyNode* findnode(naContext c, naRef* vec, int len)
|
2003-11-25 21:08:36 +00:00
|
|
|
{
|
|
|
|
SGPropertyNode* p = globals->get_props();
|
|
|
|
for(int i=0; i<len; i++) {
|
2005-04-18 19:49:13 +00:00
|
|
|
naRef a = vec[i];
|
2003-11-25 21:08:36 +00:00
|
|
|
if(!naIsString(a)) return 0;
|
|
|
|
p = p->getNode(naStr_data(a));
|
|
|
|
if(p == 0) return 0;
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
// getprop() extension function. Concatenates its string arguments as
|
|
|
|
// property names and returns the value of the specified property. Or
|
|
|
|
// nil if it doesn't exist.
|
2005-04-18 19:49:13 +00:00
|
|
|
static naRef f_getprop(naContext c, naRef me, int argc, naRef* args)
|
2003-11-25 21:08:36 +00:00
|
|
|
{
|
2005-04-18 19:49:13 +00:00
|
|
|
const SGPropertyNode* p = findnode(c, args, argc);
|
2003-11-25 21:08:36 +00:00
|
|
|
if(!p) return naNil();
|
|
|
|
|
|
|
|
switch(p->getType()) {
|
|
|
|
case SGPropertyNode::BOOL: case SGPropertyNode::INT:
|
|
|
|
case SGPropertyNode::LONG: case SGPropertyNode::FLOAT:
|
|
|
|
case SGPropertyNode::DOUBLE:
|
|
|
|
return naNum(p->getDoubleValue());
|
|
|
|
|
|
|
|
case SGPropertyNode::STRING:
|
2004-03-24 19:06:54 +00:00
|
|
|
case SGPropertyNode::UNSPECIFIED:
|
2003-11-25 21:08:36 +00:00
|
|
|
{
|
|
|
|
naRef nastr = naNewString(c);
|
|
|
|
const char* val = p->getStringValue();
|
|
|
|
naStr_fromdata(nastr, (char*)val, strlen(val));
|
|
|
|
return nastr;
|
|
|
|
}
|
2004-03-24 19:06:54 +00:00
|
|
|
case SGPropertyNode::ALIAS: // <--- FIXME, recurse?
|
2003-11-25 21:08:36 +00:00
|
|
|
default:
|
|
|
|
return naNil();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// setprop() extension function. Concatenates its string arguments as
|
|
|
|
// property names and sets the value of the specified property to the
|
|
|
|
// final argument.
|
2005-04-18 19:49:13 +00:00
|
|
|
static naRef f_setprop(naContext c, naRef me, int argc, naRef* args)
|
2003-11-25 21:08:36 +00:00
|
|
|
{
|
|
|
|
#define BUFLEN 1024
|
|
|
|
char buf[BUFLEN + 1];
|
|
|
|
buf[BUFLEN] = 0;
|
|
|
|
char* p = buf;
|
|
|
|
int buflen = BUFLEN;
|
|
|
|
for(int i=0; i<argc-1; i++) {
|
2005-04-18 19:49:13 +00:00
|
|
|
naRef s = naStringValue(c, args[i]);
|
2003-11-25 21:08:36 +00:00
|
|
|
if(naIsNil(s)) return naNil();
|
|
|
|
strncpy(p, naStr_data(s), buflen);
|
|
|
|
p += naStr_len(s);
|
|
|
|
buflen = BUFLEN - (p - buf);
|
|
|
|
if(i < (argc-2) && buflen > 0) {
|
|
|
|
*p++ = '/';
|
|
|
|
buflen--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SGPropertyNode* props = globals->get_props();
|
2005-04-18 19:49:13 +00:00
|
|
|
naRef val = args[argc-1];
|
2003-11-25 21:08:36 +00:00
|
|
|
if(naIsString(val)) props->setStringValue(buf, naStr_data(val));
|
|
|
|
else props->setDoubleValue(buf, naNumValue(val).num);
|
|
|
|
return naNil();
|
|
|
|
#undef BUFLEN
|
|
|
|
}
|
|
|
|
|
|
|
|
// print() extension function. Concatenates and prints its arguments
|
|
|
|
// to the FlightGear log. Uses the highest log level (SG_ALERT), to
|
|
|
|
// make sure it appears. Is there better way to do this?
|
2005-04-18 19:49:13 +00:00
|
|
|
static naRef f_print(naContext c, naRef me, int argc, naRef* args)
|
2003-11-25 21:08:36 +00:00
|
|
|
{
|
|
|
|
#define BUFLEN 1024
|
|
|
|
char buf[BUFLEN + 1];
|
|
|
|
buf[BUFLEN] = 0; // extra nul to handle strncpy brain damage
|
2004-05-15 21:40:58 +00:00
|
|
|
buf[0] = 0; // Zero-length in case there are no arguments
|
2003-11-25 21:08:36 +00:00
|
|
|
char* p = buf;
|
|
|
|
int buflen = BUFLEN;
|
2005-04-18 19:49:13 +00:00
|
|
|
int n = argc;
|
2003-11-25 21:08:36 +00:00
|
|
|
for(int i=0; i<n; i++) {
|
2005-04-18 19:49:13 +00:00
|
|
|
naRef s = naStringValue(c, args[i]);
|
2003-11-25 21:08:36 +00:00
|
|
|
if(naIsNil(s)) continue;
|
|
|
|
strncpy(p, naStr_data(s), buflen);
|
|
|
|
p += naStr_len(s);
|
|
|
|
buflen = BUFLEN - (p - buf);
|
|
|
|
if(buflen <= 0) break;
|
|
|
|
}
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, buf);
|
|
|
|
return naNil();
|
|
|
|
#undef BUFLEN
|
|
|
|
}
|
|
|
|
|
|
|
|
// fgcommand() extension function. Executes a named command via the
|
|
|
|
// FlightGear command manager. Takes a single property node name as
|
|
|
|
// an argument.
|
2005-04-18 19:49:13 +00:00
|
|
|
static naRef f_fgcommand(naContext c, naRef me, int argc, naRef* args)
|
2003-11-25 21:08:36 +00:00
|
|
|
{
|
2005-04-18 19:49:13 +00:00
|
|
|
if(argc < 2 || !naIsString(args[0]) || !naIsGhost(args[1]))
|
|
|
|
naRuntimeError(c, "bad arguments to fgcommand()");
|
|
|
|
naRef cmd = args[0], props = args[1];
|
2003-12-01 14:35:49 +00:00
|
|
|
SGPropertyNode_ptr* node = (SGPropertyNode_ptr*)naGhost_ptr(props);
|
|
|
|
globals->get_commands()->execute(naStr_data(cmd), *node);
|
2003-11-25 21:08:36 +00:00
|
|
|
return naNil();
|
2003-12-01 14:35:49 +00:00
|
|
|
|
2003-11-25 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// settimer(func, dt, simtime) extension function. Falls through to
|
|
|
|
// FGNasalSys::setTimer(). See there for docs.
|
2005-04-18 19:49:13 +00:00
|
|
|
static naRef f_settimer(naContext c, naRef me, int argc, naRef* args)
|
2003-11-25 21:08:36 +00:00
|
|
|
{
|
|
|
|
FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal");
|
2005-04-18 19:49:13 +00:00
|
|
|
nasal->setTimer(argc, args);
|
2003-11-25 21:08:36 +00:00
|
|
|
return naNil();
|
|
|
|
}
|
|
|
|
|
2006-02-28 14:55:37 +00:00
|
|
|
// setlistener(func, property, bool) extension function. Falls through to
|
2005-12-16 19:11:03 +00:00
|
|
|
// FGNasalSys::setListener(). See there for docs.
|
|
|
|
static naRef f_setlistener(naContext c, naRef me, int argc, naRef* args)
|
|
|
|
{
|
|
|
|
FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal");
|
2006-02-28 14:55:37 +00:00
|
|
|
return nasal->setListener(argc, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
// removelistener(int) extension function. Falls through to
|
|
|
|
// FGNasalSys::removeListener(). See there for docs.
|
|
|
|
static naRef f_removelistener(naContext c, naRef me, int argc, naRef* args)
|
|
|
|
{
|
|
|
|
FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal");
|
|
|
|
return nasal->removeListener(argc, args);
|
2005-12-16 19:11:03 +00:00
|
|
|
}
|
|
|
|
|
2003-12-01 14:35:49 +00:00
|
|
|
// Returns a ghost handle to the argument to the currently executing
|
|
|
|
// command
|
2005-04-18 19:49:13 +00:00
|
|
|
static naRef f_cmdarg(naContext c, naRef me, int argc, naRef* args)
|
2003-12-01 14:35:49 +00:00
|
|
|
{
|
|
|
|
FGNasalSys* nasal = (FGNasalSys*)globals->get_subsystem("nasal");
|
|
|
|
return nasal->cmdArgGhost();
|
|
|
|
}
|
|
|
|
|
2003-12-05 01:54:39 +00:00
|
|
|
// Sets up a property interpolation. The first argument is either a
|
|
|
|
// ghost (SGPropertyNode_ptr*) or a string (global property path) to
|
|
|
|
// interpolate. The second argument is a vector of pairs of
|
|
|
|
// value/delta numbers.
|
2005-04-18 19:49:13 +00:00
|
|
|
static naRef f_interpolate(naContext c, naRef me, int argc, naRef* args)
|
2003-12-05 01:54:39 +00:00
|
|
|
{
|
|
|
|
SGPropertyNode* node;
|
2005-04-18 19:49:13 +00:00
|
|
|
naRef prop = argc > 0 ? args[0] : naNil();
|
2003-12-05 01:54:39 +00:00
|
|
|
if(naIsString(prop)) node = fgGetNode(naStr_data(prop), true);
|
|
|
|
else if(naIsGhost(prop)) node = *(SGPropertyNode_ptr*)naGhost_ptr(prop);
|
|
|
|
else return naNil();
|
|
|
|
|
2005-04-18 19:49:13 +00:00
|
|
|
naRef curve = argc > 1 ? args[1] : naNil();
|
2003-12-05 01:54:39 +00:00
|
|
|
if(!naIsVector(curve)) return naNil();
|
|
|
|
int nPoints = naVec_size(curve) / 2;
|
|
|
|
double* values = new double[nPoints];
|
|
|
|
double* deltas = new double[nPoints];
|
|
|
|
for(int i=0; i<nPoints; i++) {
|
|
|
|
values[i] = naNumValue(naVec_get(curve, 2*i)).num;
|
|
|
|
deltas[i] = naNumValue(naVec_get(curve, 2*i+1)).num;
|
|
|
|
}
|
|
|
|
|
|
|
|
((SGInterpolator*)globals->get_subsystem("interpolator"))
|
|
|
|
->interpolate(node, nPoints, values, deltas);
|
2004-11-15 18:15:33 +00:00
|
|
|
|
|
|
|
return naNil();
|
2003-12-05 01:54:39 +00:00
|
|
|
}
|
|
|
|
|
2005-04-18 19:49:13 +00:00
|
|
|
// This is a better RNG than the one in the default Nasal distribution
|
|
|
|
// (which is based on the C library rand() implementation). It will
|
|
|
|
// override.
|
|
|
|
static naRef f_rand(naContext c, naRef me, int argc, naRef* args)
|
2003-12-05 01:54:39 +00:00
|
|
|
{
|
|
|
|
return naNum(sg_random());
|
|
|
|
}
|
|
|
|
|
2006-01-09 15:29:24 +00:00
|
|
|
static naRef f_srand(naContext c, naRef me, int argc, naRef* args)
|
|
|
|
{
|
|
|
|
sg_srandom_time();
|
|
|
|
return naNum(0);
|
|
|
|
}
|
|
|
|
|
2006-01-09 03:48:14 +00:00
|
|
|
// Return an array listing of all files in a directory
|
|
|
|
static naRef f_directory(naContext c, naRef me, int argc, naRef* args)
|
|
|
|
{
|
|
|
|
if(argc != 1 || !naIsString(args[0]))
|
|
|
|
naRuntimeError(c, "bad arguments to directory()");
|
|
|
|
naRef ldir = args[0];
|
|
|
|
ulDir* dir = ulOpenDir(naStr_data(args[0]));
|
|
|
|
if(!dir) return naNil();
|
|
|
|
naRef result = naNewVector(c);
|
|
|
|
ulDirEnt* dent;
|
|
|
|
while((dent = ulReadDir(dir)))
|
|
|
|
naVec_append(result, naStr_fromdata(naNewString(c), dent->d_name,
|
|
|
|
strlen(dent->d_name)));
|
|
|
|
ulCloseDir(dir);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2003-11-25 21:08:36 +00:00
|
|
|
// Table of extension functions. Terminate with zeros.
|
|
|
|
static struct { char* name; naCFunction func; } funcs[] = {
|
|
|
|
{ "getprop", f_getprop },
|
|
|
|
{ "setprop", f_setprop },
|
|
|
|
{ "print", f_print },
|
2003-12-01 14:35:49 +00:00
|
|
|
{ "_fgcommand", f_fgcommand },
|
2003-11-25 21:08:36 +00:00
|
|
|
{ "settimer", f_settimer },
|
2005-12-16 19:11:03 +00:00
|
|
|
{ "_setlistener", f_setlistener },
|
2006-02-28 14:55:37 +00:00
|
|
|
{ "removelistener", f_removelistener },
|
2003-12-01 14:35:49 +00:00
|
|
|
{ "_cmdarg", f_cmdarg },
|
2003-12-05 01:54:39 +00:00
|
|
|
{ "_interpolate", f_interpolate },
|
|
|
|
{ "rand", f_rand },
|
2006-01-09 15:29:24 +00:00
|
|
|
{ "srand", f_srand },
|
2006-01-09 03:48:14 +00:00
|
|
|
{ "directory", f_directory },
|
2003-11-25 21:08:36 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
2003-12-01 14:35:49 +00:00
|
|
|
naRef FGNasalSys::cmdArgGhost()
|
|
|
|
{
|
|
|
|
return propNodeGhost(_cmdArg);
|
|
|
|
}
|
|
|
|
|
2003-11-25 21:08:36 +00:00
|
|
|
void FGNasalSys::init()
|
|
|
|
{
|
2003-12-01 14:35:49 +00:00
|
|
|
int i;
|
|
|
|
|
2003-11-25 21:08:36 +00:00
|
|
|
_context = naNewContext();
|
|
|
|
|
|
|
|
// Start with globals. Add it to itself as a recursive
|
|
|
|
// sub-reference under the name "globals". This gives client-code
|
|
|
|
// write access to the namespace if someone wants to do something
|
|
|
|
// fancy.
|
|
|
|
_globals = naStdLib(_context);
|
|
|
|
naSave(_context, _globals);
|
|
|
|
hashset(_globals, "globals", _globals);
|
|
|
|
|
|
|
|
// Add in the math library under "math"
|
|
|
|
hashset(_globals, "math", naMathLib(_context));
|
|
|
|
|
2006-03-15 18:10:29 +00:00
|
|
|
// Add in the IO library. Disabled currently until after the
|
|
|
|
// 0.9.10 release.
|
|
|
|
// hashset(_globals, "io", naIOLib(_context));
|
|
|
|
|
2003-11-25 21:08:36 +00:00
|
|
|
// Add our custom extension functions:
|
2003-12-01 14:35:49 +00:00
|
|
|
for(i=0; funcs[i].name; i++)
|
2003-11-25 21:08:36 +00:00
|
|
|
hashset(_globals, funcs[i].name,
|
|
|
|
naNewFunc(_context, naNewCCode(_context, funcs[i].func)));
|
|
|
|
|
2003-12-01 14:35:49 +00:00
|
|
|
// And our SGPropertyNode wrapper
|
|
|
|
hashset(_globals, "props", genPropsModule());
|
|
|
|
|
2003-12-05 01:54:39 +00:00
|
|
|
// Make a "__gcsave" hash to hold the naRef objects which get
|
|
|
|
// passed to handles outside the interpreter (to protect them from
|
|
|
|
// begin garbage-collected).
|
|
|
|
_gcHash = naNewHash(_context);
|
|
|
|
hashset(_globals, "__gcsave", _gcHash);
|
2003-11-25 21:08:36 +00:00
|
|
|
|
|
|
|
// Now load the various source files in the Nasal directory
|
|
|
|
SGPath p(globals->get_fg_root());
|
|
|
|
p.append("Nasal");
|
|
|
|
ulDirEnt* dent;
|
|
|
|
ulDir* dir = ulOpenDir(p.c_str());
|
|
|
|
while(dir && (dent = ulReadDir(dir)) != 0) {
|
|
|
|
SGPath fullpath(p);
|
|
|
|
fullpath.append(dent->d_name);
|
|
|
|
SGPath file(dent->d_name);
|
|
|
|
if(file.extension() != "nas") continue;
|
2005-06-14 19:57:24 +00:00
|
|
|
loadModule(fullpath, file.base().c_str());
|
2003-11-25 21:08:36 +00:00
|
|
|
}
|
2006-03-13 19:47:22 +00:00
|
|
|
ulCloseDir(dir);
|
2003-12-01 14:35:49 +00:00
|
|
|
|
|
|
|
// Pull scripts out of the property tree, too
|
|
|
|
loadPropertyScripts();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loads the scripts found under /nasal in the global tree
|
|
|
|
void FGNasalSys::loadPropertyScripts()
|
|
|
|
{
|
|
|
|
SGPropertyNode* nasal = globals->get_props()->getNode("nasal");
|
|
|
|
if(!nasal) return;
|
|
|
|
|
|
|
|
for(int i=0; i<nasal->nChildren(); i++) {
|
|
|
|
SGPropertyNode* n = nasal->getChild(i);
|
|
|
|
|
|
|
|
const char* module = n->getName();
|
|
|
|
if(n->hasChild("module"))
|
|
|
|
module = n->getStringValue("module");
|
|
|
|
|
2005-03-16 21:36:55 +00:00
|
|
|
// allow multiple files to be specified within in a single
|
|
|
|
// Nasal module tag
|
|
|
|
int j = 0;
|
|
|
|
SGPropertyNode *fn;
|
|
|
|
bool file_specified = false;
|
|
|
|
while ( (fn = n->getChild("file", j)) != NULL ) {
|
|
|
|
file_specified = true;
|
|
|
|
const char* file = fn->getStringValue();
|
|
|
|
SGPath p(globals->get_fg_root());
|
|
|
|
p.append(file);
|
2005-06-14 19:57:24 +00:00
|
|
|
loadModule(p, module);
|
2005-03-16 21:36:55 +00:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Old code which only allowed a single file to be specified per module
|
|
|
|
/*
|
2003-12-01 14:35:49 +00:00
|
|
|
const char* file = n->getStringValue("file");
|
|
|
|
if(!n->hasChild("file")) file = 0; // Hrm...
|
|
|
|
if(file) {
|
|
|
|
SGPath p(globals->get_fg_root());
|
|
|
|
p.append(file);
|
2005-06-14 19:57:24 +00:00
|
|
|
loadModule(p, module);
|
2003-12-01 14:35:49 +00:00
|
|
|
}
|
2005-03-16 21:36:55 +00:00
|
|
|
*/
|
2003-12-01 14:35:49 +00:00
|
|
|
|
|
|
|
const char* src = n->getStringValue("script");
|
|
|
|
if(!n->hasChild("script")) src = 0; // Hrm...
|
|
|
|
if(src)
|
2005-06-19 17:09:03 +00:00
|
|
|
createModule(module, n->getPath(), src, strlen(src));
|
2003-12-01 14:35:49 +00:00
|
|
|
|
2005-03-16 21:36:55 +00:00
|
|
|
if(!file_specified && !src)
|
2003-12-01 14:35:49 +00:00
|
|
|
SG_LOG(SG_NASAL, SG_ALERT, "Nasal error: " <<
|
|
|
|
"no <file> or <script> defined in " <<
|
|
|
|
"/nasal/" << module);
|
|
|
|
}
|
2003-11-25 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Logs a runtime error, with stack trace, to the FlightGear log stream
|
2006-01-27 19:51:25 +00:00
|
|
|
void FGNasalSys::logError(naContext context)
|
2003-11-25 21:08:36 +00:00
|
|
|
{
|
|
|
|
SG_LOG(SG_NASAL, SG_ALERT,
|
2006-01-27 19:51:25 +00:00
|
|
|
"Nasal runtime error: " << naGetError(context));
|
2003-11-25 21:08:36 +00:00
|
|
|
SG_LOG(SG_NASAL, SG_ALERT,
|
2006-01-27 19:51:25 +00:00
|
|
|
" at " << naStr_data(naGetSourceFile(context, 0)) <<
|
|
|
|
", line " << naGetLine(context, 0));
|
|
|
|
for(int i=1; i<naStackDepth(context); i++)
|
2003-11-25 21:08:36 +00:00
|
|
|
SG_LOG(SG_NASAL, SG_ALERT,
|
2006-01-27 19:51:25 +00:00
|
|
|
" called from: " << naStr_data(naGetSourceFile(context, i)) <<
|
|
|
|
", line " << naGetLine(context, i));
|
2003-11-25 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reads a script file, executes it, and places the resulting
|
|
|
|
// namespace into the global namespace under the specified module
|
|
|
|
// name.
|
2005-06-14 19:57:24 +00:00
|
|
|
void FGNasalSys::loadModule(SGPath file, const char* module)
|
2003-11-25 21:08:36 +00:00
|
|
|
{
|
|
|
|
int len = 0;
|
|
|
|
char* buf = readfile(file.c_str(), &len);
|
2003-12-01 14:35:49 +00:00
|
|
|
if(!buf) {
|
|
|
|
SG_LOG(SG_NASAL, SG_ALERT,
|
|
|
|
"Nasal error: could not read script file " << file.c_str()
|
|
|
|
<< " into module " << module);
|
|
|
|
return;
|
|
|
|
}
|
2003-11-25 21:08:36 +00:00
|
|
|
|
2005-06-19 17:09:03 +00:00
|
|
|
createModule(module, file.c_str(), buf, len);
|
2003-11-25 21:08:36 +00:00
|
|
|
delete[] buf;
|
2003-12-01 14:35:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse and run. Save the local variables namespace, as it will
|
|
|
|
// become a sub-object of globals.
|
2005-06-19 17:09:03 +00:00
|
|
|
void FGNasalSys::createModule(const char* moduleName, const char* fileName,
|
|
|
|
const char* src, int len)
|
2003-12-01 14:35:49 +00:00
|
|
|
{
|
|
|
|
naRef code = parse(fileName, src, len);
|
2003-11-25 21:08:36 +00:00
|
|
|
if(naIsNil(code))
|
|
|
|
return;
|
|
|
|
|
2003-12-01 14:35:49 +00:00
|
|
|
// See if we already have a module hash to use. This allows the
|
|
|
|
// user to, for example, add functions to the built-in math
|
|
|
|
// module. Make a new one if necessary.
|
|
|
|
naRef locals;
|
|
|
|
naRef modname = naNewString(_context);
|
|
|
|
naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
|
|
|
|
if(!naHash_get(_globals, modname, &locals))
|
|
|
|
locals = naNewHash(_context);
|
|
|
|
|
2005-09-20 21:09:52 +00:00
|
|
|
naCall(_context, code, 0, 0, naNil(), locals);
|
2003-11-25 21:08:36 +00:00
|
|
|
if(naGetError(_context)) {
|
2006-01-27 19:51:25 +00:00
|
|
|
logError(_context);
|
2003-11-25 21:08:36 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-12-01 14:35:49 +00:00
|
|
|
hashset(_globals, moduleName, locals);
|
2003-11-25 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
2006-03-08 10:35:20 +00:00
|
|
|
void FGNasalSys::deleteModule(const char* moduleName)
|
|
|
|
{
|
|
|
|
naRef modname = naNewString(_context);
|
|
|
|
naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
|
|
|
|
naModLock();
|
|
|
|
naHash_delete(_globals, modname);
|
|
|
|
naModUnlock();
|
|
|
|
}
|
|
|
|
|
2003-11-25 21:08:36 +00:00
|
|
|
naRef FGNasalSys::parse(const char* filename, const char* buf, int len)
|
|
|
|
{
|
|
|
|
int errLine = -1;
|
|
|
|
naRef srcfile = naNewString(_context);
|
|
|
|
naStr_fromdata(srcfile, (char*)filename, strlen(filename));
|
|
|
|
naRef code = naParseCode(_context, srcfile, 1, (char*)buf, len, &errLine);
|
|
|
|
if(naIsNil(code)) {
|
|
|
|
SG_LOG(SG_NASAL, SG_ALERT,
|
|
|
|
"Nasal parse error: " << naGetError(_context) <<
|
|
|
|
" in "<< filename <<", line " << errLine);
|
|
|
|
return naNil();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bind to the global namespace before returning
|
|
|
|
return naBindFunction(_context, code, _globals);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FGNasalSys::handleCommand(const SGPropertyNode* arg)
|
|
|
|
{
|
|
|
|
const char* nasal = arg->getStringValue("script");
|
2005-06-19 17:09:03 +00:00
|
|
|
const char* moduleName = arg->getStringValue("module");
|
2005-06-20 18:53:00 +00:00
|
|
|
naRef code = parse(arg->getPath(true), nasal, strlen(nasal));
|
2003-11-25 21:08:36 +00:00
|
|
|
if(naIsNil(code)) return false;
|
2005-06-19 17:09:03 +00:00
|
|
|
|
2006-03-08 16:06:32 +00:00
|
|
|
naContext c = naNewContext();
|
2005-06-19 17:09:03 +00:00
|
|
|
naRef locals = naNil();
|
2006-03-08 16:06:32 +00:00
|
|
|
if(moduleName[0]) {
|
|
|
|
naRef modname = naNewString(c);
|
2005-06-19 17:09:03 +00:00
|
|
|
naStr_fromdata(modname, (char*)moduleName, strlen(moduleName));
|
|
|
|
if(!naHash_get(_globals, modname, &locals))
|
2006-03-08 16:06:32 +00:00
|
|
|
locals = naNewHash(c);
|
2005-06-19 17:09:03 +00:00
|
|
|
}
|
2003-12-01 14:35:49 +00:00
|
|
|
// Cache the command argument for inspection via cmdarg(). For
|
|
|
|
// performance reasons, we won't bother with it if the invoked
|
|
|
|
// code doesn't need it.
|
|
|
|
_cmdArg = (SGPropertyNode*)arg;
|
2003-11-25 21:08:36 +00:00
|
|
|
|
|
|
|
// Call it!
|
2006-03-08 16:06:32 +00:00
|
|
|
naModUnlock();
|
|
|
|
naRef result = naCall(c, code, 0, 0, naNil(), locals);
|
|
|
|
naModLock();
|
|
|
|
bool error = naGetError(c);
|
|
|
|
if(error)
|
|
|
|
logError(c);
|
|
|
|
|
|
|
|
naFreeContext(c);
|
|
|
|
return !error;
|
2003-11-25 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// settimer(func, dt, simtime) extension function. The first argument
|
|
|
|
// is a Nasal function to call, the second is a delta time (from now),
|
|
|
|
// in seconds. The third, if present, is a boolean value indicating
|
2005-11-09 20:34:46 +00:00
|
|
|
// that "real world" time (rather than simulator time) is to be used.
|
2003-11-25 21:08:36 +00:00
|
|
|
//
|
|
|
|
// Implementation note: the FGTimer objects don't live inside the
|
|
|
|
// garbage collector, so the Nasal handler functions have to be
|
|
|
|
// "saved" somehow lest they be inadvertently cleaned. In this case,
|
2003-12-05 01:54:39 +00:00
|
|
|
// they are inserted into a globals.__gcsave hash and removed on
|
2003-11-25 21:08:36 +00:00
|
|
|
// expiration.
|
2005-04-18 19:49:13 +00:00
|
|
|
void FGNasalSys::setTimer(int argc, naRef* args)
|
2003-11-25 21:08:36 +00:00
|
|
|
{
|
|
|
|
// Extract the handler, delta, and simtime arguments:
|
2005-04-18 19:49:13 +00:00
|
|
|
naRef handler = argc > 0 ? args[0] : naNil();
|
2003-11-25 21:08:36 +00:00
|
|
|
if(!(naIsCode(handler) || naIsCCode(handler) || naIsFunc(handler)))
|
|
|
|
return;
|
|
|
|
|
2005-04-18 19:49:13 +00:00
|
|
|
naRef delta = argc > 1 ? args[1] : naNil();
|
2003-11-25 21:08:36 +00:00
|
|
|
if(naIsNil(delta)) return;
|
2006-02-28 14:55:37 +00:00
|
|
|
|
2005-11-09 20:34:46 +00:00
|
|
|
bool simtime = (argc > 2 && naTrue(args[2])) ? false : true;
|
2003-11-25 21:08:36 +00:00
|
|
|
|
|
|
|
// Generate and register a C++ timer handler
|
|
|
|
NasalTimer* t = new NasalTimer;
|
|
|
|
t->handler = handler;
|
2003-12-05 01:54:39 +00:00
|
|
|
t->gcKey = gcSave(handler);
|
2003-11-25 21:08:36 +00:00
|
|
|
t->nasal = this;
|
|
|
|
|
|
|
|
globals->get_event_mgr()->addEvent("NasalTimer",
|
|
|
|
t, &NasalTimer::timerExpired,
|
|
|
|
delta.num, simtime);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FGNasalSys::handleTimer(NasalTimer* t)
|
|
|
|
{
|
2005-09-20 21:09:52 +00:00
|
|
|
naCall(_context, t->handler, 0, 0, naNil(), naNil());
|
2004-03-24 18:37:58 +00:00
|
|
|
if(naGetError(_context))
|
2006-01-27 19:51:25 +00:00
|
|
|
logError(_context);
|
2003-12-05 01:54:39 +00:00
|
|
|
gcRelease(t->gcKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
int FGNasalSys::gcSave(naRef r)
|
|
|
|
{
|
|
|
|
int key = _nextGCKey++;
|
|
|
|
naHash_set(_gcHash, naNum(key), r);
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FGNasalSys::gcRelease(int key)
|
|
|
|
{
|
|
|
|
naHash_delete(_gcHash, naNum(key));
|
2003-11-25 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FGNasalSys::NasalTimer::timerExpired()
|
|
|
|
{
|
|
|
|
nasal->handleTimer(this);
|
|
|
|
delete this;
|
|
|
|
}
|
2005-12-16 19:11:03 +00:00
|
|
|
|
2006-02-28 14:55:37 +00:00
|
|
|
int FGNasalSys::_listenerId = 0;
|
|
|
|
|
|
|
|
// setlistener(property, func, bool) extension function. The first argument
|
2005-12-16 19:11:03 +00:00
|
|
|
// is either a ghost (SGPropertyNode_ptr*) or a string (global property
|
2006-02-28 14:55:37 +00:00
|
|
|
// path), the second is a Nasal function, the optional third one a bool.
|
|
|
|
// If the bool is true, then the listener is executed initially. The
|
|
|
|
// setlistener() function returns a unique id number, that can be used
|
|
|
|
// as argument to the removelistener() function.
|
|
|
|
naRef FGNasalSys::setListener(int argc, naRef* args)
|
2005-12-16 19:11:03 +00:00
|
|
|
{
|
2006-02-28 14:55:37 +00:00
|
|
|
SGPropertyNode_ptr node;
|
2005-12-16 19:11:03 +00:00
|
|
|
naRef prop = argc > 0 ? args[0] : naNil();
|
|
|
|
if(naIsString(prop)) node = fgGetNode(naStr_data(prop), true);
|
|
|
|
else if(naIsGhost(prop)) node = *(SGPropertyNode_ptr*)naGhost_ptr(prop);
|
2006-02-28 14:55:37 +00:00
|
|
|
else return naNil();
|
2005-12-16 19:11:03 +00:00
|
|
|
|
|
|
|
naRef handler = argc > 1 ? args[1] : naNil();
|
|
|
|
if(!(naIsCode(handler) || naIsCCode(handler) || naIsFunc(handler)))
|
2006-02-28 14:55:37 +00:00
|
|
|
return naNil();
|
2005-12-16 19:11:03 +00:00
|
|
|
|
2006-01-30 12:29:58 +00:00
|
|
|
bool initial = argc > 2 && naTrue(args[2]);
|
2006-02-28 14:55:37 +00:00
|
|
|
|
|
|
|
FGNasalListener *nl = new FGNasalListener(node, handler, this,
|
|
|
|
gcSave(handler));
|
|
|
|
node->addChangeListener(nl, initial);
|
2006-03-02 10:41:48 +00:00
|
|
|
|
|
|
|
_listener[_listenerId] = nl;
|
2006-02-28 14:55:37 +00:00
|
|
|
return naNum(_listenerId++);
|
|
|
|
}
|
|
|
|
|
|
|
|
// removelistener(int) extension function. The argument is the id of
|
|
|
|
// a listener as returned by the setlistener() function.
|
|
|
|
naRef FGNasalSys::removeListener(int argc, naRef* args)
|
|
|
|
{
|
|
|
|
naRef id = argc > 0 ? args[0] : naNil();
|
|
|
|
if(!naIsNum(id))
|
|
|
|
return naNil();
|
|
|
|
|
|
|
|
int i = int(id.num);
|
|
|
|
if (_listener.find(i) == _listener.end())
|
|
|
|
return naNil();
|
|
|
|
|
|
|
|
FGNasalListener *nl = _listener[i];
|
|
|
|
nl->_node->removeChangeListener(nl);
|
|
|
|
_listener.erase(i);
|
|
|
|
delete nl;
|
2006-03-02 10:41:48 +00:00
|
|
|
return naNum(_listener.size());
|
2005-12-16 19:11:03 +00:00
|
|
|
}
|
|
|
|
|
2006-03-09 09:04:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
// FGNasalModelData class. If sgLoad3DModel() is called with a pointer to
|
2006-03-09 11:05:32 +00:00
|
|
|
// such a class, then it lets modelLoaded() run the <load> script, and the
|
|
|
|
// destructor the <unload> script. The latter happens when the model branch
|
|
|
|
// is removed from the scene graph.
|
2006-03-09 09:04:03 +00:00
|
|
|
|
|
|
|
void FGNasalModelData::modelLoaded(const string& path, SGPropertyNode *prop,
|
|
|
|
ssgBranch *)
|
|
|
|
{
|
|
|
|
SGPropertyNode *n = prop->getNode("nasal"), *load;
|
|
|
|
if (!n)
|
|
|
|
return;
|
|
|
|
|
|
|
|
load = n->getNode("load");
|
|
|
|
_unload = n->getNode("unload");
|
|
|
|
if (!load && !_unload)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_module = path;
|
|
|
|
const char *s = load ? load->getStringValue() : "";
|
|
|
|
FGNasalSys *nas = (FGNasalSys *)globals->get_subsystem("nasal");
|
|
|
|
nas->createModule(_module.c_str(), _module.c_str(), s, strlen(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
FGNasalModelData::~FGNasalModelData()
|
|
|
|
{
|
|
|
|
if (_module.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
FGNasalSys *nas = (FGNasalSys *)globals->get_subsystem("nasal");
|
2006-03-09 17:32:24 +00:00
|
|
|
if (!nas) {
|
|
|
|
SG_LOG(SG_NASAL, SG_ALERT, "Trying to run an <unload> script "
|
|
|
|
"without Nasal subsystem present.");
|
2006-03-09 13:30:28 +00:00
|
|
|
return;
|
2006-03-09 17:32:24 +00:00
|
|
|
}
|
2006-03-09 13:30:28 +00:00
|
|
|
|
2006-03-09 09:04:03 +00:00
|
|
|
if (_unload) {
|
|
|
|
const char *s = _unload->getStringValue();
|
|
|
|
nas->createModule(_module.c_str(), _module.c_str(), s, strlen(s));
|
|
|
|
}
|
|
|
|
nas->deleteModule(_module.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
|