2007-06-12 22:20:16 +08:00
|
|
|
/* OpenSceneGraph example, osgkeyboardmouse.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2007-06-03 00:23:07 +08:00
|
|
|
// Simple example of use of osgViewer::GraphicsWindow + Viewer
|
2003-12-16 00:46:06 +08:00
|
|
|
// example that provides the user with control over view position with basic picking.
|
|
|
|
|
|
|
|
#include <osg/Timer>
|
2005-04-08 17:45:06 +08:00
|
|
|
#include <osg/io_utils>
|
2006-06-12 22:04:40 +08:00
|
|
|
#include <osg/observer_ptr>
|
2003-12-16 00:46:06 +08:00
|
|
|
|
2006-11-01 22:41:32 +08:00
|
|
|
#include <osgUtil/IntersectionVisitor>
|
2006-11-29 00:30:38 +08:00
|
|
|
#include <osgUtil/PolytopeIntersector>
|
|
|
|
#include <osgUtil/LineSegmentIntersector>
|
2003-12-16 00:46:06 +08:00
|
|
|
|
|
|
|
#include <osgDB/ReadFile>
|
2006-01-04 00:52:06 +08:00
|
|
|
#include <osgDB/WriteFile>
|
2003-12-16 00:46:06 +08:00
|
|
|
|
2006-06-12 19:32:11 +08:00
|
|
|
#include <osgGA/TrackballManipulator>
|
|
|
|
#include <osgGA/StateSetManipulator>
|
2003-12-16 00:46:06 +08:00
|
|
|
|
2007-06-03 00:23:07 +08:00
|
|
|
#include <osgViewer/Viewer>
|
2006-11-02 20:27:15 +08:00
|
|
|
|
2006-06-12 19:32:11 +08:00
|
|
|
#include <osgFX/Scribe>
|
2003-12-16 00:46:06 +08:00
|
|
|
|
2007-01-11 23:19:59 +08:00
|
|
|
#include <iostream>
|
2006-06-12 19:32:11 +08:00
|
|
|
|
2006-06-12 22:04:40 +08:00
|
|
|
class CreateModelToSaveVisitor : public osg::NodeVisitor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
CreateModelToSaveVisitor():
|
|
|
|
osg::NodeVisitor(osg::NodeVisitor::TRAVERSE_ALL_CHILDREN)
|
|
|
|
{
|
|
|
|
_group = new osg::Group;
|
|
|
|
_addToModel = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void apply(osg::Node& node)
|
|
|
|
{
|
|
|
|
osgFX::Scribe* scribe = dynamic_cast<osgFX::Scribe*>(&node);
|
|
|
|
if (scribe)
|
|
|
|
{
|
|
|
|
for(unsigned int i=0; i<scribe->getNumChildren(); ++i)
|
|
|
|
{
|
|
|
|
_group->addChild(scribe->getChild(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
traverse(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::Group> _group;
|
|
|
|
bool _addToModel;
|
|
|
|
};
|
|
|
|
|
2007-01-23 22:10:10 +08:00
|
|
|
class DeleteSelectedNodesVisitor : public osg::NodeVisitor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
DeleteSelectedNodesVisitor():
|
|
|
|
osg::NodeVisitor(osg::NodeVisitor::TRAVERSE_ALL_CHILDREN)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void apply(osg::Node& node)
|
|
|
|
{
|
|
|
|
osgFX::Scribe* scribe = dynamic_cast<osgFX::Scribe*>(&node);
|
|
|
|
if (scribe)
|
|
|
|
{
|
|
|
|
_selectedNodes.push_back(scribe);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
traverse(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void pruneSelectedNodes()
|
|
|
|
{
|
|
|
|
for(SelectedNodes::iterator itr = _selectedNodes.begin();
|
|
|
|
itr != _selectedNodes.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
osg::Node* node = itr->get();
|
|
|
|
osg::Node::ParentList parents = node->getParents();
|
|
|
|
for(osg::Node::ParentList::iterator pitr = parents.begin();
|
|
|
|
pitr != parents.end();
|
|
|
|
++pitr)
|
|
|
|
{
|
|
|
|
osg::Group* parent = *pitr;
|
|
|
|
parent->removeChild(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef std::vector< osg::ref_ptr<osgFX::Scribe> > SelectedNodes;
|
|
|
|
SelectedNodes _selectedNodes;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2006-06-12 22:04:40 +08:00
|
|
|
// class to handle events with a pick
|
2007-01-11 23:19:59 +08:00
|
|
|
class PickHandler : public osgGA::GUIEventHandler
|
|
|
|
{
|
2006-06-12 22:04:40 +08:00
|
|
|
public:
|
|
|
|
|
2006-11-02 20:27:15 +08:00
|
|
|
PickHandler():
|
2007-05-23 19:05:59 +08:00
|
|
|
_mx(0.0),_my(0.0),
|
|
|
|
_usePolytopeIntersector(false),
|
|
|
|
_useWindowCoordinates(false) {}
|
2006-06-12 22:04:40 +08:00
|
|
|
|
|
|
|
~PickHandler() {}
|
|
|
|
|
2006-11-02 20:27:15 +08:00
|
|
|
bool handle(const osgGA::GUIEventAdapter& ea, osgGA::GUIActionAdapter& aa)
|
2006-06-12 22:04:40 +08:00
|
|
|
{
|
2007-06-03 00:23:07 +08:00
|
|
|
osgViewer::Viewer* viewer = dynamic_cast<osgViewer::Viewer*>(&aa);
|
2007-01-23 22:10:10 +08:00
|
|
|
if (!viewer) return false;
|
2006-11-02 20:27:15 +08:00
|
|
|
|
2006-06-12 22:04:40 +08:00
|
|
|
switch(ea.getEventType())
|
|
|
|
{
|
|
|
|
case(osgGA::GUIEventAdapter::KEYUP):
|
|
|
|
{
|
2007-01-23 22:10:10 +08:00
|
|
|
if (ea.getKey()=='s')
|
2006-06-12 22:04:40 +08:00
|
|
|
{
|
2006-11-02 20:27:15 +08:00
|
|
|
saveSelectedModel(viewer->getSceneData());
|
2007-01-23 22:10:10 +08:00
|
|
|
}
|
|
|
|
else if (ea.getKey()=='o')
|
|
|
|
{
|
2011-06-15 00:54:20 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"Saved model to file 'saved_model.osgt'"<<std::endl;
|
|
|
|
osgDB::writeNodeFile(*(viewer->getSceneData()), "saved_model.osgt");
|
2007-01-23 22:10:10 +08:00
|
|
|
}
|
2007-05-23 19:05:59 +08:00
|
|
|
else if (ea.getKey()=='p')
|
|
|
|
{
|
|
|
|
_usePolytopeIntersector = !_usePolytopeIntersector;
|
|
|
|
if (_usePolytopeIntersector)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Using PolytopeIntersector"<<std::endl;
|
|
|
|
} else {
|
|
|
|
osg::notify(osg::NOTICE)<<"Using LineSegmentIntersector"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (ea.getKey()=='c')
|
|
|
|
{
|
|
|
|
_useWindowCoordinates = !_useWindowCoordinates;
|
|
|
|
if (_useWindowCoordinates)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Using window coordinates for picking"<<std::endl;
|
|
|
|
} else {
|
|
|
|
osg::notify(osg::NOTICE)<<"Using projection coordiates for picking"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
2007-01-23 22:10:10 +08:00
|
|
|
else if (ea.getKey()==osgGA::GUIEventAdapter::KEY_Delete || ea.getKey()==osgGA::GUIEventAdapter::KEY_BackSpace)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Delete"<<std::endl;
|
|
|
|
DeleteSelectedNodesVisitor dsnv;
|
|
|
|
viewer->getSceneData()->accept(dsnv);
|
|
|
|
dsnv.pruneSelectedNodes();
|
2006-06-12 22:04:40 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
case(osgGA::GUIEventAdapter::PUSH):
|
|
|
|
case(osgGA::GUIEventAdapter::MOVE):
|
|
|
|
{
|
|
|
|
_mx = ea.getX();
|
|
|
|
_my = ea.getY();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
case(osgGA::GUIEventAdapter::RELEASE):
|
|
|
|
{
|
|
|
|
if (_mx == ea.getX() && _my == ea.getY())
|
|
|
|
{
|
|
|
|
// only do a pick if the mouse hasn't moved
|
2006-11-02 20:27:15 +08:00
|
|
|
pick(ea,viewer);
|
2006-06-12 22:04:40 +08:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-03 00:23:07 +08:00
|
|
|
void pick(const osgGA::GUIEventAdapter& ea, osgViewer::Viewer* viewer)
|
2006-06-12 22:04:40 +08:00
|
|
|
{
|
2006-11-02 20:27:15 +08:00
|
|
|
osg::Node* scene = viewer->getSceneData();
|
2006-06-12 22:04:40 +08:00
|
|
|
if (!scene) return;
|
|
|
|
|
2006-11-02 23:50:04 +08:00
|
|
|
osg::notify(osg::NOTICE)<<std::endl;
|
2006-11-01 22:41:32 +08:00
|
|
|
|
2006-11-02 23:50:04 +08:00
|
|
|
osg::Node* node = 0;
|
|
|
|
osg::Group* parent = 0;
|
2006-11-01 22:41:32 +08:00
|
|
|
|
2007-05-23 19:05:59 +08:00
|
|
|
if (_usePolytopeIntersector)
|
2006-11-02 23:50:04 +08:00
|
|
|
{
|
2007-05-23 19:05:59 +08:00
|
|
|
osgUtil::PolytopeIntersector* picker;
|
|
|
|
if (_useWindowCoordinates)
|
|
|
|
{
|
|
|
|
// use window coordinates
|
|
|
|
// remap the mouse x,y into viewport coordinates.
|
|
|
|
osg::Viewport* viewport = viewer->getCamera()->getViewport();
|
|
|
|
double mx = viewport->x() + (int)((double )viewport->width()*(ea.getXnormalized()*0.5+0.5));
|
|
|
|
double my = viewport->y() + (int)((double )viewport->height()*(ea.getYnormalized()*0.5+0.5));
|
|
|
|
|
|
|
|
// half width, height.
|
|
|
|
double w = 5.0f;
|
|
|
|
double h = 5.0f;
|
|
|
|
picker = new osgUtil::PolytopeIntersector( osgUtil::Intersector::WINDOW, mx-w, my-h, mx+w, my+h );
|
|
|
|
} else {
|
|
|
|
double mx = ea.getXnormalized();
|
|
|
|
double my = ea.getYnormalized();
|
|
|
|
double w = 0.05;
|
|
|
|
double h = 0.05;
|
|
|
|
picker = new osgUtil::PolytopeIntersector( osgUtil::Intersector::PROJECTION, mx-w, my-h, mx+w, my+h );
|
|
|
|
}
|
2006-11-02 23:50:04 +08:00
|
|
|
osgUtil::IntersectionVisitor iv(picker);
|
|
|
|
|
|
|
|
viewer->getCamera()->accept(iv);
|
2006-11-02 20:27:15 +08:00
|
|
|
|
2006-11-02 23:50:04 +08:00
|
|
|
if (picker->containsIntersections())
|
|
|
|
{
|
2007-12-09 00:37:05 +08:00
|
|
|
osgUtil::PolytopeIntersector::Intersection intersection = picker->getFirstIntersection();
|
2006-11-02 23:50:04 +08:00
|
|
|
|
2007-12-09 00:37:05 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"Picked "<<intersection.localIntersectionPoint<<std::endl
|
|
|
|
<<" Distance to ref. plane "<<intersection.distance
|
|
|
|
<<", max. dist "<<intersection.maxDistance
|
|
|
|
<<", primitive index "<<intersection.primitiveIndex
|
|
|
|
<<", numIntersectionPoints "
|
|
|
|
<<intersection.numIntersectionPoints
|
|
|
|
<<std::endl;
|
2006-11-02 23:50:04 +08:00
|
|
|
|
2007-12-09 00:37:05 +08:00
|
|
|
osg::NodePath& nodePath = intersection.nodePath;
|
|
|
|
node = (nodePath.size()>=1)?nodePath[nodePath.size()-1]:0;
|
|
|
|
parent = (nodePath.size()>=2)?dynamic_cast<osg::Group*>(nodePath[nodePath.size()-2]):0;
|
2006-11-02 23:50:04 +08:00
|
|
|
|
2007-12-09 00:37:05 +08:00
|
|
|
if (node) std::cout<<" Hits "<<node->className()<<" nodePath size "<<nodePath.size()<<std::endl;
|
|
|
|
toggleScribe(parent, node);
|
2006-11-02 23:50:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
2006-11-01 22:41:32 +08:00
|
|
|
{
|
2007-05-23 19:05:59 +08:00
|
|
|
osgUtil::LineSegmentIntersector* picker;
|
|
|
|
if (!_useWindowCoordinates)
|
|
|
|
{
|
|
|
|
// use non dimensional coordinates - in projection/clip space
|
|
|
|
picker = new osgUtil::LineSegmentIntersector( osgUtil::Intersector::PROJECTION, ea.getXnormalized(),ea.getYnormalized() );
|
|
|
|
} else {
|
|
|
|
// use window coordinates
|
|
|
|
// remap the mouse x,y into viewport coordinates.
|
|
|
|
osg::Viewport* viewport = viewer->getCamera()->getViewport();
|
|
|
|
float mx = viewport->x() + (int)((float)viewport->width()*(ea.getXnormalized()*0.5f+0.5f));
|
|
|
|
float my = viewport->y() + (int)((float)viewport->height()*(ea.getYnormalized()*0.5f+0.5f));
|
|
|
|
picker = new osgUtil::LineSegmentIntersector( osgUtil::Intersector::WINDOW, mx, my );
|
|
|
|
}
|
2006-11-02 23:50:04 +08:00
|
|
|
osgUtil::IntersectionVisitor iv(picker);
|
2006-11-01 22:41:32 +08:00
|
|
|
|
2006-11-02 23:50:04 +08:00
|
|
|
viewer->getCamera()->accept(iv);
|
2006-11-01 22:41:32 +08:00
|
|
|
|
2006-11-02 23:50:04 +08:00
|
|
|
if (picker->containsIntersections())
|
2006-11-01 22:41:32 +08:00
|
|
|
{
|
2006-11-02 23:50:04 +08:00
|
|
|
osgUtil::LineSegmentIntersector::Intersection intersection = picker->getFirstIntersection();
|
|
|
|
osg::notify(osg::NOTICE)<<"Picked "<<intersection.localIntersectionPoint<<std::endl;
|
2006-11-01 22:41:32 +08:00
|
|
|
|
2006-11-02 23:50:04 +08:00
|
|
|
osg::NodePath& nodePath = intersection.nodePath;
|
|
|
|
node = (nodePath.size()>=1)?nodePath[nodePath.size()-1]:0;
|
|
|
|
parent = (nodePath.size()>=2)?dynamic_cast<osg::Group*>(nodePath[nodePath.size()-2]):0;
|
2006-11-01 22:41:32 +08:00
|
|
|
|
2006-11-02 23:50:04 +08:00
|
|
|
if (node) std::cout<<" Hits "<<node->className()<<" nodePath size"<<nodePath.size()<<std::endl;
|
2007-05-23 19:05:59 +08:00
|
|
|
toggleScribe(parent, node);
|
2006-11-02 23:50:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// now we try to decorate the hit node by the osgFX::Scribe to show that its been "picked"
|
2007-05-23 19:05:59 +08:00
|
|
|
}
|
2006-11-02 23:50:04 +08:00
|
|
|
|
2007-05-23 19:05:59 +08:00
|
|
|
void toggleScribe(osg::Group* parent, osg::Node* node) {
|
|
|
|
if (!parent || !node) return;
|
2006-11-02 23:50:04 +08:00
|
|
|
|
2007-05-23 19:05:59 +08:00
|
|
|
std::cout<<" parent "<<parent->className()<<std::endl;
|
|
|
|
|
|
|
|
osgFX::Scribe* parentAsScribe = dynamic_cast<osgFX::Scribe*>(parent);
|
|
|
|
if (!parentAsScribe)
|
|
|
|
{
|
|
|
|
// node not already picked, so highlight it with an osgFX::Scribe
|
|
|
|
osgFX::Scribe* scribe = new osgFX::Scribe();
|
|
|
|
scribe->addChild(node);
|
|
|
|
parent->replaceChild(node,scribe);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// node already picked so we want to remove scribe to unpick it.
|
|
|
|
osg::Node::ParentList parentList = parentAsScribe->getParents();
|
|
|
|
for(osg::Node::ParentList::iterator itr=parentList.begin();
|
|
|
|
itr!=parentList.end();
|
|
|
|
++itr)
|
2006-11-02 23:50:04 +08:00
|
|
|
{
|
2007-05-23 19:05:59 +08:00
|
|
|
(*itr)->replaceChild(parentAsScribe,node);
|
2006-11-01 22:41:32 +08:00
|
|
|
}
|
|
|
|
}
|
2007-05-23 19:05:59 +08:00
|
|
|
|
2006-06-12 22:04:40 +08:00
|
|
|
}
|
|
|
|
|
2006-11-02 20:27:15 +08:00
|
|
|
void saveSelectedModel(osg::Node* scene)
|
2006-06-12 22:04:40 +08:00
|
|
|
{
|
2006-11-02 20:27:15 +08:00
|
|
|
if (!scene) return;
|
|
|
|
|
2006-06-12 22:04:40 +08:00
|
|
|
CreateModelToSaveVisitor cmtsv;
|
2006-11-02 20:27:15 +08:00
|
|
|
scene->accept(cmtsv);
|
2006-06-12 22:04:40 +08:00
|
|
|
|
|
|
|
if (cmtsv._group->getNumChildren()>0)
|
|
|
|
{
|
2011-06-15 00:54:20 +08:00
|
|
|
std::cout<<"Writing selected compoents to 'selected_model.osgt'"<<std::endl;
|
|
|
|
osgDB::writeNodeFile(*cmtsv._group, "selected_model.osgt");
|
2006-06-12 22:04:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
float _mx,_my;
|
2007-05-23 19:05:59 +08:00
|
|
|
bool _usePolytopeIntersector;
|
|
|
|
bool _useWindowCoordinates;
|
2006-06-12 22:04:40 +08:00
|
|
|
};
|
|
|
|
|
2003-12-16 00:46:06 +08:00
|
|
|
int main( int argc, char **argv )
|
|
|
|
{
|
2007-06-08 23:11:04 +08:00
|
|
|
osg::ref_ptr<osg::Node> loadedModel;
|
|
|
|
|
2003-12-16 00:46:06 +08:00
|
|
|
// load the scene.
|
2007-06-08 23:11:04 +08:00
|
|
|
if (argc>1) loadedModel = osgDB::readNodeFile(argv[1]);
|
|
|
|
|
|
|
|
// if not loaded assume no arguments passed in, try use default mode instead.
|
2011-06-15 00:54:20 +08:00
|
|
|
if (!loadedModel) loadedModel = osgDB::readNodeFile("dumptruck.osgt");
|
2007-06-08 23:11:04 +08:00
|
|
|
|
2003-12-16 00:46:06 +08:00
|
|
|
if (!loadedModel)
|
|
|
|
{
|
|
|
|
std::cout << argv[0] <<": No data loaded." << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create the window to draw to.
|
2007-01-11 23:19:59 +08:00
|
|
|
osg::ref_ptr<osg::GraphicsContext::Traits> traits = new osg::GraphicsContext::Traits;
|
|
|
|
traits->x = 200;
|
|
|
|
traits->y = 200;
|
|
|
|
traits->width = 800;
|
|
|
|
traits->height = 600;
|
|
|
|
traits->windowDecoration = true;
|
|
|
|
traits->doubleBuffer = true;
|
|
|
|
traits->sharedContext = 0;
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::GraphicsContext> gc = osg::GraphicsContext::createGraphicsContext(traits.get());
|
|
|
|
osgViewer::GraphicsWindow* gw = dynamic_cast<osgViewer::GraphicsWindow*>(gc.get());
|
|
|
|
if (!gw)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Error: unable to create graphics window."<<std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-12-16 00:46:06 +08:00
|
|
|
// create the view of the scene.
|
2007-06-03 00:23:07 +08:00
|
|
|
osgViewer::Viewer viewer;
|
|
|
|
viewer.getCamera()->setGraphicsContext(gc.get());
|
|
|
|
viewer.getCamera()->setViewport(0,0,800,600);
|
2006-09-26 00:25:53 +08:00
|
|
|
viewer.setSceneData(loadedModel.get());
|
|
|
|
|
2006-06-12 19:32:11 +08:00
|
|
|
// create a tracball manipulator to move the camera around in response to keyboard/mouse events
|
2006-09-26 00:25:53 +08:00
|
|
|
viewer.setCameraManipulator( new osgGA::TrackballManipulator );
|
2006-06-12 19:32:11 +08:00
|
|
|
|
2007-06-03 00:23:07 +08:00
|
|
|
osg::ref_ptr<osgGA::StateSetManipulator> statesetManipulator = new osgGA::StateSetManipulator(viewer.getCamera()->getStateSet());
|
2006-09-26 00:25:53 +08:00
|
|
|
viewer.addEventHandler(statesetManipulator.get());
|
2003-12-16 00:46:06 +08:00
|
|
|
|
2006-09-26 00:25:53 +08:00
|
|
|
// add the pick handler
|
2006-11-02 20:27:15 +08:00
|
|
|
viewer.addEventHandler(new PickHandler());
|
2006-06-12 19:32:11 +08:00
|
|
|
|
2007-06-03 00:23:07 +08:00
|
|
|
viewer.realize();
|
2006-06-12 19:32:11 +08:00
|
|
|
|
2003-12-16 00:46:06 +08:00
|
|
|
// main loop (note, window toolkits which take control over the main loop will require a window redraw callback containing the code below.)
|
2007-06-03 00:23:07 +08:00
|
|
|
while(!viewer.done())
|
2003-12-16 00:46:06 +08:00
|
|
|
{
|
2007-06-03 00:23:07 +08:00
|
|
|
viewer.frame();
|
2003-12-16 00:46:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|