2010-11-23 01:30:44 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2010 Robert Osfield
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <osgGA/MultiTouchTrackballManipulator>
|
|
|
|
#include <osg/io_utils>
|
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
using namespace osgGA;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Constructor.
|
|
|
|
MultiTouchTrackballManipulator::MultiTouchTrackballManipulator( int flags )
|
|
|
|
: inherited( flags )
|
|
|
|
{
|
|
|
|
setVerticalAxisFixed( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Constructor.
|
|
|
|
MultiTouchTrackballManipulator::MultiTouchTrackballManipulator( const MultiTouchTrackballManipulator& tm, const CopyOp& copyOp )
|
|
|
|
: inherited( tm, copyOp )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MultiTouchTrackballManipulator::handleMultiTouchDrag(GUIEventAdapter::TouchData* now, GUIEventAdapter::TouchData* last, const double eventTimeDelta)
|
|
|
|
{
|
|
|
|
const float zoom_threshold = 1.0f;
|
|
|
|
|
|
|
|
osg::Vec2 pt_1_now(now->get(0).x,now->get(0).y);
|
|
|
|
osg::Vec2 pt_2_now(now->get(1).x,now->get(1).y);
|
|
|
|
osg::Vec2 pt_1_last(last->get(0).x,last->get(0).y);
|
|
|
|
osg::Vec2 pt_2_last(last->get(1).x,last->get(1).y);
|
2010-11-23 03:38:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
float gap_now((pt_1_now - pt_2_now).length());
|
|
|
|
float gap_last((pt_1_last - pt_2_last).length());
|
2010-11-23 03:38:18 +08:00
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
// osg::notify(osg::ALWAYS) << gap_now << " " << gap_last << std::endl;
|
2010-11-23 03:38:18 +08:00
|
|
|
|
2010-12-02 22:13:54 +08:00
|
|
|
if (fabs(gap_last - gap_now) >= zoom_threshold)
|
2010-11-23 01:30:44 +08:00
|
|
|
{
|
|
|
|
// zoom gesture
|
|
|
|
zoomModel( (gap_last - gap_now) * eventTimeDelta, true );
|
2010-11-23 03:38:18 +08:00
|
|
|
}
|
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
// drag gesture
|
2010-11-23 03:38:18 +08:00
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
osg::Vec2 delta = ((pt_1_last - pt_1_now) + (pt_2_last - pt_2_now)) / 2.0f;
|
2010-11-23 03:38:18 +08:00
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
float scale = 0.2f * _distance * eventTimeDelta;
|
2010-11-23 03:38:18 +08:00
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
// osg::notify(osg::ALWAYS) << "drag: " << delta << " scale: " << scale << std::endl;
|
|
|
|
|
2010-11-23 03:38:18 +08:00
|
|
|
panModel( delta.x() * scale, delta.y() * scale * (-1)); // flip y-coord because of different origins.
|
2010-11-23 01:30:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MultiTouchTrackballManipulator::handle( const GUIEventAdapter& ea, GUIActionAdapter& us )
|
|
|
|
{
|
2010-11-23 03:38:18 +08:00
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
bool handled(false);
|
2010-11-23 03:38:18 +08:00
|
|
|
|
|
|
|
switch(ea.getEventType())
|
|
|
|
{
|
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
case osgGA::GUIEventAdapter::PUSH:
|
|
|
|
case osgGA::GUIEventAdapter::DRAG:
|
|
|
|
case osgGA::GUIEventAdapter::RELEASE:
|
|
|
|
if (ea.isMultiTouchEvent())
|
|
|
|
{
|
|
|
|
double eventTimeDelta = 1/60.0; //_ga_t0->getTime() - _ga_t1->getTime();
|
|
|
|
if( eventTimeDelta < 0. )
|
|
|
|
{
|
|
|
|
OSG_WARN << "Manipulator warning: eventTimeDelta = " << eventTimeDelta << std::endl;
|
|
|
|
eventTimeDelta = 0.;
|
|
|
|
}
|
|
|
|
osgGA::GUIEventAdapter::TouchData* data = ea.getTouchData();
|
2010-11-23 03:38:18 +08:00
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
// three touches or two taps for home position
|
2010-11-23 03:38:18 +08:00
|
|
|
if ((data->getNumTouchPoints() == 3) || ((data->getNumTouchPoints() == 1) && (data->get(0).tapCount >= 2)))
|
|
|
|
{
|
2010-11-23 01:30:44 +08:00
|
|
|
flushMouseEventStack();
|
|
|
|
_thrown = false;
|
|
|
|
home(ea,us);
|
|
|
|
handled = true;
|
2010-11-23 03:38:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (data->getNumTouchPoints() >= 2)
|
2010-11-23 01:30:44 +08:00
|
|
|
{
|
2010-11-23 03:38:18 +08:00
|
|
|
if ((_lastTouchData.valid()) && (_lastTouchData->getNumTouchPoints() >= 2))
|
|
|
|
{
|
|
|
|
handleMultiTouchDrag(data, _lastTouchData.get(), eventTimeDelta);
|
2010-11-23 01:30:44 +08:00
|
|
|
}
|
2010-11-23 03:38:18 +08:00
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
handled = true;
|
2010-11-23 03:38:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
_lastTouchData = data;
|
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
// check if all touches ended
|
|
|
|
unsigned int num_touches_ended(0);
|
2010-11-23 03:38:18 +08:00
|
|
|
for(osgGA::GUIEventAdapter::TouchData::iterator i = data->begin(); i != data->end(); ++i)
|
|
|
|
{
|
2010-11-23 01:30:44 +08:00
|
|
|
if ((*i).phase == osgGA::GUIEventAdapter::TOUCH_ENDED)
|
|
|
|
num_touches_ended++;
|
|
|
|
}
|
2010-11-23 03:38:18 +08:00
|
|
|
|
|
|
|
if(num_touches_ended == data->getNumTouchPoints())
|
|
|
|
{
|
2010-11-23 01:30:44 +08:00
|
|
|
_lastTouchData = NULL;
|
|
|
|
}
|
2010-11-23 03:38:18 +08:00
|
|
|
|
2010-11-23 01:30:44 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return handled ? handled : TrackballManipulator::handle(ea, us);
|
2010-12-02 22:13:54 +08:00
|
|
|
}
|