2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2005-10-24 18:53:01 +08:00
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2002-05-09 18:31:03 +08:00
|
|
|
#include <osgGA/FlightManipulator>
|
|
|
|
#include <osg/Notify>
|
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
using namespace osgGA;
|
|
|
|
|
|
|
|
FlightManipulator::FlightManipulator()
|
|
|
|
{
|
|
|
|
_modelScale = 0.01f;
|
2004-06-08 15:32:08 +08:00
|
|
|
_acceleration = 100.0f;
|
2002-05-09 18:31:03 +08:00
|
|
|
_velocity = 0.0f;
|
|
|
|
_yawMode = YAW_AUTOMATICALLY_WHEN_BANKED;
|
2002-08-30 04:41:19 +08:00
|
|
|
|
|
|
|
_distance = 1.0f;
|
2002-05-09 18:31:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FlightManipulator::~FlightManipulator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FlightManipulator::setNode(osg::Node* node)
|
|
|
|
{
|
|
|
|
_node = node;
|
|
|
|
if (_node.get())
|
|
|
|
{
|
|
|
|
const osg::BoundingSphere& boundingSphere=_node->getBound();
|
|
|
|
_modelScale = boundingSphere._radius;
|
|
|
|
}
|
2004-07-13 03:54:54 +08:00
|
|
|
|
|
|
|
if (getAutoComputeHomePosition()) computeHomePosition();
|
2002-05-09 18:31:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const osg::Node* FlightManipulator::getNode() const
|
|
|
|
{
|
|
|
|
return _node.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
osg::Node* FlightManipulator::getNode()
|
|
|
|
{
|
|
|
|
return _node.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlightManipulator::home(const GUIEventAdapter& ea,GUIActionAdapter& us)
|
|
|
|
{
|
2004-07-13 03:54:54 +08:00
|
|
|
if (getAutoComputeHomePosition()) computeHomePosition();
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2004-07-13 03:54:54 +08:00
|
|
|
computePosition(_homeEye, _homeCenter, _homeUp);
|
|
|
|
|
|
|
|
_velocity = 0.0;
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2004-07-13 03:54:54 +08:00
|
|
|
us.requestRedraw();
|
2007-06-07 20:23:21 +08:00
|
|
|
us.requestContinuousUpdate(false);
|
2004-07-13 03:54:54 +08:00
|
|
|
us.requestWarpPointer((ea.getXmin()+ea.getXmax())/2.0f,(ea.getYmin()+ea.getYmax())/2.0f);
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2004-07-13 03:54:54 +08:00
|
|
|
flushMouseEventStack();
|
2002-05-09 18:31:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FlightManipulator::init(const GUIEventAdapter& ea,GUIActionAdapter& us)
|
|
|
|
{
|
|
|
|
flushMouseEventStack();
|
|
|
|
|
|
|
|
us.requestContinuousUpdate(false);
|
|
|
|
|
|
|
|
_velocity = 0.0f;
|
|
|
|
|
2003-01-20 19:52:34 +08:00
|
|
|
if (ea.getEventType()!=GUIEventAdapter::RESIZE)
|
|
|
|
{
|
2003-04-05 03:10:37 +08:00
|
|
|
us.requestWarpPointer((ea.getXmin()+ea.getXmax())/2.0f,(ea.getYmin()+ea.getYmax())/2.0f);
|
2003-01-20 19:52:34 +08:00
|
|
|
}
|
2002-05-09 18:31:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool FlightManipulator::handle(const GUIEventAdapter& ea,GUIActionAdapter& us)
|
|
|
|
{
|
2007-02-26 21:01:17 +08:00
|
|
|
switch(ea.getEventType())
|
|
|
|
{
|
|
|
|
case(GUIEventAdapter::FRAME):
|
|
|
|
addMouseEvent(ea);
|
|
|
|
if (calcMovement()) us.requestRedraw();
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case(GUIEventAdapter::RESIZE):
|
|
|
|
init(ea,us);
|
|
|
|
us.requestRedraw();
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ea.getHandled()) return false;
|
|
|
|
|
2002-05-09 18:31:03 +08:00
|
|
|
switch(ea.getEventType())
|
|
|
|
{
|
|
|
|
case(GUIEventAdapter::PUSH):
|
|
|
|
{
|
|
|
|
|
|
|
|
addMouseEvent(ea);
|
|
|
|
us.requestContinuousUpdate(true);
|
|
|
|
if (calcMovement()) us.requestRedraw();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case(GUIEventAdapter::RELEASE):
|
|
|
|
{
|
|
|
|
|
|
|
|
addMouseEvent(ea);
|
|
|
|
us.requestContinuousUpdate(true);
|
|
|
|
if (calcMovement()) us.requestRedraw();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case(GUIEventAdapter::DRAG):
|
|
|
|
{
|
|
|
|
|
|
|
|
addMouseEvent(ea);
|
|
|
|
us.requestContinuousUpdate(true);
|
|
|
|
if (calcMovement()) us.requestRedraw();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case(GUIEventAdapter::MOVE):
|
|
|
|
{
|
|
|
|
|
|
|
|
addMouseEvent(ea);
|
|
|
|
us.requestContinuousUpdate(true);
|
|
|
|
if (calcMovement()) us.requestRedraw();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-01-14 22:25:56 +08:00
|
|
|
case(GUIEventAdapter::KEYDOWN):
|
2005-11-17 19:03:20 +08:00
|
|
|
{
|
|
|
|
if (ea.getKey()==GUIEventAdapter::KEY_Space)
|
2002-05-09 18:31:03 +08:00
|
|
|
{
|
|
|
|
flushMouseEventStack();
|
|
|
|
home(ea,us);
|
|
|
|
us.requestRedraw();
|
|
|
|
us.requestContinuousUpdate(false);
|
|
|
|
return true;
|
|
|
|
}
|
2002-08-30 04:41:19 +08:00
|
|
|
else if (ea.getKey()=='q')
|
|
|
|
{
|
|
|
|
_yawMode = YAW_AUTOMATICALLY_WHEN_BANKED;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (ea.getKey()=='a')
|
|
|
|
{
|
|
|
|
_yawMode = NO_AUTOMATIC_YAW;
|
|
|
|
return true;
|
|
|
|
}
|
2002-05-09 18:31:03 +08:00
|
|
|
return false;
|
2005-11-17 19:03:20 +08:00
|
|
|
}
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-19 18:43:02 +08:00
|
|
|
void FlightManipulator::getUsage(osg::ApplicationUsage& usage) const
|
|
|
|
{
|
|
|
|
usage.addKeyboardMouseBinding("Flight: Space","Reset the viewing position to home");
|
|
|
|
usage.addKeyboardMouseBinding("Flight: q","Automatically yaw when banked (default)");
|
|
|
|
usage.addKeyboardMouseBinding("Flight: a","No yaw when banked");
|
|
|
|
}
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
void FlightManipulator::flushMouseEventStack()
|
|
|
|
{
|
|
|
|
_ga_t1 = NULL;
|
|
|
|
_ga_t0 = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FlightManipulator::addMouseEvent(const GUIEventAdapter& ea)
|
|
|
|
{
|
|
|
|
_ga_t1 = _ga_t0;
|
|
|
|
_ga_t0 = &ea;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-06 06:35:34 +08:00
|
|
|
void FlightManipulator::setByMatrix(const osg::Matrixd& matrix)
|
2002-08-30 04:41:19 +08:00
|
|
|
{
|
2003-05-19 23:15:17 +08:00
|
|
|
_eye = matrix.getTrans();
|
2006-08-01 01:31:21 +08:00
|
|
|
_rotation = matrix.getRotate();
|
2003-05-19 23:15:17 +08:00
|
|
|
_distance = 1.0f;
|
|
|
|
}
|
|
|
|
|
2003-09-06 06:35:34 +08:00
|
|
|
osg::Matrixd FlightManipulator::getMatrix() const
|
2003-05-19 23:15:17 +08:00
|
|
|
{
|
2003-09-06 06:35:34 +08:00
|
|
|
return osg::Matrixd::rotate(_rotation)*osg::Matrixd::translate(_eye);
|
2003-05-19 23:15:17 +08:00
|
|
|
}
|
|
|
|
|
2003-09-06 06:35:34 +08:00
|
|
|
osg::Matrixd FlightManipulator::getInverseMatrix() const
|
2003-05-19 23:15:17 +08:00
|
|
|
{
|
2003-09-06 06:35:34 +08:00
|
|
|
return osg::Matrixd::translate(-_eye)*osg::Matrixd::rotate(_rotation.inverse());
|
2003-05-19 23:15:17 +08:00
|
|
|
}
|
|
|
|
|
2004-07-13 03:54:54 +08:00
|
|
|
void FlightManipulator::computePosition(const osg::Vec3& eye,const osg::Vec3& center,const osg::Vec3& up)
|
2003-05-19 23:15:17 +08:00
|
|
|
{
|
2004-07-13 03:54:54 +08:00
|
|
|
osg::Vec3d lv = center-eye;
|
|
|
|
|
2003-05-19 23:15:17 +08:00
|
|
|
osg::Vec3 f(lv);
|
2002-08-30 04:41:19 +08:00
|
|
|
f.normalize();
|
2003-05-19 23:15:17 +08:00
|
|
|
osg::Vec3 s(f^up);
|
2002-08-30 04:41:19 +08:00
|
|
|
s.normalize();
|
|
|
|
osg::Vec3 u(s^f);
|
|
|
|
u.normalize();
|
2003-05-19 23:15:17 +08:00
|
|
|
|
2003-09-06 06:35:34 +08:00
|
|
|
osg::Matrixd rotation_matrix(s[0], u[0], -f[0], 0.0f,
|
2002-08-30 04:41:19 +08:00
|
|
|
s[1], u[1], -f[1], 0.0f,
|
|
|
|
s[2], u[2], -f[2], 0.0f,
|
|
|
|
0.0f, 0.0f, 0.0f, 1.0f);
|
|
|
|
|
2003-05-19 23:15:17 +08:00
|
|
|
_eye = eye;
|
|
|
|
_distance = lv.length();
|
2006-08-01 01:31:21 +08:00
|
|
|
_rotation = rotation_matrix.getRotate().inverse();
|
2002-08-30 04:41:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-09 18:31:03 +08:00
|
|
|
bool FlightManipulator::calcMovement()
|
|
|
|
{
|
|
|
|
// return if less then two events have been added.
|
|
|
|
if (_ga_t0.get()==NULL || _ga_t1.get()==NULL) return false;
|
|
|
|
|
|
|
|
|
2006-03-08 22:09:47 +08:00
|
|
|
double dt = _ga_t0->getTime()-_ga_t1->getTime();
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
if (dt<0.0f)
|
|
|
|
{
|
2005-05-09 03:21:43 +08:00
|
|
|
notify(INFO) << "warning dt = "<<dt<< std::endl;
|
2002-05-09 18:31:03 +08:00
|
|
|
dt = 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int buttonMask = _ga_t1->getButtonMask();
|
|
|
|
if (buttonMask==GUIEventAdapter::LEFT_MOUSE_BUTTON)
|
|
|
|
{
|
|
|
|
// pan model.
|
|
|
|
|
2004-06-08 15:32:08 +08:00
|
|
|
_velocity += dt*(_acceleration+_velocity);
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
else if (buttonMask==GUIEventAdapter::MIDDLE_MOUSE_BUTTON ||
|
|
|
|
buttonMask==(GUIEventAdapter::LEFT_MOUSE_BUTTON|GUIEventAdapter::RIGHT_MOUSE_BUTTON))
|
|
|
|
{
|
|
|
|
|
|
|
|
_velocity = 0.0f;
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (buttonMask==GUIEventAdapter::RIGHT_MOUSE_BUTTON)
|
|
|
|
{
|
|
|
|
|
2004-06-08 15:32:08 +08:00
|
|
|
_velocity -= dt*(_acceleration+_velocity);
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-04-05 03:10:37 +08:00
|
|
|
float dx = _ga_t0->getXnormalized();
|
|
|
|
float dy = _ga_t0->getYnormalized();
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2004-05-20 18:15:48 +08:00
|
|
|
osg::CoordinateFrame cf=getCoordinateFrame(_eye);
|
2003-04-14 21:23:12 +08:00
|
|
|
|
2003-09-06 06:35:34 +08:00
|
|
|
osg::Matrixd rotation_matrix;
|
2002-08-30 04:41:19 +08:00
|
|
|
rotation_matrix.makeRotate(_rotation);
|
|
|
|
|
2004-05-20 18:15:48 +08:00
|
|
|
osg::Vec3d up = osg::Vec3(0.0,1.0,0.0) * rotation_matrix;
|
|
|
|
osg::Vec3d lv = osg::Vec3(0.0,0.0,-1.0) * rotation_matrix;
|
2002-08-30 04:41:19 +08:00
|
|
|
|
2004-05-20 18:15:48 +08:00
|
|
|
osg::Vec3d sv = lv^up;
|
2002-08-30 04:41:19 +08:00
|
|
|
sv.normalize();
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2005-08-22 21:03:23 +08:00
|
|
|
double pitch = -inDegrees(dy*50.0f*dt);
|
2004-05-20 18:15:48 +08:00
|
|
|
double roll = inDegrees(dx*50.0f*dt);
|
2002-05-09 18:31:03 +08:00
|
|
|
|
2002-08-30 04:41:19 +08:00
|
|
|
osg::Quat delta_rotate;
|
|
|
|
|
|
|
|
osg::Quat roll_rotate;
|
|
|
|
osg::Quat pitch_rotate;
|
|
|
|
|
|
|
|
pitch_rotate.makeRotate(pitch,sv.x(),sv.y(),sv.z());
|
|
|
|
roll_rotate.makeRotate(roll,lv.x(),lv.y(),lv.z());
|
|
|
|
|
|
|
|
delta_rotate = pitch_rotate*roll_rotate;
|
|
|
|
|
2002-05-09 18:31:03 +08:00
|
|
|
if (_yawMode==YAW_AUTOMATICALLY_WHEN_BANKED)
|
|
|
|
{
|
2004-04-30 06:18:54 +08:00
|
|
|
//float bank = asinf(sv.z());
|
2004-05-20 18:15:48 +08:00
|
|
|
double bank = asinf(sv *getUpVector(cf));
|
|
|
|
double yaw = inRadians(bank)*dt;
|
2002-08-30 04:41:19 +08:00
|
|
|
|
|
|
|
osg::Quat yaw_rotate;
|
2004-04-30 06:18:54 +08:00
|
|
|
//yaw_rotate.makeRotate(yaw,0.0f,0.0f,1.0f);
|
|
|
|
|
2004-05-06 19:01:16 +08:00
|
|
|
yaw_rotate.makeRotate(yaw,getUpVector(cf));
|
2004-04-30 06:18:54 +08:00
|
|
|
|
2002-08-30 04:41:19 +08:00
|
|
|
|
|
|
|
delta_rotate = delta_rotate*yaw_rotate;
|
2002-05-09 18:31:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lv *= (_velocity*dt);
|
|
|
|
|
2002-08-30 04:41:19 +08:00
|
|
|
_eye += lv;
|
|
|
|
_rotation = _rotation*delta_rotate;
|
2002-05-09 18:31:03 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|