Q3DWidget.cc 17.7 KB
Newer Older
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
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL 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 3 of the License, or
    (at your option) any later version.

    QGROUNDCONTROL 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 QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

/**
 * @file
 *   @brief Definition of the class Q3DWidget.
 *
 *   @author Lionel Heng <hengli@student.ethz.ch>
 *
 */

lm's avatar
lm committed
32 33
#include "Q3DWidget.h"

34 35 36
#include <osg/Geometry>
#include <osg/LineWidth>
#include <osg/MatrixTransform>
pixhawk's avatar
pixhawk committed
37

lm's avatar
lm committed
38
static const float KEY_ROTATE_AMOUNT = 5.0f;
39
static const float KEY_MOVE_AMOUNT   = 10.0f;
lm's avatar
lm committed
40 41 42
static const float KEY_ZOOM_AMOUNT   = 5.0f;

Q3DWidget::Q3DWidget(QWidget* parent)
43 44 45 46 47 48 49
    : QGLWidget(parent)
    , root(new osg::Group())
    , allocentricMap(new osg::Switch())
    , rollingMap(new osg::Switch())
    , egocentricMap(new osg::Switch())
    , robotPosition(new osg::PositionAttitudeTransform())
    , robotAttitude(new osg::PositionAttitudeTransform())
50
    , hudGroup(new osg::Switch())
51 52 53
    , hudProjectionMatrix(new osg::Projection)
{
    // set initial camera parameters
54
    cameraParams.minZoomRange = 2.0f;
55 56
    cameraParams.cameraFov = 30.0f;
    cameraParams.minClipRange = 1.0f;
57 58 59 60 61 62 63
    cameraParams.maxClipRange = 10000.0f;

    osgGW = new osgViewer::GraphicsWindowEmbedded(0, 0, width(), height());

    setThreadingModel(osgViewer::Viewer::SingleThreaded);

    setFocusPolicy(Qt::StrongFocus);
lm's avatar
lm committed
64 65 66 67 68 69 70 71
}

Q3DWidget::~Q3DWidget()
{

}

void
72
Q3DWidget::init(float fps)
lm's avatar
lm committed
73
{
74
    getCamera()->setGraphicsContext(osgGW);
75 76
    
    setLightingMode(osg::View::SKY_LIGHT);
lm's avatar
lm committed
77

78 79 80 81
    // set up various maps
    // allocentric - world map
    // rolling - map aligned to the world axes and centered on the robot
    // egocentric - vehicle-centric map
82 83 84 85 86
    root->addChild(allocentricMap);
    allocentricMap->addChild(robotPosition);
    robotPosition->addChild(rollingMap);
    rollingMap->addChild(robotAttitude);
    robotAttitude->addChild(egocentricMap);
lm's avatar
lm committed
87

88
    setSceneData(root);
lm's avatar
lm committed
89

90 91
    // set up HUD
    root->addChild(createHUD());
lm's avatar
lm committed
92

93
    // set up robot
94
    egocentricMap->addChild(createRobot());
lm's avatar
lm committed
95

96
    // set up camera control
97
    cameraManipulator = new GCManipulator;
98
    setCameraManipulator(cameraManipulator);
99 100
    cameraManipulator->setMinZoomRange(cameraParams.minZoomRange);
    cameraManipulator->setDistance(cameraParams.minZoomRange * 2.0);
lm's avatar
lm committed
101

102 103
    connect(&timer, SIGNAL(timeout()), this, SLOT(redraw()));
    timer.start(static_cast<int>(floorf(1000.0f / fps)));
lm's avatar
lm committed
104 105
}

