1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
#if defined(_MSC_VER)
// disable warning "'QtConcurrent::BlockSizeManager' : assignment operator could not be generated"
#pragma warning( disable : 4512 )
#endif
#include "JavaScriptParser.h"
#include <QScriptEngine>
#include <QMetaType>
#include "SyntopiaCore/Logging/Logging.h"
#include "SyntopiaCore/Exceptions/Exception.h"
#include "SyntopiaCore/GLEngine/Sphere.h"
#include "Debug.h"
#include "JavaScriptBuilder.h"
using namespace SyntopiaCore::Logging;
using namespace SyntopiaCore::Exceptions;
//Q_DECLARE_METATYPE(StructureSynth::JavaScriptSupport::Vector3)
namespace StructureSynth {
namespace JavaScriptSupport {
namespace {
QScriptValue constructVector3(QScriptContext * context, QScriptEngine *engine)
{
//INFO("constructVector3");
StructureSynth::JavaScriptSupport::Vector3* bar = new StructureSynth::JavaScriptSupport::Vector3();
// initialize from arguments in context, if desired
//QScriptValue v = engine->toScriptValue(bar);
QScriptValue v = engine->newQObject(bar, QScriptEngine::ScriptOwnership);
//INFO("Old X: " + v.property("x").toString());
if (context->argumentCount() == 3) {
v.setProperty("x", QScriptValue(engine,context->argument(0).toNumber()));
v.setProperty("y", QScriptValue(engine,context->argument(1).toNumber()));
v.setProperty("z", QScriptValue(engine,context->argument(2).toNumber()));
}
//INFO("constructVector3 - end");
return v;
}
QScriptValue vector3ToScriptValue(QScriptEngine *engine, const StructureSynth::JavaScriptSupport::Vector3 &s)
{
//INFO("<-toScriptValue: From " + s.toString());
QScriptValue obj = engine->newObject();
/*
Vector3 v;
v.writeX(12);
v.writeY(22);
v.writeZ(32);
obj.setPrototype(engine->newQObject(&v));
*/
obj.setProperty("x", QScriptValue(engine, s.readX()));
obj.setProperty("y", QScriptValue(engine, s.readY()));
obj.setProperty("z", QScriptValue(engine, s.readZ()));
return obj;
}
void vector3FromScriptValue(const QScriptValue &obj, StructureSynth::JavaScriptSupport::Vector3 &s)
{
//INFO("<-fromScriptValue");
s.writeX( obj.property("x").toNumber() );
s.writeY( obj.property("y").toNumber() );
s.writeZ( obj.property("z").toNumber() );
}
QScriptValue addSphereStatic(QScriptContext* context, QScriptEngine* /*engine*/)
{
QScriptValue thisObject = context->thisObject();
QObject* w = thisObject.toQObject();
if (context->argumentCount() == 2) {
Vector3 v = qScriptValueToValue<Vector3>(context->argument(0));
double radius = context->argument(1).toNumber();
//INFO("Got: " + v.toString() + " and " + QString::number(radius));
SyntopiaCore::GLEngine::Object3D* o = new SyntopiaCore::GLEngine::Sphere( v.getObj(), radius);
o->setColor(((World*)w)->getRgb(), ((World*)w)->getAlpha());
((World*)w)->getEngine()->addObject(o);
} else {
WARNING("addSphere expected two arguments..");
}
return QScriptValue();
}
QScriptValue setColorStatic(QScriptContext* context, QScriptEngine* /*engine*/)
{
QScriptValue thisObject = context->thisObject();
QObject* w = thisObject.toQObject();
if (context->argumentCount() == 2) {
Vector3 v = qScriptValueToValue<Vector3>(context->argument(0));
double alpha = context->argument(1).toNumber();
((World*)w)->setColor2(v, alpha);
} else {
WARNING("setColor expected two arguments..");
}
return QScriptValue();
}
}
JavaScriptParser::JavaScriptParser(StructureSynth::GUI::MainWindow* mainWindow, QStatusBar* statusBar)
: mainWindow(mainWindow), statusBar(statusBar) {
}
JavaScriptParser::~JavaScriptParser() {
}
void JavaScriptParser::parse(QString input, QString dir) {
INFO("Initializing JavaScript environment.");
QString fdir = QDir(dir).absolutePath();
INFO("Working directory: " + fdir);
if (dir.isEmpty()) { WARNING("Filenames are relative to the script location, but this script is not saved."); }
QScriptEngine engine;
// Setup the global objects...
Debug debugObject(statusBar);
engine.globalObject().setProperty("Debug", engine.newQObject(&debugObject));
Builder builder(mainWindow, mainWindow->getEngine(), dir);
engine.globalObject().setProperty("Builder", engine.newQObject(&builder));
World world(mainWindow->getEngine());
QScriptValue w = engine.newQObject(&world);
w.setProperty("addSphere", engine.newFunction(addSphereStatic));
w.setProperty("setColor", engine.newFunction(setColorStatic));
engine.globalObject().setProperty("World", w);
Vector3 *v3PrototypeObject = new Vector3();
QScriptValue vProto = engine.newQObject(v3PrototypeObject);
int id = qMetaTypeId<StructureSynth::JavaScriptSupport::Vector3>();
engine.setDefaultPrototype(id, vProto);
QScriptValue vectorCtor = engine.newFunction(constructVector3, vProto);
engine.globalObject().setProperty("Vector3", vectorCtor);
qScriptRegisterMetaType(&engine, vector3ToScriptValue, vector3FromScriptValue, vProto);
// Execute and catch exceptions.
try {
QScriptValue result = engine.evaluate(input);
if (engine.hasUncaughtException()) {
int line = engine.uncaughtExceptionLineNumber();
QString error = QString("Uncaught exception at line %1:%2").arg(line).arg(result.toString());
WARNING(error);
} else {
INFO("Script completed without errors.");
}
} catch (Exception& e) {
WARNING(e.getMessage());
}
}
}
}
|