OpenSceneGraph/include/osgGLUT/Viewer

180 lines
6.2 KiB
Plaintext
Raw Normal View History

2002-07-17 04:07:32 +08:00
//C++ header - Open Scene Graph - Copyright (C) 1998-2002 Robert Osfield
//Distributed under the terms of the GNU Library General Public License (LGPL)
//as published by the Free Software Foundation.
2001-01-11 00:32:10 +08:00
#ifndef OSGGLUT_VIEWER
#define OSGGLUT_VIEWER 1
#include <osg/Light>
#include <osg/NodeVisitor>
#include <osg/Geode>
#include <osg/Timer>
#include <osg/DisplaySettings>
2001-01-11 00:32:10 +08:00
#include <osgGA/GUIEventAdapter>
#include <osgGA/CameraManipulator>
2001-01-11 00:32:10 +08:00
#include <osgUtil/SceneView>
#include <osgGLUT/Window>
2001-01-11 00:32:10 +08:00
#include <string>
namespace osgGLUT
{
2001-01-11 00:32:10 +08:00
/** A basic viewer base class which provides a window, simple keyboard and mouse interaction.
* Please note, this viewer class has been developed via a rather haphazard
2001-09-28 20:36:40 +08:00
* path and <i>needs</i> a total rewrite. It currently suffices for osg demos
* but shouldn't be viewed as the be all and end of osg viewer classes.
2001-01-11 00:32:10 +08:00
* Someone please rewrite it :-)
*/
class OSGGLUT_EXPORT Viewer : public Window, public osgGA::GUIActionAdapter
2001-01-11 00:32:10 +08:00
{
public:
Viewer();
virtual ~Viewer();
/** init is deprecated, you should use addViewport instead. init is
* only available for backwards compatibility.*/
virtual void init(osg::Node* rootnode);
2002-07-27 18:09:39 +08:00
virtual unsigned int addViewport(osgUtil::SceneView* sv,
float x = 0.0, float y = 0.0,
float width = 1.0, float height = 1.0);
2002-07-27 18:09:39 +08:00
virtual unsigned int addViewport(osg::Node*,
float x = 0.0, float y = 0.0,
float width = 1.0, float height = 1.0);
2002-07-27 18:09:39 +08:00
const unsigned int getNumViewports() const { return _viewportList.size(); }
osgUtil::SceneView* getViewportSceneView(unsigned int pos)
{ return _viewportList[pos].sceneView.get(); }
virtual bool open();
2001-01-11 00:32:10 +08:00
virtual bool run();
// called on each frame redraw..return the time in ms for each operation.
virtual float app(unsigned int viewport);
virtual float cull(unsigned int viewport);
virtual float draw(unsigned int viewport);
2001-01-11 00:32:10 +08:00
// initialize the clock.
long initClock();
// time since initClock() in seconds.
2001-09-22 10:42:08 +08:00
double clockSeconds() { return _timer.delta_s(_initialTick,clockTick()); }
2001-01-11 00:32:10 +08:00
// update the number of ticks since the last frame update.
osg::Timer_t updateFrameTick();
// time from the current frame update and the previous one in seconds.
2001-09-22 10:42:08 +08:00
double frameSeconds() { return _timer.delta_s(_lastFrameTick,_frameTick); }
double frameRate() { return 1.0/frameSeconds(); }
2001-01-11 00:32:10 +08:00
void help(std::ostream& fout);
2001-01-11 00:32:10 +08:00
2001-09-28 20:36:40 +08:00
// handle multiple camera.
unsigned int registerCameraManipulator(osgGA::CameraManipulator* cm,
unsigned int viewport = 0);
void selectCameraManipulator(unsigned int pos,
unsigned int viewport = 0);
2001-01-11 00:32:10 +08:00
void setEventHandler(osgGA::GUIEventHandler* handler,unsigned int viewport = 0);
// derived from osgGA::GUIActionAdapter
2001-09-28 20:36:40 +08:00
virtual void requestRedraw() {} // redraw always by idle callback done.
virtual void requestContinuousUpdate(bool /*needed*/) {} // continuous update always
virtual void requestWarpPointer(int x,int y);
2001-01-11 00:32:10 +08:00
/** read the command line string list, removing any matched control sequences.*/
void readCommandLine(std::vector<std::string>& commandLine);
void setDisplaySettings(osg::DisplaySettings* ds) { _displaySettings = ds; }
osg::DisplaySettings* getDisplaySettings() { return _displaySettings.get(); }
const osg::DisplaySettings* getDisplaySettings() const { return _displaySettings.get(); }
typedef std::vector<osg::ref_ptr<osgGA::CameraManipulator> > CameraManipList;
2001-01-11 00:32:10 +08:00
protected:
virtual void clear();
2001-01-11 00:32:10 +08:00
virtual void display();
virtual void reshape(GLint w, GLint h);
virtual void mouseMotion(int x, int y);
virtual void mousePassiveMotion(int x, int y);
virtual void mouse(int button, int state, int x, int y);
virtual void keyboard(unsigned char key, int x, int y);
void setFocusedViewport(unsigned int pos);
int mapWindowXYToSceneView(int x, int y);
2001-01-11 00:32:10 +08:00
void showStats(const unsigned int i); // gwm 24.09.01 pass the viewport to collect sta for each viewport
2001-01-11 00:32:10 +08:00
static Viewer* s_theViewer;
struct ViewportDef
{
osg::ref_ptr<osgUtil::SceneView> sceneView;
float viewport[4]; // Win-size-relative [0,1]
2001-01-11 00:32:10 +08:00
osg::ref_ptr<osgGA::CameraManipulator> _cameraManipulator;
CameraManipList _cameraManipList;
osg::ref_ptr<osgGA::GUIEventHandler> _eventHandler;
};
typedef std::vector<ViewportDef> ViewportList;
ViewportList _viewportList;
unsigned int _focusedViewport;
2001-01-11 00:32:10 +08:00
std::string _saveFileName;
bool _viewFrustumCullingActive;
bool _smallFeatureCullingActive;
int polymode;
int texture;
int backface;
int lighting;
int flat_shade;
float frRate; // gwm Jul 2001 added convolved ('averaged') frame rate
int _printStats; // gwm Jul 2001 change from bool
struct StatsRecord
{ // gwm Jul 2001, added for display of statistics
StatsRecord():
timeApp(0), timeCull(0), timeDraw(0), timeFrame(0),
frameend(0) {}
float timeApp, timeCull, timeDraw, timeFrame;
osg::Timer_t frameend;
};
StatsRecord times[3]; // store up to 3 frames worth of times
2001-01-11 00:32:10 +08:00
bool _useDisplayLists;
osg::Timer _timer;
osg::Timer_t _initialTick;
osg::Timer_t _lastFrameTick;
osg::Timer_t _frameTick;
// system tick.
osg::Timer_t clockTick();
osg::Timer_t frameTick();
osg::ref_ptr<osg::FrameStamp> _frameStamp;
osg::ref_ptr<osg::DisplaySettings> _displaySettings;
2001-09-22 10:42:08 +08:00
2001-01-11 00:32:10 +08:00
};
}
#endif // SG_VIEWIER_H