106 107
osg::ref_ptr<osg::Geode>
Q3DWidget::createRobot(void)
lm's avatar
lm committed
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
    // draw x,y,z-axes
    osg::ref_ptr<osg::Geode> geode(new osg::Geode());
    osg::ref_ptr<osg::Geometry> geometry(new osg::Geometry());
    geode->addDrawable(geometry.get());

    osg::ref_ptr<osg::Vec3Array> coords(new osg::Vec3Array(6));
    (*coords)[0] = (*coords)[2] = (*coords)[4] =
                                  osg::Vec3(0.0f, 0.0f, 0.0f);
    (*coords)[1] = osg::Vec3(0.15f, 0.0f, 0.0f);
    (*coords)[3] = osg::Vec3(0.0f, 0.3f, 0.0f);
    (*coords)[5] = osg::Vec3(0.0f, 0.0f, -0.15f);

    geometry->setVertexArray(coords);

    osg::Vec4 redColor(1.0f, 0.0f, 0.0f, 0.0f);
    osg::Vec4 greenColor(0.0f, 1.0f, 0.0f, 0.0f);
    osg::Vec4 blueColor(0.0f, 0.0f, 1.0f, 0.0f);

    osg::ref_ptr<osg::Vec4Array> color(new osg::Vec4Array(6));
    (*color)[0] = redColor;
    (*color)[1] = redColor;
    (*color)[2] = greenColor;
    (*color)[3] = greenColor;
    (*color)[4] = blueColor;
    (*color)[5] = blueColor;

    geometry->setColorArray(color);
    geometry->setColorBinding(osg::Geometry::BIND_PER_VERTEX);

    geometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, 0, 6));

    osg::ref_ptr<osg::StateSet> stateset(new osg::StateSet);
    osg::ref_ptr<osg::LineWidth> linewidth(new osg::LineWidth());
    linewidth->setWidth(3.0f);
    stateset->setAttributeAndModes(linewidth, osg::StateAttribute::ON);
    stateset->setMode(GL_LIGHTING, osg::StateAttribute::OFF);
    geometry->setStateSet(stateset);

    return geode;
148 149
}

150 151
osg::ref_ptr<osg::Node>
Q3DWidget::createHUD(void)
lm's avatar
lm committed
152
{
153 154 155 156 157 158 159 160 161
    hudProjectionMatrix->setMatrix(osg::Matrix::ortho2D(0, width(),
                                                        0, height()));

    osg::ref_ptr<osg::MatrixTransform> hudModelViewMatrix(
            new osg::MatrixTransform);
    hudModelViewMatrix->setMatrix(osg::Matrix::identity());
    hudModelViewMatrix->setReferenceFrame(osg::Transform::ABSOLUTE_RF);

    hudProjectionMatrix->addChild(hudModelViewMatrix);
162
    hudModelViewMatrix->addChild(hudGroup);
163 164

    osg::ref_ptr<osg::StateSet> hudStateSet(new osg::StateSet);
165
    hudGroup->setStateSet(hudStateSet);
166
    hudStateSet->setMode(GL_DEPTH_TEST, osg::StateAttribute::OFF);
167
    hudStateSet->setMode(GL_LIGHTING, osg::StateAttribute::OFF);
168 169 170 171
    hudStateSet->setRenderingHint(osg::StateSet::TRANSPARENT_BIN);
    hudStateSet->setRenderBinDetails(11, "RenderBin");

    return hudProjectionMatrix;
lm's avatar
lm committed
172 173 174
}

void
175 176
Q3DWidget::setCameraParams(float minZoomRange, float cameraFov,
                           float minClipRange, float maxClipRange)
lm's avatar
lm committed
177
{
178 179 180 181
    cameraParams.minZoomRange = minZoomRange;
    cameraParams.cameraFov = cameraFov;
    cameraParams.minClipRange = minClipRange;
    cameraParams.maxClipRange = maxClipRange;
lm's avatar
lm committed
182 183 184
}

void
185 186 187 188 189 190 191
Q3DWidget::moveCamera(float dx, float dy, float dz)
{
    cameraManipulator->move(dx, dy, dz);
}

void
Q3DWidget::recenterCamera(float x, float y, float z)
lm's avatar
lm committed
192
{
193
    cameraManipulator->setCenter(osg::Vec3d(x, y, z));
lm's avatar
lm committed
194 195 196
}

void
197
Q3DWidget::setDisplayMode3D(void)
lm's avatar
lm committed
198
{
199 200
    double aspect = static_cast<double>(width())
                    / static_cast<double>(height());
lm's avatar
lm committed
201

202 203 204 205 206
    getCamera()->setViewport(new osg::Viewport(0, 0, width(), height()));
    getCamera()->setProjectionMatrixAsPerspective(cameraParams.cameraFov,
                                                  aspect,
                                                  cameraParams.minClipRange,
                                                  cameraParams.maxClipRange);
lm's avatar
lm committed
207 208
}

