2006-11-27 22:52:07 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 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 <osgViewer/View>
|
2006-12-20 00:00:51 +08:00
|
|
|
#include <osgViewer/GraphicsWindow>
|
|
|
|
|
|
|
|
#include <osgUtil/SceneView>
|
2006-11-27 22:52:07 +08:00
|
|
|
|
|
|
|
using namespace osgViewer;
|
|
|
|
|
2006-12-21 05:13:29 +08:00
|
|
|
class ActionAdapter : public osgGA::GUIActionAdapter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~ActionAdapter() {}
|
|
|
|
|
|
|
|
virtual void requestRedraw() { /*osg::notify(osg::NOTICE)<<"requestRedraw()"<<std::endl;*/ }
|
|
|
|
virtual void requestContinuousUpdate(bool needed=true) { /*osg::notify(osg::NOTICE)<<"requestContinuousUpdate("<<needed<<")"<<std::endl;*/ }
|
|
|
|
virtual void requestWarpPointer(float x,float y) { osg::notify(osg::NOTICE)<<"requestWarpPointer("<<x<<","<<y<<")"<<std::endl; }
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2006-11-27 22:52:07 +08:00
|
|
|
View::View()
|
|
|
|
{
|
2006-12-20 00:00:51 +08:00
|
|
|
// osg::notify(osg::NOTICE)<<"Constructing osgViewer::View"<<std::endl;
|
2006-12-21 05:13:29 +08:00
|
|
|
setEventQueue(new osgGA::EventQueue);
|
2006-11-27 22:52:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
View::~View()
|
|
|
|
{
|
2006-12-20 00:00:51 +08:00
|
|
|
// osg::notify(osg::NOTICE)<<"Destructing osgViewer::View"<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void View::setSceneData(osg::Node* node)
|
|
|
|
{
|
|
|
|
_scene = new osgViewer::Scene;
|
|
|
|
_scene->setSceneData(node);
|
|
|
|
|
|
|
|
assignSceneDataToCameras();
|
|
|
|
}
|
|
|
|
|
2006-12-21 05:13:29 +08:00
|
|
|
void View::setCameraManipulator(osgGA::MatrixManipulator* manipulator)
|
|
|
|
{
|
|
|
|
_cameraManipulator = manipulator;
|
|
|
|
if (_cameraManipulator.valid() && getSceneData())
|
|
|
|
{
|
|
|
|
_cameraManipulator->setNode(getSceneData());
|
|
|
|
|
|
|
|
osg::ref_ptr<osgGA::GUIEventAdapter> dummyEvent = _eventQueue->createEvent();
|
|
|
|
|
|
|
|
ActionAdapter aa;
|
|
|
|
_cameraManipulator->home(*dummyEvent, aa);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-20 00:00:51 +08:00
|
|
|
void View::setUpViewAcrossAllScreens()
|
|
|
|
{
|
2006-12-21 17:01:56 +08:00
|
|
|
osg::GraphicsContext::WindowingSystemInterface* wsi = osg::GraphicsContext::getWindowingSystemInterface();
|
2006-12-20 00:00:51 +08:00
|
|
|
if (!wsi)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"View::setUpViewAcrossAllScreens() : Error, no WindowSystemInterface available, cannot create windows."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
double fovy, aspectRatio, zNear, zFar;
|
|
|
|
_camera->getProjectionMatrixAsPerspective(fovy, aspectRatio, zNear, zFar);
|
|
|
|
|
|
|
|
double fovx = atan(tan(osg::DegreesToRadians(fovy*0.5)) * aspectRatio) * 2.0;
|
|
|
|
|
|
|
|
unsigned int numScreens = wsi->getNumScreens();
|
|
|
|
if (numScreens==1)
|
|
|
|
{
|
|
|
|
unsigned int width, height;
|
|
|
|
wsi->getScreenResolution(osg::GraphicsContext::ScreenIdentifier(0), width, height);
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::GraphicsContext::Traits> traits = new osg::GraphicsContext::Traits;
|
|
|
|
traits->_x = 0;
|
|
|
|
traits->_y = 0;
|
|
|
|
traits->_width = width;
|
|
|
|
traits->_height = height;
|
|
|
|
traits->_windowDecoration = false;
|
|
|
|
traits->_doubleBuffer = true;
|
|
|
|
traits->_sharedContext = 0;
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::GraphicsContext> gc = osg::GraphicsContext::createGraphicsContext(traits.get());
|
|
|
|
|
|
|
|
_camera->setGraphicsContext(gc.get());
|
|
|
|
|
|
|
|
osgViewer::GraphicsWindow* gw = dynamic_cast<osgViewer::GraphicsWindow*>(gc.get());
|
|
|
|
if (gw)
|
|
|
|
{
|
2006-12-22 00:56:20 +08:00
|
|
|
osg::notify(osg::INFO)<<" GraphicsWindow has been created successfully."<<std::endl;
|
2006-12-20 00:00:51 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<" GraphicsWindow has not been created successfully."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
_camera->setViewport(new osg::Viewport(0, 0, width, height));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
double rotate_x = - double(numScreens-1) * 0.5 * fovx;
|
2006-12-21 05:13:29 +08:00
|
|
|
|
|
|
|
float inputRangeMinX = 0.0f;
|
|
|
|
float inputRangeMinY = 0.0f;
|
|
|
|
|
|
|
|
float maxHeight = 0.0f;
|
2006-12-20 00:00:51 +08:00
|
|
|
|
|
|
|
for(unsigned int i=0; i<numScreens; ++i, rotate_x += fovx)
|
|
|
|
{
|
|
|
|
unsigned int width, height;
|
|
|
|
wsi->getScreenResolution(osg::GraphicsContext::ScreenIdentifier(i), width, height);
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::GraphicsContext::Traits> traits = new osg::GraphicsContext::Traits;
|
|
|
|
traits->_screenNum = i;
|
|
|
|
traits->_x = 0;
|
|
|
|
traits->_y = 0;
|
|
|
|
traits->_width = width;
|
|
|
|
traits->_height = height;
|
|
|
|
traits->_windowDecoration = false;
|
|
|
|
traits->_doubleBuffer = true;
|
|
|
|
traits->_sharedContext = 0;
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::GraphicsContext> gc = osg::GraphicsContext::createGraphicsContext(traits.get());
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setGraphicsContext(gc.get());
|
|
|
|
|
|
|
|
osgViewer::GraphicsWindow* gw = dynamic_cast<osgViewer::GraphicsWindow*>(gc.get());
|
|
|
|
if (gw)
|
|
|
|
{
|
2006-12-22 00:56:20 +08:00
|
|
|
osg::notify(osg::INFO)<<" GraphicsWindow has been created successfully."<<gw<<std::endl;
|
2006-12-21 05:13:29 +08:00
|
|
|
|
|
|
|
gw->getEventQueue()->setUseFixedMouseInputRange(true);
|
|
|
|
gw->getEventQueue()->getCurrentEventState()->setInputRange(inputRangeMinX, inputRangeMinY, inputRangeMinX+float(width),inputRangeMinY+float(height) );
|
|
|
|
inputRangeMinX += float(width);
|
|
|
|
|
|
|
|
if (maxHeight < float(height)) maxHeight = float(height);
|
2006-12-20 00:00:51 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<" GraphicsWindow has not been created successfully."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
camera->setViewport(new osg::Viewport(0, 0, width, height));
|
|
|
|
|
|
|
|
addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate( rotate_x, 0.0, 1.0, 0.0));
|
|
|
|
|
|
|
|
}
|
2006-12-21 05:13:29 +08:00
|
|
|
|
|
|
|
getEventQueue()->setUseFixedMouseInputRange(true);
|
|
|
|
getEventQueue()->getCurrentEventState()->setInputRange(0.0f, 0.0, inputRangeMinX, maxHeight);
|
2006-12-20 00:00:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
setUpRenderingSupport();
|
|
|
|
assignSceneDataToCameras();
|
|
|
|
}
|
|
|
|
|
2006-12-22 00:56:20 +08:00
|
|
|
// Draw operation, that does a draw on the scene graph.
|
|
|
|
struct RenderingOperation : public osg::GraphicsContext::Operation
|
|
|
|
{
|
|
|
|
RenderingOperation(osgViewer::View* view, osg::Camera* camera, osg::FrameStamp* frameStamp):
|
|
|
|
osg::GraphicsContext::Operation("Render",true)
|
|
|
|
{
|
|
|
|
_sceneView = new osgUtil::SceneView;
|
|
|
|
_sceneView->setDefaults();
|
|
|
|
_sceneView->setCamera(camera);
|
|
|
|
_sceneView->setState(camera->getGraphicsContext()->getState());
|
|
|
|
_sceneView->setSceneData(view->getSceneData());
|
|
|
|
_sceneView->setFrameStamp(frameStamp);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void operator () (osg::GraphicsContext*)
|
|
|
|
{
|
|
|
|
_sceneView->cull();
|
|
|
|
_sceneView->draw();
|
|
|
|
}
|
|
|
|
|
|
|
|
osg::ref_ptr<osgUtil::SceneView> _sceneView;
|
|
|
|
};
|
|
|
|
|
2006-12-20 00:00:51 +08:00
|
|
|
void View::setUpRenderingSupport()
|
|
|
|
{
|
2006-12-22 00:56:20 +08:00
|
|
|
osg::FrameStamp* frameStamp = _scene->getFrameStamp();
|
|
|
|
|
2006-12-20 00:00:51 +08:00
|
|
|
if (_camera.valid() && _camera->getGraphicsContext())
|
|
|
|
{
|
2006-12-22 00:56:20 +08:00
|
|
|
_camera->getGraphicsContext()->add(new RenderingOperation(this, _camera.get(), frameStamp));
|
2006-12-20 00:00:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for(unsigned i=0; i<getNumSlaves(); ++i)
|
|
|
|
{
|
|
|
|
Slave& slave = getSlave(i);
|
|
|
|
if (slave._camera.valid() && slave._camera->getGraphicsContext())
|
|
|
|
{
|
2006-12-22 00:56:20 +08:00
|
|
|
slave._camera->getGraphicsContext()->add(new RenderingOperation(this, slave._camera.get(), frameStamp));
|
2006-12-20 00:00:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void View::assignSceneDataToCameras()
|
|
|
|
{
|
|
|
|
osg::Node* sceneData = _scene.valid() ? _scene->getSceneData() : 0;
|
|
|
|
|
2006-12-21 05:13:29 +08:00
|
|
|
if (_cameraManipulator.valid())
|
|
|
|
{
|
|
|
|
_cameraManipulator->setNode(sceneData);
|
|
|
|
|
|
|
|
osg::ref_ptr<osgGA::GUIEventAdapter> dummyEvent = _eventQueue->createEvent();
|
|
|
|
|
|
|
|
ActionAdapter aa;
|
|
|
|
_cameraManipulator->home(*dummyEvent, aa);
|
|
|
|
}
|
|
|
|
|
2006-12-20 00:00:51 +08:00
|
|
|
if (_camera.valid())
|
|
|
|
{
|
|
|
|
_camera->removeChildren(0,_camera->getNumChildren());
|
|
|
|
if (sceneData) _camera->addChild(sceneData);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(unsigned i=0; i<getNumSlaves(); ++i)
|
|
|
|
{
|
|
|
|
Slave& slave = getSlave(i);
|
|
|
|
if (slave._camera.valid())
|
|
|
|
{
|
|
|
|
slave._camera->removeChildren(0,slave._camera->getNumChildren());
|
|
|
|
if (sceneData) slave._camera->addChild(sceneData);
|
|
|
|
}
|
|
|
|
}
|
2006-11-27 22:52:07 +08:00
|
|
|
}
|