// NasalCanvas.cxx -- expose Canvas classes to Nasal // // Written by James Turner, started 2012. // // Copyright (C) 2012 James Turner // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "NasalCanvas.hxx" #include #include #include #include
#include #include #include #include #include #include #include #include #include #include #include extern naRef propNodeGhostCreate(naContext c, SGPropertyNode* n); namespace sc = simgear::canvas; template naRef elementGetNode(naContext c, Element& element) { return propNodeGhostCreate(c, element.getProps()); } typedef nasal::Ghost NasalEvent; typedef nasal::Ghost NasalMouseEvent; typedef nasal::Ghost NasalCanvas; typedef nasal::Ghost NasalElement; typedef nasal::Ghost NasalGroup; typedef nasal::Ghost NasalText; typedef nasal::Ghost NasalWindow; naRef to_nasal_helper(naContext c, const osg::BoundingBox& bb) { std::vector bb_vec(4); bb_vec[0] = bb._min.x(); bb_vec[1] = bb._min.y(); bb_vec[2] = bb._max.x(); bb_vec[3] = bb._max.y(); return nasal::to_nasal(c, bb_vec); } SGPropertyNode* from_nasal_helper(naContext c, naRef ref, SGPropertyNode**) { SGPropertyNode* props = ghostToPropNode(ref); if( !props ) naRuntimeError(c, "Not a SGPropertyNode ghost."); return props; } CanvasMgr& requireCanvasMgr(naContext c) { CanvasMgr* canvas_mgr = static_cast(globals->get_subsystem("Canvas")); if( !canvas_mgr ) naRuntimeError(c, "Failed to get Canvas subsystem"); return *canvas_mgr; } GUIMgr& requireGUIMgr(naContext c) { GUIMgr* mgr = static_cast(globals->get_subsystem("CanvasGUI")); if( !mgr ) naRuntimeError(c, "Failed to get CanvasGUI subsystem"); return *mgr; } /** * Create new Canvas and get ghost for it. */ static naRef f_createCanvas(const nasal::CallContext& ctx) { return NasalCanvas::create(ctx.c, requireCanvasMgr(ctx.c).createCanvas()); } /** * Create new Window and get ghost for it. */ static naRef f_createWindow(const nasal::CallContext& ctx) { return NasalWindow::create ( ctx.c, requireGUIMgr(ctx.c).createWindow( ctx.getArg(0) ) ); } /** * Get ghost for existing Canvas. */ static naRef f_getCanvas(naContext c, naRef me, int argc, naRef* args) { nasal::CallContext ctx(c, argc, args); SGPropertyNode& props = *ctx.requireArg(0); CanvasMgr& canvas_mgr = requireCanvasMgr(c); sc::CanvasPtr canvas; if( canvas_mgr.getPropertyRoot() == props.getParent() ) { // get a canvas specified by its root node canvas = canvas_mgr.getCanvas( props.getIndex() ); if( !canvas || canvas->getProps() != &props ) return naNil(); } else { // get a canvas by name if( props.hasValue("name") ) canvas = canvas_mgr.getCanvas( props.getStringValue("name") ); else if( props.hasValue("index") ) canvas = canvas_mgr.getCanvas( props.getIntValue("index") ); } return NasalCanvas::create(c, canvas); } naRef f_canvasCreateGroup(sc::Canvas& canvas, const nasal::CallContext& ctx) { return NasalGroup::create ( ctx.c, canvas.createGroup( ctx.getArg(0) ) ); } /** * Get group containing all gui windows */ naRef f_getDesktop(naContext c, naRef me, int argc, naRef* args) { return NasalGroup::create(c, requireGUIMgr(c).getDesktop()); } naRef f_groupCreateChild(sc::Group& group, const nasal::CallContext& ctx) { return NasalElement::create ( ctx.c, group.createChild( ctx.requireArg(0), ctx.getArg(1) ) ); } naRef f_groupGetChild(sc::Group& group, const nasal::CallContext& ctx) { return NasalElement::create ( ctx.c, group.getChild( ctx.requireArg(0) ) ); } naRef f_groupGetElementById(sc::Group& group, const nasal::CallContext& ctx) { return NasalElement::create ( ctx.c, group.getElementById( ctx.requireArg(0) ) ); } template naRef f_eventGetModifier(naContext, sc::MouseEvent& event) { return naNum((event.getModifiers() & Mask) != 0); } naRef to_nasal_helper(naContext c, const sc::ElementWeakPtr& el) { return NasalElement::create(c, el.lock()); } naRef initNasalCanvas(naRef globals, naContext c) { using osgGA::GUIEventAdapter; NasalEvent::init("canvas.Event") .member("type", &sc::Event::getTypeString) .member("target", &sc::Event::getTarget) .member("currentTarget", &sc::Event::getCurrentTarget) .method("stopPropagation", &sc::Event::stopPropagation); NasalMouseEvent::init("canvas.MouseEvent") .bases() .member("screenX", &sc::MouseEvent::getScreenX) .member("screenY", &sc::MouseEvent::getScreenY) .member("clientX", &sc::MouseEvent::getClientX) .member("clientY", &sc::MouseEvent::getClientY) .member("localX", &sc::MouseEvent::getLocalX) .member("localY", &sc::MouseEvent::getLocalY) .member("deltaX", &sc::MouseEvent::getDeltaX) .member("deltaY", &sc::MouseEvent::getDeltaY) .member("button", &sc::MouseEvent::getButton) .member("buttons", &sc::MouseEvent::getButtonMask) .member("modifiers", &sc::MouseEvent::getModifiers) .member("ctrlKey", &f_eventGetModifier) .member("shiftKey", &f_eventGetModifier) .member("altKey", &f_eventGetModifier) .member("metaKey", &f_eventGetModifier) .member("click_count", &sc::MouseEvent::getCurrentClickCount); NasalCanvas::init("Canvas") .member("_node_ghost", &elementGetNode) .member("size_x", &sc::Canvas::getSizeX) .member("size_y", &sc::Canvas::getSizeY) .method("_createGroup", &f_canvasCreateGroup) .method("_getGroup", &sc::Canvas::getGroup) .method("addEventListener", &sc::Canvas::addEventListener); NasalElement::init("canvas.Element") .member("_node_ghost", &elementGetNode) .method("_getParent", &sc::Element::getParent) .method("addEventListener", &sc::Element::addEventListener) .method("getBoundingBox", &sc::Element::getBoundingBox) .method("getTightBoundingBox", &sc::Element::getTightBoundingBox); NasalGroup::init("canvas.Group") .bases() .method("_createChild", &f_groupCreateChild) .method("_getChild", &f_groupGetChild) .method("_getElementById", &f_groupGetElementById); NasalText::init("canvas.Text") .bases() .method("getNearestCursor", &sc::Text::getNearestCursor); NasalWindow::init("canvas.Window") .bases() .member("_node_ghost", &elementGetNode) .method("_getCanvasDecoration", &canvas::Window::getCanvasDecoration); nasal::Hash globals_module(globals, c), canvas_module = globals_module.createHash("canvas"); canvas_module.set("_newCanvasGhost", f_createCanvas); canvas_module.set("_newWindowGhost", f_createWindow); canvas_module.set("_getCanvasGhost", f_getCanvas); canvas_module.set("_getDesktopGhost", f_getDesktop); return naNil(); }