209
std::pair<double,double>
210
Q3DWidget::getGlobalCursorPosition(int32_t cursorX, int32_t cursorY, double z)
lm's avatar
lm committed
211
{
212
    osgUtil::LineSegmentIntersector::Intersections intersections;
lm's avatar
lm committed
213

214
    // normalize cursor position to value between -1 and 1
215
    double x = -1.0f + static_cast<double>(2 * cursorX)
216
              / static_cast<double>(width());
217
    double y = -1.0f + static_cast<double>(2 * (height() - cursorY))
218
              / static_cast<double>(height());
lm's avatar
lm committed
219

220
    // compute matrix which transforms screen coordinates to world coordinates
221 222 223 224 225 226
    osg::Matrixd m = getCamera()->getViewMatrix()
                     * getCamera()->getProjectionMatrix();
    osg::Matrixd invM = osg::Matrixd::inverse(m);

    osg::Vec3d nearPoint = osg::Vec3d(x, y, -1.0) * invM;
    osg::Vec3d farPoint = osg::Vec3d(x, y, 1.0) * invM;
lm's avatar
lm committed
227

228
    osg::ref_ptr<osg::LineSegment> line =
229
            new osg::LineSegment(nearPoint, farPoint);
lm's avatar
lm committed
230

231
    osg::Plane p(osg::Vec3d(0.0, 0.0, 1.0), osg::Vec3d(0.0, 0.0, z));
lm's avatar
lm committed
232

233 234
    osg::Vec3d projectedPoint;
    getPlaneLineIntersection(p.asVec4(), *line, projectedPoint);
lm's avatar
lm committed
235

236
    return std::make_pair(projectedPoint.y(), projectedPoint.x());
237 238
}

239 240
void
Q3DWidget::redraw(void)
lm's avatar
lm committed
241
{
242
    updateGL();
lm's avatar
lm committed
243 244 245
}

int
246
Q3DWidget::getMouseX(void)
lm's avatar
lm committed
247
{
248
    return mapFromGlobal(cursor().pos()).x();
lm's avatar
lm committed
249 250 251
}

int
252
Q3DWidget::getMouseY(void)
lm's avatar
lm committed
253
{
254
    return mapFromGlobal(cursor().pos()).y();
lm's avatar
lm committed
255 256
}

257 258
void
Q3DWidget::resizeGL(int width, int height)
lm's avatar
lm committed
259
{
260 261
    hudProjectionMatrix->setMatrix(osg::Matrix::ortho2D(0, width,
                                                        0, height));
lm's avatar
lm committed
262

263 264
    osgGW->getEventQueue()->windowResize(0, 0, width, height);
    osgGW->resized(0 , 0, width, height);
lm's avatar
lm committed
265 266
}

