2003-01-21 21:14:29 +08:00
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 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.
*/
2003-07-08 22:44:00 +08:00
#ifndef OSGPRODUCER_VIEWER
#define OSGPRODUCER_VIEWER 1
2003-01-21 21:14:29 +08:00
#include <osg/NodeVisitor>
2003-02-19 00:36:42 +08:00
#include <osg/ArgumentParser>
2003-02-21 22:05:39 +08:00
#include <osg/ApplicationUsage>
2003-04-06 06:24:48 +08:00
#include <osg/AnimationPath>
2003-01-21 21:14:29 +08:00
Added convinence methods to osgProducer::Viewer:
/** compute, from normalized mouse coords, for sepecified Camera, the pixel coords relative to that Camera's RenderSurface.*/
bool computePixelCoords(float x,float y,unsigned int cameraNum,float& pixel_x,float& pixel_y);
/** compute, from normalized mouse coords, for sepecified Camera, the near and far points in worlds coords.*/
bool computeNearFar(float x,float y,unsigned int cameraNum,osg::Vec3& near, osg::Vec3& far);
/** compute, from normalized mouse coords, for sepecified Camera, intersections with the scene.*/
bool computeIntersections(float x,float y,unsigned int cameraNum,osgUtil::IntersectVisitor::HitList& hits);
/** compute, from normalized mouse coords, for all Cameras, intersections with the scene.*/
bool computeIntersections(float x,float y,osgUtil::IntersectVisitor::HitList& hits);
2003-04-16 22:17:49 +08:00
#include <osgUtil/IntersectVisitor>
2003-01-21 21:14:29 +08:00
#include <osgGA/GUIActionAdapter>
#include <osgGA/GUIEventHandler>
2003-05-19 23:15:17 +08:00
#include <osgGA/KeySwitchMatrixManipulator>
2003-01-21 21:14:29 +08:00
2003-02-25 20:28:16 +08:00
#include <osgProducer/OsgCameraGroup>
2003-01-21 21:14:29 +08:00
#include <osgProducer/KeyboardMouseCallback>
#include <list>
namespace osgProducer {
2003-02-25 20:28:16 +08:00
class OSGPRODUCER_EXPORT Viewer : public OsgCameraGroup, public osgGA::GUIActionAdapter
2003-01-21 21:14:29 +08:00
{
public :
Viewer();
Viewer(Producer::CameraConfig *cfg);
Viewer(const std::string& configFile);
2003-02-19 00:36:42 +08:00
Viewer(osg::ArgumentParser& arguments);
2003-08-24 04:48:36 +08:00
virtual ~Viewer();
2003-01-21 21:14:29 +08:00
enum ViewerOptions
{
2003-03-19 22:27:05 +08:00
NO_EVENT_HANDLERS = 0,
2003-01-21 21:14:29 +08:00
TRACKBALL_MANIPULATOR = 1,
DRIVE_MANIPULATOR = 2,
FLIGHT_MANIPULATOR = 4,
2004-05-06 19:01:16 +08:00
TERRAIN_MANIPULATOR = 8,
STATE_MANIPULATOR = 16,
HEAD_LIGHT_SOURCE = 32,
SKY_LIGHT_SOURCE = 64,
STATS_MANIPULATOR = 128,
VIEWER_MANIPULATOR = 256,
ESCAPE_SETS_DONE = 512,
2003-01-21 21:14:29 +08:00
STANDARD_SETTINGS = TRACKBALL_MANIPULATOR|
DRIVE_MANIPULATOR |
FLIGHT_MANIPULATOR |
2004-05-06 19:01:16 +08:00
TERRAIN_MANIPULATOR |
2003-01-21 21:14:29 +08:00
STATE_MANIPULATOR |
2003-01-31 07:02:32 +08:00
HEAD_LIGHT_SOURCE |
2003-03-19 22:27:05 +08:00
STATS_MANIPULATOR |
2003-03-25 23:13:20 +08:00
VIEWER_MANIPULATOR |
2003-03-19 22:27:05 +08:00
ESCAPE_SETS_DONE
2003-01-21 21:14:29 +08:00
};
2003-01-24 17:37:11 +08:00
void setUpViewer(unsigned int options=STANDARD_SETTINGS);
2003-01-21 21:14:29 +08:00
2003-09-06 04:48:42 +08:00
void setDone(bool done) { _done = done; }
bool getDone() const { return _done; }
2003-04-08 23:47:45 +08:00
/** return true if the application is done and should exit.*/
2003-04-10 20:55:48 +08:00
virtual bool done() const;
2003-04-08 23:47:45 +08:00
2003-04-10 18:02:24 +08:00
/** Override the Producer::CameraGroup::setViewByMatrix to catch all changes to view.*/
virtual void setViewByMatrix( const Producer::Matrix & pm);
2003-01-21 21:14:29 +08:00
2003-04-08 23:18:45 +08:00
/** Set the threading model and then call realize().*/
virtual bool realize(ThreadingModel thread_model);
virtual bool realize();
2003-04-06 06:24:48 +08:00
2003-06-24 23:40:09 +08:00
/** Updated the scene. Handle any queued up events, do an update traversal and set the CameraGroup's setViewByMatrix if any camera manipulators are active.*/
2003-01-21 21:14:29 +08:00
virtual void update();
2003-06-24 23:40:09 +08:00
/** set the update visitor which does the update traversal of the scene graph. Automatically called by the update() method.*/
2003-12-13 04:33:36 +08:00
void setUpdateVisitor(osg::NodeVisitor* nv) { _updateVisitor = nv; }
2003-06-24 23:40:09 +08:00
/** get the update visitor.*/
2003-12-13 04:33:36 +08:00
osg::NodeVisitor* getUpdateVisitor() { return _updateVisitor.get(); }
2003-06-24 23:40:09 +08:00
/** get the const update visitor.*/
2003-12-13 04:33:36 +08:00
const osg::NodeVisitor* getUpdateVisitor() const { return _updateVisitor.get(); }
2003-06-24 23:40:09 +08:00
2003-01-21 21:14:29 +08:00
2004-05-03 20:04:25 +08:00
typedef std::vector< osg::ref_ptr<osg::Node> > RefNodePath;
2004-04-30 06:19:57 +08:00
2004-05-03 20:04:25 +08:00
void setCoordindateSystemNodePath(const RefNodePath& nodePath) { _coordinateSystemNodePath = nodePath; }
void setCoordindateSystemNodePath(const osg::NodePath& nodePath);
2004-05-06 19:01:16 +08:00
const RefNodePath& getCoordindateSystemNodePath() const { return _coordinateSystemNodePath; }
2004-04-30 06:19:57 +08:00
2003-04-06 06:24:48 +08:00
/** Dispatch the cull and draw for each of the Camera's for this frame.*/
virtual void frame();
2003-01-21 21:14:29 +08:00
2004-06-02 22:13:11 +08:00
virtual void requestRedraw();
virtual void requestContinuousUpdate(bool);
2003-04-05 03:10:37 +08:00
virtual void requestWarpPointer(float x,float y);
2003-01-21 21:14:29 +08:00
2003-04-16 04:54:10 +08:00
Added convinence methods to osgProducer::Viewer:
/** compute, from normalized mouse coords, for sepecified Camera, the pixel coords relative to that Camera's RenderSurface.*/
bool computePixelCoords(float x,float y,unsigned int cameraNum,float& pixel_x,float& pixel_y);
/** compute, from normalized mouse coords, for sepecified Camera, the near and far points in worlds coords.*/
bool computeNearFar(float x,float y,unsigned int cameraNum,osg::Vec3& near, osg::Vec3& far);
/** compute, from normalized mouse coords, for sepecified Camera, intersections with the scene.*/
bool computeIntersections(float x,float y,unsigned int cameraNum,osgUtil::IntersectVisitor::HitList& hits);
/** compute, from normalized mouse coords, for all Cameras, intersections with the scene.*/
bool computeIntersections(float x,float y,osgUtil::IntersectVisitor::HitList& hits);
2003-04-16 22:17:49 +08:00
/** compute, from normalized mouse coords, for sepecified Camera, the pixel coords relative to that Camera's RenderSurface.*/
bool computePixelCoords(float x,float y,unsigned int cameraNum,float& pixel_x,float& pixel_y);
/** compute, from normalized mouse coords, for sepecified Camera, the near and far points in worlds coords.*/
2003-04-16 22:22:36 +08:00
bool computeNearFarPoints(float x,float y,unsigned int cameraNum,osg::Vec3& near, osg::Vec3& far);
2003-04-16 04:54:10 +08:00
2003-11-28 21:41:10 +08:00
/** compute, from normalized mouse coords, for all Cameras, intersections with the specified subgraph.*/
2003-12-04 17:43:34 +08:00
bool computeIntersections(float x,float y,unsigned int cameraNum,osg::Node *node,osgUtil::IntersectVisitor::HitList& hits,osg::Node::NodeMask traversalMask = 0xffffffff);
2003-11-28 21:41:10 +08:00
Added convinence methods to osgProducer::Viewer:
/** compute, from normalized mouse coords, for sepecified Camera, the pixel coords relative to that Camera's RenderSurface.*/
bool computePixelCoords(float x,float y,unsigned int cameraNum,float& pixel_x,float& pixel_y);
/** compute, from normalized mouse coords, for sepecified Camera, the near and far points in worlds coords.*/
bool computeNearFar(float x,float y,unsigned int cameraNum,osg::Vec3& near, osg::Vec3& far);
/** compute, from normalized mouse coords, for sepecified Camera, intersections with the scene.*/
bool computeIntersections(float x,float y,unsigned int cameraNum,osgUtil::IntersectVisitor::HitList& hits);
/** compute, from normalized mouse coords, for all Cameras, intersections with the scene.*/
bool computeIntersections(float x,float y,osgUtil::IntersectVisitor::HitList& hits);
2003-04-16 22:17:49 +08:00
/** compute, from normalized mouse coords, for sepecified Camera, intersections with the scene.*/
2003-12-04 17:43:34 +08:00
bool computeIntersections(float x,float y,unsigned int cameraNum,osgUtil::IntersectVisitor::HitList& hits,osg::Node::NodeMask traversalMask = 0xffffffff);
Added convinence methods to osgProducer::Viewer:
/** compute, from normalized mouse coords, for sepecified Camera, the pixel coords relative to that Camera's RenderSurface.*/
bool computePixelCoords(float x,float y,unsigned int cameraNum,float& pixel_x,float& pixel_y);
/** compute, from normalized mouse coords, for sepecified Camera, the near and far points in worlds coords.*/
bool computeNearFar(float x,float y,unsigned int cameraNum,osg::Vec3& near, osg::Vec3& far);
/** compute, from normalized mouse coords, for sepecified Camera, intersections with the scene.*/
bool computeIntersections(float x,float y,unsigned int cameraNum,osgUtil::IntersectVisitor::HitList& hits);
/** compute, from normalized mouse coords, for all Cameras, intersections with the scene.*/
bool computeIntersections(float x,float y,osgUtil::IntersectVisitor::HitList& hits);
2003-04-16 22:17:49 +08:00
2003-11-28 21:41:10 +08:00
/** compute, from normalized mouse coords, for all Cameras, intersections with specified subgraph.*/
2003-12-04 17:43:34 +08:00
bool computeIntersections(float x,float y,osg::Node *node,osgUtil::IntersectVisitor::HitList& hits,osg::Node::NodeMask traversalMask = 0xffffffff);
2003-11-28 21:41:10 +08:00
Added convinence methods to osgProducer::Viewer:
/** compute, from normalized mouse coords, for sepecified Camera, the pixel coords relative to that Camera's RenderSurface.*/
bool computePixelCoords(float x,float y,unsigned int cameraNum,float& pixel_x,float& pixel_y);
/** compute, from normalized mouse coords, for sepecified Camera, the near and far points in worlds coords.*/
bool computeNearFar(float x,float y,unsigned int cameraNum,osg::Vec3& near, osg::Vec3& far);
/** compute, from normalized mouse coords, for sepecified Camera, intersections with the scene.*/
bool computeIntersections(float x,float y,unsigned int cameraNum,osgUtil::IntersectVisitor::HitList& hits);
/** compute, from normalized mouse coords, for all Cameras, intersections with the scene.*/
bool computeIntersections(float x,float y,osgUtil::IntersectVisitor::HitList& hits);
2003-04-16 22:17:49 +08:00
/** compute, from normalized mouse coords, for all Cameras, intersections with the scene.*/
2003-12-04 17:43:34 +08:00
bool computeIntersections(float x,float y,osgUtil::IntersectVisitor::HitList& hits,osg::Node::NodeMask traversalMask = 0xffffffff);
2003-04-16 04:54:10 +08:00
2003-08-24 04:48:36 +08:00
void setKeyboardMouse(Producer::KeyboardMouse* kbm);
Producer::KeyboardMouse* getKeyboardMouse() { return _kbm.get(); }
const Producer::KeyboardMouse* getKeyboardMouse() const { return _kbm.get(); }
Added convinence methods to osgProducer::Viewer:
/** compute, from normalized mouse coords, for sepecified Camera, the pixel coords relative to that Camera's RenderSurface.*/
bool computePixelCoords(float x,float y,unsigned int cameraNum,float& pixel_x,float& pixel_y);
/** compute, from normalized mouse coords, for sepecified Camera, the near and far points in worlds coords.*/
bool computeNearFar(float x,float y,unsigned int cameraNum,osg::Vec3& near, osg::Vec3& far);
/** compute, from normalized mouse coords, for sepecified Camera, intersections with the scene.*/
bool computeIntersections(float x,float y,unsigned int cameraNum,osgUtil::IntersectVisitor::HitList& hits);
/** compute, from normalized mouse coords, for all Cameras, intersections with the scene.*/
bool computeIntersections(float x,float y,osgUtil::IntersectVisitor::HitList& hits);
2003-04-16 22:17:49 +08:00
2003-08-25 22:03:49 +08:00
void setKeyboardMouseCallback(osgProducer::KeyboardMouseCallback* kbmcb);
osgProducer::KeyboardMouseCallback* getKeyboardMouseCallback() { return _kbmcb.get(); }
const osgProducer::KeyboardMouseCallback* getKeyboardMouseCallback() const { return _kbmcb.get(); }
2003-04-16 04:54:10 +08:00
Added convinence methods to osgProducer::Viewer:
/** compute, from normalized mouse coords, for sepecified Camera, the pixel coords relative to that Camera's RenderSurface.*/
bool computePixelCoords(float x,float y,unsigned int cameraNum,float& pixel_x,float& pixel_y);
/** compute, from normalized mouse coords, for sepecified Camera, the near and far points in worlds coords.*/
bool computeNearFar(float x,float y,unsigned int cameraNum,osg::Vec3& near, osg::Vec3& far);
/** compute, from normalized mouse coords, for sepecified Camera, intersections with the scene.*/
bool computeIntersections(float x,float y,unsigned int cameraNum,osgUtil::IntersectVisitor::HitList& hits);
/** compute, from normalized mouse coords, for all Cameras, intersections with the scene.*/
bool computeIntersections(float x,float y,osgUtil::IntersectVisitor::HitList& hits);
2003-04-16 22:17:49 +08:00
2003-04-16 04:54:10 +08:00
2003-01-22 23:30:17 +08:00
typedef std::list< osg::ref_ptr<osgGA::GUIEventHandler> > EventHandlerList;
EventHandlerList& getEventHandlerList() { return _eventHandlerList; }
2003-04-06 06:24:48 +08:00
const EventHandlerList& getEventHandlerList() const { return _eventHandlerList; }
2003-05-19 23:15:17 +08:00
osgGA::KeySwitchMatrixManipulator* getKeySwitchMatrixManipulator() { return _keyswitchManipulator.get(); }
const osgGA::KeySwitchMatrixManipulator* getKeySwitchMatrixManipulator() const { return _keyswitchManipulator.get(); }
2003-01-22 23:30:17 +08:00
2003-05-19 23:15:17 +08:00
unsigned int addCameraManipulator(osgGA::MatrixManipulator* cm);
2003-01-22 23:30:17 +08:00
void selectCameraManipulator(unsigned int no);
2003-04-06 06:24:48 +08:00
void setRecordingAnimationPath(bool on) { _recordingAnimationPath = on; }
bool getRecordingAnimationPath() const { return _recordingAnimationPath; }
void setAnimationPath(osg::AnimationPath* path) { _animationPath = path; }
osg::AnimationPath* getAnimationPath() { return _animationPath.get(); }
const osg::AnimationPath* getAnimationPath() const { return _animationPath.get(); }
2003-11-05 00:38:10 +08:00
const double* getPosition() const { return _position; }
double getSpeed() const { return _speed; }
osg::Quat getOrientation() const { return _orientation; }
2003-02-19 18:43:02 +08:00
/** Get the keyboard and mouse usage of this viewer.*/
virtual void getUsage(osg::ApplicationUsage& usage) const;
2004-05-03 20:04:25 +08:00
/** update internal structures w.r.t updated scene data.*/
virtual void updatedSceneData();
2003-01-22 23:30:17 +08:00
2003-01-21 21:14:29 +08:00
protected :
bool _done;
2003-08-24 04:48:36 +08:00
osg::ref_ptr<Producer::KeyboardMouse> _kbm;
osg::ref_ptr<osgProducer::KeyboardMouseCallback> _kbmcb;
2003-01-21 21:14:29 +08:00
EventHandlerList _eventHandlerList;
2003-05-19 23:15:17 +08:00
osg::ref_ptr<osgGA::KeySwitchMatrixManipulator> _keyswitchManipulator;
2003-01-21 21:14:29 +08:00
2003-11-05 00:38:10 +08:00
osg::ref_ptr<osg::NodeVisitor> _updateVisitor;
2003-04-06 06:24:48 +08:00
2004-05-03 20:04:25 +08:00
RefNodePath _coordinateSystemNodePath;
2004-04-30 06:19:57 +08:00
2003-04-06 06:24:48 +08:00
bool _recordingAnimationPath;
2004-03-26 19:04:37 +08:00
double _recordingStartTime;
2003-04-06 06:24:48 +08:00
osg::ref_ptr<osg::AnimationPath> _animationPath;
2003-11-05 00:38:10 +08:00
// record the current position and orientation of the view.
double _position[3];
osg::Quat _orientation;
double _speed;
2003-01-21 21:14:29 +08:00
};
}
#endif