267 268
void
Q3DWidget::paintGL(void)
lm's avatar
lm committed
269
{
270 271
    setDisplayMode3D();

272 273
    getCamera()->setClearColor(osg::Vec4f(0.0f, 0.0f, 0.0f, 0.0f));
    getCamera()->setClearMask(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
274

275
    display();
276 277

    frame();
lm's avatar
lm committed
278 279
}

280 281 282 283 284 285 286 287
void
Q3DWidget::display(void)
{

}

void
Q3DWidget::keyPressEvent(QKeyEvent* event)
lm's avatar
lm committed
288
{
289 290
    QWidget::keyPressEvent(event);
    if (event->isAccepted())
291
    {
292
        return;
293
    }
294

295
    if (event->text().isEmpty())
296
    {
297
        osgGW->getEventQueue()->keyPress(convertKey(event->key()));
298 299 300
    }
    else
    {
301 302 303
        osgGW->getEventQueue()->keyPress(
                static_cast<osgGA::GUIEventAdapter::KeySymbol>(
                        *(event->text().toAscii().data())));
304
    }
lm's avatar
lm committed
305 306
}

307 308
void
Q3DWidget::keyReleaseEvent(QKeyEvent* event)
lm's avatar
lm committed
309
{
310 311
    QWidget::keyReleaseEvent(event);
    if (event->isAccepted())
312
    {
313
        return;
314
    }
315
    if (event->text().isEmpty())
316
    {
317
        osgGW->getEventQueue()->keyRelease(convertKey(event->key()));
318
    }
319
    else
320
    {
321 322 323
        osgGW->getEventQueue()->keyRelease(
                static_cast<osgGA::GUIEventAdapter::KeySymbol>(
                        *(event->text().toAscii().data())));
324
    }
lm's avatar
lm committed
325 326
}

327 328
void
Q3DWidget::mousePressEvent(QMouseEvent* event)
lm's avatar
lm committed
329
{
330 331
    int button = 0;
    switch (event->button())
332
    {
333 334 335 336 337 338 339 340 341 342 343 344 345 346
    case Qt::LeftButton:
        button = 1;
        break;
    case Qt::MidButton:
        button = 2;
        break;
    case Qt::RightButton:
        button = 3;
        break;
    case Qt::NoButton:
        button = 0;
        break;
    default:
        {}
347
    }
348
    osgGW->getEventQueue()->mouseButtonPress(event->x(), event->y(), button);
lm's avatar
lm committed
349 350
}

351 352
void
Q3DWidget::mouseReleaseEvent(QMouseEvent* event)
lm's avatar
lm committed
353
{
354 355
    int button = 0;
    switch (event->button())
356
    {
357 358 359 360 361 362 363 364 365 366 367 368 369 370
    case Qt::LeftButton:
        button = 1;
        break;
    case Qt::MidButton:
        button = 2;
        break;
    case Qt::RightButton:
        button = 3;
        break;
    case Qt::NoButton:
        button = 0;
        break;
    default:
        {}
371
    }
372
    osgGW->getEventQueue()->mouseButtonRelease(event->x(), event->y(), button);
lm's avatar
lm committed
373 374
}

375 376
void
Q3DWidget::mouseMoveEvent(QMouseEvent* event)
lm's avatar
lm committed
377
{
378
    osgGW->getEventQueue()->mouseMotion(event->x(), event->y());
lm's avatar
lm committed
379
}
pixhawk's avatar
pixhawk committed
380

381 382
void
Q3DWidget::wheelEvent(QWheelEvent* event)
pixhawk's avatar
pixhawk committed
383
{
384 385 386
    osgGW->getEventQueue()->mouseScroll((event->delta() > 0) ?
            osgGA::GUIEventAdapter::SCROLL_UP :
            osgGA::GUIEventAdapter::SCROLL_DOWN);
pixhawk's avatar
pixhawk committed
387 388
}

389 390
float
Q3DWidget::r2d(float angle)
pixhawk's avatar
pixhawk committed
391
{
392
    return angle * 57.295779513082320876f;
pixhawk's avatar
pixhawk committed
393 394
}

395 396
float
Q3DWidget::d2r(float angle)
pixhawk's avatar
pixhawk committed
397
{
398
    return angle * 0.0174532925199432957692f;
pixhawk's avatar
pixhawk committed
399 400
}

401 402
osgGA::GUIEventAdapter::KeySymbol
Q3DWidget::convertKey(int key) const
pixhawk's avatar
pixhawk committed
403
{
404
    switch (key)
405
    {
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
    case Qt::Key_Space : return osgGA::GUIEventAdapter::KEY_Space;
    case Qt::Key_Backspace : return osgGA::GUIEventAdapter::KEY_BackSpace;
    case Qt::Key_Tab : return osgGA::GUIEventAdapter::KEY_Tab;
    case Qt::Key_Clear : return osgGA::GUIEventAdapter::KEY_Clear;
    case Qt::Key_Return : return osgGA::GUIEventAdapter::KEY_Return;
    case Qt::Key_Enter : return osgGA::GUIEventAdapter::KEY_KP_Enter;
    case Qt::Key_Pause : return osgGA::GUIEventAdapter::KEY_Pause;
    case Qt::Key_ScrollLock : return osgGA::GUIEventAdapter::KEY_Scroll_Lock;
    case Qt::Key_SysReq : return osgGA::GUIEventAdapter::KEY_Sys_Req;
    case Qt::Key_Escape : return osgGA::GUIEventAdapter::KEY_Escape;
    case Qt::Key_Delete : return osgGA::GUIEventAdapter::KEY_Delete;
    case Qt::Key_Home : return osgGA::GUIEventAdapter::KEY_Home;
    case Qt::Key_Left : return osgGA::GUIEventAdapter::KEY_Left;
    case Qt::Key_Up : return osgGA::GUIEventAdapter::KEY_Up;
    case Qt::Key_Right : return osgGA::GUIEventAdapter::KEY_Right;
    case Qt::Key_Down : return osgGA::GUIEventAdapter::KEY_Down;
    case Qt::Key_PageUp : return osgGA::GUIEventAdapter::KEY_Page_Up;
    case Qt::Key_PageDown : return osgGA::GUIEventAdapter::KEY_Page_Down;
    case Qt::Key_End : return osgGA::GUIEventAdapter::KEY_End;
    case Qt::Key_Select : return osgGA::GUIEventAdapter::KEY_Select;
    case Qt::Key_Print : return osgGA::GUIEventAdapter::KEY_Print;
    case Qt::Key_Execute : return osgGA::GUIEventAdapter::KEY_Execute;
    case Qt::Key_Insert : return osgGA::GUIEventAdapter::KEY_Insert;
    case Qt::Key_Menu : return osgGA::GUIEventAdapter::KEY_Menu;
    case Qt::Key_Cancel : return osgGA::GUIEventAdapter::KEY_Cancel;
    case Qt::Key_Help : return osgGA::GUIEventAdapter::KEY_Help;
    case Qt::Key_Mode_switch : return osgGA::GUIEventAdapter::KEY_Mode_switch;
    case Qt::Key_NumLock : return osgGA::GUIEventAdapter::KEY_Num_Lock;
    case Qt::Key_Equal : return osgGA::GUIEventAdapter::KEY_KP_Equal;
    case Qt::Key_Asterisk : return osgGA::GUIEventAdapter::KEY_KP_Multiply;
    case Qt::Key_Plus : return osgGA::GUIEventAdapter::KEY_KP_Add;
    case Qt::Key_Minus : return osgGA::GUIEventAdapter::KEY_KP_Subtract;
    case Qt::Key_Comma : return osgGA::GUIEventAdapter::KEY_KP_Decimal;
    case Qt::Key_Slash : return osgGA::GUIEventAdapter::KEY_KP_Divide;
    case Qt::Key_0 : return osgGA::GUIEventAdapter::KEY_KP_0;
    case Qt::Key_1 : return osgGA::GUIEventAdapter::KEY_KP_1;
    case Qt::Key_2 : return osgGA::GUIEventAdapter::KEY_KP_2;
    case Qt::Key_3 : return osgGA::GUIEventAdapter::KEY_KP_3;
    case Qt::Key_4 : return osgGA::GUIEventAdapter::KEY_KP_4;
    case Qt::Key_5 : return osgGA::GUIEventAdapter::KEY_KP_5;
    case Qt::Key_6 : return osgGA::GUIEventAdapter::KEY_KP_6;
    case Qt::Key_7 : return osgGA::GUIEventAdapter::KEY_KP_7;
    case Qt::Key_8 : return osgGA::GUIEventAdapter::KEY_KP_8;
    case Qt::Key_9 : return osgGA::GUIEventAdapter::KEY_KP_9;
    case Qt::Key_F1 : return osgGA::GUIEventAdapter::KEY_F1;
    case Qt::Key_F2 : return osgGA::GUIEventAdapter::KEY_F2;
    case Qt::Key_F3 : return osgGA::GUIEventAdapter::KEY_F3;
    case Qt::Key_F4 : return osgGA::GUIEventAdapter::KEY_F4;
    case Qt::Key_F5 : return osgGA::GUIEventAdapter::KEY_F5;
    case Qt::Key_F6 : return osgGA::GUIEventAdapter::KEY_F6;
    case Qt::Key_F7 : return osgGA::GUIEventAdapter::KEY_F7;
    case Qt::Key_F8 : return osgGA::GUIEventAdapter::KEY_F8;
    case Qt::Key_F9 : return osgGA::GUIEventAdapter::KEY_F9;
    case Qt::Key_F10 : return osgGA::GUIEventAdapter::KEY_F10;
    case Qt::Key_F11 : return osgGA::GUIEventAdapter::KEY_F11;
    case Qt::Key_F12 : return osgGA::GUIEventAdapter::KEY_F12;
    case Qt::Key_F13 : return osgGA::GUIEventAdapter::KEY_F13;
    case Qt::Key_F14 : return osgGA::GUIEventAdapter::KEY_F14;
    case Qt::Key_F15 : return osgGA::GUIEventAdapter::KEY_F15;
    case Qt::Key_F16 : return osgGA::GUIEventAdapter::KEY_F16;
    case Qt::Key_F17 : return osgGA::GUIEventAdapter::KEY_F17;
    case Qt::Key_F18 : return osgGA::GUIEventAdapter::KEY_F18;
    case Qt::Key_F19 : return osgGA::GUIEventAdapter::KEY_F19;
    case Qt::Key_F20 : return osgGA::GUIEventAdapter::KEY_F20;
    case Qt::Key_F21 : return osgGA::GUIEventAdapter::KEY_F21;
    case Qt::Key_F22 : return osgGA::GUIEventAdapter::KEY_F22;
    case Qt::Key_F23 : return osgGA::GUIEventAdapter::KEY_F23;
    case Qt::Key_F24 : return osgGA::GUIEventAdapter::KEY_F24;
    case Qt::Key_F25 : return osgGA::GUIEventAdapter::KEY_F25;
    case Qt::Key_F26 : return osgGA::GUIEventAdapter::KEY_F26;
    case Qt::Key_F27 : return osgGA::GUIEventAdapter::KEY_F27;
    case Qt::Key_F28 : return osgGA::GUIEventAdapter::KEY_F28;
    case Qt::Key_F29 : return osgGA::GUIEventAdapter::KEY_F29;
    case Qt::Key_F30 : return osgGA::GUIEventAdapter::KEY_F30;
    case Qt::Key_F31 : return osgGA::GUIEventAdapter::KEY_F31;
    case Qt::Key_F32 : return osgGA::GUIEventAdapter::KEY_F32;
    case Qt::Key_F33 : return osgGA::GUIEventAdapter::KEY_F33;
    case Qt::Key_F34 : return osgGA::GUIEventAdapter::KEY_F34;
    case Qt::Key_F35 : return osgGA::GUIEventAdapter::KEY_F35;
    case Qt::Key_Shift : return osgGA::GUIEventAdapter::KEY_Shift_L;
//    case Qt::Key_Shift_R : return osgGA::GUIEventAdapter::KEY_Shift_R;
    case Qt::Key_Control : return osgGA::GUIEventAdapter::KEY_Control_L;
//    case Qt::Key_Control_R : return osgGA::GUIEventAdapter::KEY_Control_R;
    case Qt::Key_CapsLock : return osgGA::GUIEventAdapter::KEY_Caps_Lock;
    case Qt::Key_Meta : return osgGA::GUIEventAdapter::KEY_Meta_L;
//    case Qt::Key_Meta_R: return osgGA::GUIEventAdapter::KEY_Meta_R;
    case Qt::Key_Alt : return osgGA::GUIEventAdapter::KEY_Alt_L;
//    case Qt::Key_Alt_R : return osgGA::GUIEventAdapter::KEY_Alt_R;
    case Qt::Key_Super_L : return osgGA::GUIEventAdapter::KEY_Super_L;
    case Qt::Key_Super_R : return osgGA::GUIEventAdapter::KEY_Super_R;
    case Qt::Key_Hyper_L : return osgGA::GUIEventAdapter::KEY_Hyper_L;
    case Qt::Key_Hyper_R : return osgGA::GUIEventAdapter::KEY_Hyper_R;
    default:
        return static_cast<osgGA::GUIEventAdapter::KeySymbol>(key);
500
    }
pixhawk's avatar
pixhawk committed
501 502
}

503 504 505 506
bool
Q3DWidget::getPlaneLineIntersection(const osg::Vec4d& plane,
                                    const osg::LineSegment& line,
                                    osg::Vec3d& isect)
pixhawk's avatar
pixhawk committed
507
{
508 509
    osg::Vec3d lineStart = line.start();
    osg::Vec3d lineEnd = line.end();
510

511 512 513
    const double deltaX = lineEnd.x() - lineStart.x();
    const double deltaY = lineEnd.y() - lineStart.y();
    const double deltaZ = lineEnd.z() - lineStart.z();
514

515 516 517 518 519 520
    const double denominator = plane[0] * deltaX
                               + plane[1] * deltaY
                               + plane[2] * deltaZ;
    if (!denominator)
    {
        return false;
pixhawk's avatar
pixhawk committed
521 522
    }

523 524 525 526
    const double C = (plane[0] * lineStart.x()
                      + plane[1] * lineStart.y()
                      + plane[2] * lineStart.z()
                      + plane[3]) / denominator;
pixhawk's avatar
pixhawk committed
527

528 529 530 531 532
    isect.x() = lineStart.x() - deltaX * C;
    isect.y() = lineStart.y() - deltaY * C;
    isect.z() = lineStart.z() - deltaZ * C;

    return true;
pixhawk's avatar
pixhawk committed
533
}