2003-12-28 06:17:41 +08:00
|
|
|
#include <osg/GLExtensions>
|
|
|
|
#include <osg/Node>
|
|
|
|
#include <osg/Geometry>
|
|
|
|
#include <osg/Notify>
|
|
|
|
#include <osg/MatrixTransform>
|
|
|
|
#include <osg/Texture2D>
|
|
|
|
#include <osg/Stencil>
|
|
|
|
#include <osg/ColorMask>
|
|
|
|
#include <osg/Depth>
|
|
|
|
#include <osg/Billboard>
|
|
|
|
#include <osg/Material>
|
|
|
|
#include <osg/Projection>
|
2007-02-21 05:06:24 +08:00
|
|
|
#include <osg/TextureCubeMap>
|
|
|
|
#include <osg/io_utils>
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2007-02-22 03:41:03 +08:00
|
|
|
|
2003-12-28 06:17:41 +08:00
|
|
|
#include <osgGA/TrackballManipulator>
|
|
|
|
#include <osgGA/FlightManipulator>
|
|
|
|
#include <osgGA/DriveManipulator>
|
2007-02-22 03:41:03 +08:00
|
|
|
#include <osgGA/KeySwitchMatrixManipulator>
|
2007-02-21 05:06:24 +08:00
|
|
|
#include <osgGA/StateSetManipulator>
|
2007-02-22 03:41:03 +08:00
|
|
|
#include <osgGA/AnimationPathManipulator>
|
|
|
|
#include <osgGA/TerrainManipulator>
|
2003-12-28 06:17:41 +08:00
|
|
|
|
|
|
|
#include <osgUtil/SmoothingVisitor>
|
|
|
|
|
|
|
|
#include <osgDB/Registry>
|
|
|
|
#include <osgDB/ReadFile>
|
|
|
|
|
2007-01-07 05:35:57 +08:00
|
|
|
#include <osgViewer/Viewer>
|
2007-02-21 05:06:24 +08:00
|
|
|
#include <osgViewer/StatsHandler>
|
|
|
|
#include <osgViewer/HelpHandler>
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2004-01-29 23:47:51 +08:00
|
|
|
using namespace osg;
|
|
|
|
|
2005-07-20 00:30:55 +08:00
|
|
|
osg::Node* createDistortionSubgraph(osg::Node* subgraph, const osg::Vec4& clearColour)
|
2003-12-28 06:17:41 +08:00
|
|
|
{
|
2005-07-09 22:35:35 +08:00
|
|
|
osg::Group* distortionNode = new osg::Group;
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
unsigned int tex_width = 1024;
|
|
|
|
unsigned int tex_height = 1024;
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
osg::Texture2D* texture = new osg::Texture2D;
|
|
|
|
texture->setTextureSize(tex_width, tex_height);
|
|
|
|
texture->setInternalFormat(GL_RGBA);
|
|
|
|
texture->setFilter(osg::Texture2D::MIN_FILTER,osg::Texture2D::LINEAR);
|
|
|
|
texture->setFilter(osg::Texture2D::MAG_FILTER,osg::Texture2D::LINEAR);
|
|
|
|
|
|
|
|
// set up the render to texture camera.
|
2003-12-28 06:17:41 +08:00
|
|
|
{
|
2006-11-27 22:52:07 +08:00
|
|
|
osg::Camera* camera = new osg::Camera;
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-20 00:30:55 +08:00
|
|
|
// set clear the color and depth buffer
|
|
|
|
camera->setClearColor(clearColour);
|
|
|
|
camera->setClearMask(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
|
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// just inherit the main cameras view
|
|
|
|
camera->setReferenceFrame(osg::Transform::RELATIVE_RF);
|
|
|
|
camera->setProjectionMatrix(osg::Matrixd::identity());
|
|
|
|
camera->setViewMatrix(osg::Matrixd::identity());
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// set viewport
|
|
|
|
camera->setViewport(0,0,tex_width,tex_height);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// set the camera to render before the main camera.
|
2006-11-27 22:52:07 +08:00
|
|
|
camera->setRenderOrder(osg::Camera::PRE_RENDER);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// tell the camera to use OpenGL frame buffer object where supported.
|
2006-11-27 22:52:07 +08:00
|
|
|
camera->setRenderTargetImplementation(osg::Camera::FRAME_BUFFER_OBJECT);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// attach the texture and use it as the color buffer.
|
2006-11-27 22:52:07 +08:00
|
|
|
camera->attach(osg::Camera::COLOR_BUFFER, texture);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// add subgraph to render
|
|
|
|
camera->addChild(subgraph);
|
|
|
|
|
|
|
|
distortionNode->addChild(camera);
|
|
|
|
}
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2007-02-21 05:06:24 +08:00
|
|
|
// set up the hud camera
|
2005-07-09 22:35:35 +08:00
|
|
|
{
|
|
|
|
// create the quad to visualize.
|
|
|
|
osg::Geometry* polyGeom = new osg::Geometry();
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
polyGeom->setSupportsDisplayList(false);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
osg::Vec3 origin(0.0f,0.0f,0.0f);
|
|
|
|
osg::Vec3 xAxis(1.0f,0.0f,0.0f);
|
|
|
|
osg::Vec3 yAxis(0.0f,1.0f,0.0f);
|
|
|
|
float height = 1024.0f;
|
|
|
|
float width = 1280.0f;
|
|
|
|
int noSteps = 50;
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
osg::Vec3Array* vertices = new osg::Vec3Array;
|
|
|
|
osg::Vec2Array* texcoords = new osg::Vec2Array;
|
|
|
|
osg::Vec4Array* colors = new osg::Vec4Array;
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
osg::Vec3 bottom = origin;
|
|
|
|
osg::Vec3 dx = xAxis*(width/((float)(noSteps-1)));
|
|
|
|
osg::Vec3 dy = yAxis*(height/((float)(noSteps-1)));
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
osg::Vec2 bottom_texcoord(0.0f,0.0f);
|
|
|
|
osg::Vec2 dx_texcoord(1.0f/(float)(noSteps-1),0.0f);
|
|
|
|
osg::Vec2 dy_texcoord(0.0f,1.0f/(float)(noSteps-1));
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
osg::Vec3 cursor = bottom;
|
|
|
|
osg::Vec2 texcoord = bottom_texcoord;
|
|
|
|
int i,j;
|
|
|
|
for(i=0;i<noSteps;++i)
|
2003-12-28 06:17:41 +08:00
|
|
|
{
|
2005-07-09 22:35:35 +08:00
|
|
|
osg::Vec3 cursor = bottom+dy*(float)i;
|
|
|
|
osg::Vec2 texcoord = bottom_texcoord+dy_texcoord*(float)i;
|
|
|
|
for(j=0;j<noSteps;++j)
|
|
|
|
{
|
|
|
|
vertices->push_back(cursor);
|
|
|
|
texcoords->push_back(osg::Vec2((sin(texcoord.x()*osg::PI-osg::PI*0.5)+1.0f)*0.5f,(sin(texcoord.y()*osg::PI-osg::PI*0.5)+1.0f)*0.5f));
|
|
|
|
colors->push_back(osg::Vec4(1.0f,1.0f,1.0f,1.0f));
|
|
|
|
|
|
|
|
cursor += dx;
|
|
|
|
texcoord += dx_texcoord;
|
|
|
|
}
|
2003-12-28 06:17:41 +08:00
|
|
|
}
|
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// pass the created vertex array to the points geometry object.
|
|
|
|
polyGeom->setVertexArray(vertices);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
polyGeom->setColorArray(colors);
|
|
|
|
polyGeom->setColorBinding(osg::Geometry::BIND_PER_VERTEX);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
polyGeom->setTexCoordArray(0,texcoords);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
for(i=0;i<noSteps-1;++i)
|
|
|
|
{
|
|
|
|
osg::DrawElementsUShort* elements = new osg::DrawElementsUShort(osg::PrimitiveSet::QUAD_STRIP);
|
|
|
|
for(j=0;j<noSteps;++j)
|
|
|
|
{
|
|
|
|
elements->push_back(j+(i+1)*noSteps);
|
|
|
|
elements->push_back(j+(i)*noSteps);
|
|
|
|
}
|
|
|
|
polyGeom->addPrimitiveSet(elements);
|
|
|
|
}
|
2003-12-28 06:17:41 +08:00
|
|
|
|
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// new we need to add the texture to the Drawable, we do so by creating a
|
|
|
|
// StateSet to contain the Texture StateAttribute.
|
|
|
|
osg::StateSet* stateset = polyGeom->getOrCreateStateSet();
|
|
|
|
stateset->setTextureAttributeAndModes(0, texture,osg::StateAttribute::ON);
|
|
|
|
stateset->setMode(GL_LIGHTING,osg::StateAttribute::OFF);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
osg::Geode* geode = new osg::Geode();
|
|
|
|
geode->addDrawable(polyGeom);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// set up the camera to render the textured quad
|
2006-11-27 22:52:07 +08:00
|
|
|
osg::Camera* camera = new osg::Camera;
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// just inherit the main cameras view
|
|
|
|
camera->setReferenceFrame(osg::Transform::ABSOLUTE_RF);
|
|
|
|
camera->setViewMatrix(osg::Matrix::identity());
|
|
|
|
camera->setProjectionMatrixAsOrtho2D(0,1280,0,1024);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// set the camera to render before the main camera.
|
2006-11-27 22:52:07 +08:00
|
|
|
camera->setRenderOrder(osg::Camera::NESTED_RENDER);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2005-07-09 22:35:35 +08:00
|
|
|
// add subgraph to render
|
|
|
|
camera->addChild(geode);
|
|
|
|
|
|
|
|
distortionNode->addChild(camera);
|
2003-12-28 06:17:41 +08:00
|
|
|
}
|
2005-07-09 22:35:35 +08:00
|
|
|
return distortionNode;
|
2003-12-28 06:17:41 +08:00
|
|
|
}
|
|
|
|
|
2007-02-21 05:06:24 +08:00
|
|
|
void setDomeFaces(osgViewer::Viewer& viewer, osg::ArgumentParser& /*arguments*/)
|
2007-02-20 19:44:10 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
osg::GraphicsContext::WindowingSystemInterface* wsi = osg::GraphicsContext::getWindowingSystemInterface();
|
|
|
|
if (!wsi)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Error, no WindowSystemInterface available, cannot create windows."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 = true;
|
|
|
|
traits->doubleBuffer = true;
|
|
|
|
traits->sharedContext = 0;
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::GraphicsContext> gc = osg::GraphicsContext::createGraphicsContext(traits.get());
|
|
|
|
if (!gc)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"GraphicsWindow has not been created successfully."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int center_x = width/2;
|
|
|
|
int center_y = height/2;
|
|
|
|
int camera_width = 256;
|
|
|
|
int camera_height = 256;
|
|
|
|
|
|
|
|
// front face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setGraphicsContext(gc.get());
|
|
|
|
camera->setViewport(new osg::Viewport(center_x-camera_width/2, center_y, camera_width, camera_height));
|
2007-02-22 03:41:03 +08:00
|
|
|
|
2007-02-20 19:44:10 +08:00
|
|
|
GLenum buffer = traits->doubleBuffer ? GL_BACK : GL_FRONT;
|
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
|
|
|
|
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd());
|
|
|
|
}
|
|
|
|
|
|
|
|
// top face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setGraphicsContext(gc.get());
|
|
|
|
camera->setViewport(new osg::Viewport(center_x-camera_width/2, center_y+camera_height, camera_width, camera_height));
|
|
|
|
GLenum buffer = traits->doubleBuffer ? GL_BACK : GL_FRONT;
|
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
|
|
|
|
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate(osg::inDegrees(-90.0f), 1.0,0.0,0.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
// left face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setGraphicsContext(gc.get());
|
|
|
|
camera->setViewport(new osg::Viewport(center_x-camera_width*3/2, center_y, camera_width, camera_height));
|
|
|
|
GLenum buffer = traits->doubleBuffer ? GL_BACK : GL_FRONT;
|
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
|
|
|
|
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate(osg::inDegrees(-90.0f), 0.0,1.0,0.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
// right face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setGraphicsContext(gc.get());
|
|
|
|
camera->setViewport(new osg::Viewport(center_x+camera_width/2, center_y, camera_width, camera_height));
|
|
|
|
GLenum buffer = traits->doubleBuffer ? GL_BACK : GL_FRONT;
|
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
|
|
|
|
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate(osg::inDegrees(90.0f), 0.0,1.0,0.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
// bottom face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setGraphicsContext(gc.get());
|
|
|
|
camera->setViewport(new osg::Viewport(center_x-camera_width/2, center_y-camera_height, camera_width, camera_height));
|
|
|
|
GLenum buffer = traits->doubleBuffer ? GL_BACK : GL_FRONT;
|
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
|
|
|
|
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate(osg::inDegrees(90.0f), 1.0,0.0,0.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
// back face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setGraphicsContext(gc.get());
|
|
|
|
camera->setViewport(new osg::Viewport(center_x-camera_width/2, center_y-2*camera_height, camera_width, camera_height));
|
|
|
|
GLenum buffer = traits->doubleBuffer ? GL_BACK : GL_FRONT;
|
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
|
|
|
|
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate(osg::inDegrees(-180.0f), 1.0,0.0,0.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
viewer.getCamera()->setProjectionMatrixAsPerspective(90.0f, 1.0, 1, 1000.0);
|
|
|
|
|
|
|
|
viewer.assignSceneDataToCameras();
|
|
|
|
}
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2007-02-23 00:42:59 +08:00
|
|
|
osg::Geometry* createDomeDistortionMesh(const osg::Vec3& origin, const osg::Vec3& widthVector, const osg::Vec3& heightVector,
|
|
|
|
osg::ArgumentParser& arguments)
|
2007-02-22 19:17:45 +08:00
|
|
|
{
|
2007-02-23 00:42:59 +08:00
|
|
|
double sphere_radius = 1.0;
|
2007-03-03 00:14:44 +08:00
|
|
|
if (arguments.read("--radius", sphere_radius)) {}
|
|
|
|
|
2007-02-23 00:42:59 +08:00
|
|
|
double collar_radius = 0.45;
|
2007-03-03 00:14:44 +08:00
|
|
|
if (arguments.read("--collar", collar_radius)) {}
|
|
|
|
|
2007-02-23 00:42:59 +08:00
|
|
|
osg::Vec3d center(0.0,0.0,0.0);
|
|
|
|
osg::Vec3d eye(0.0,0.0,0.0);
|
|
|
|
|
|
|
|
double distance = sqrt(sphere_radius*sphere_radius - collar_radius*collar_radius);
|
2007-03-03 00:14:44 +08:00
|
|
|
if (arguments.read("--distance", distance)) {}
|
|
|
|
|
|
|
|
bool centerProjection = false;
|
|
|
|
|
2007-02-23 00:42:59 +08:00
|
|
|
osg::Vec3d projector = eye - osg::Vec3d(0.0,0.0, distance);
|
|
|
|
|
2007-03-03 00:14:44 +08:00
|
|
|
|
2007-02-23 00:42:59 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"Projector position = "<<projector<<std::endl;
|
2007-03-03 00:14:44 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"distance = "<<distance<<std::endl;
|
2007-02-23 00:42:59 +08:00
|
|
|
|
|
|
|
|
2007-02-22 19:17:45 +08:00
|
|
|
// create the quad to visualize.
|
|
|
|
osg::Geometry* geometry = new osg::Geometry();
|
|
|
|
|
|
|
|
geometry->setSupportsDisplayList(false);
|
|
|
|
|
|
|
|
osg::Vec3 xAxis(widthVector);
|
|
|
|
float width = widthVector.length();
|
|
|
|
xAxis /= width;
|
|
|
|
|
|
|
|
osg::Vec3 yAxis(heightVector);
|
|
|
|
float height = heightVector.length();
|
|
|
|
yAxis /= height;
|
|
|
|
|
2007-03-03 00:14:44 +08:00
|
|
|
int noSteps = 50;
|
2007-02-22 19:17:45 +08:00
|
|
|
|
|
|
|
osg::Vec3Array* vertices = new osg::Vec3Array;
|
|
|
|
osg::Vec3Array* texcoords = new osg::Vec3Array;
|
|
|
|
osg::Vec4Array* colors = new osg::Vec4Array;
|
|
|
|
|
|
|
|
osg::Vec3 bottom = origin;
|
|
|
|
osg::Vec3 dx = xAxis*(width/((float)(noSteps-1)));
|
|
|
|
osg::Vec3 dy = yAxis*(height/((float)(noSteps-1)));
|
2007-02-23 00:42:59 +08:00
|
|
|
|
|
|
|
osg::Vec3d screenCenter = origin + widthVector*0.5f + heightVector*0.5f;
|
|
|
|
float screenRadius = heightVector.length() * 0.5f;
|
2007-02-22 19:17:45 +08:00
|
|
|
|
|
|
|
osg::Vec3 cursor = bottom;
|
|
|
|
int i,j;
|
2007-03-03 00:14:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
if (centerProjection)
|
2007-02-22 19:17:45 +08:00
|
|
|
{
|
2007-03-03 00:14:44 +08:00
|
|
|
for(i=0;i<noSteps;++i)
|
2007-02-22 19:17:45 +08:00
|
|
|
{
|
2007-03-03 00:14:44 +08:00
|
|
|
osg::Vec3 cursor = bottom+dy*(float)i;
|
|
|
|
for(j=0;j<noSteps;++j)
|
|
|
|
{
|
|
|
|
osg::Vec2 delta(cursor.x() - screenCenter.x(), cursor.y() - screenCenter.y());
|
|
|
|
double theta = atan2(-delta.y(), delta.x());
|
|
|
|
double phi = osg::PI_2 * delta.length() / screenRadius;
|
|
|
|
if (phi > osg::PI_2) phi = osg::PI_2;
|
|
|
|
|
|
|
|
phi *= 2.0;
|
|
|
|
|
|
|
|
// osg::notify(osg::NOTICE)<<"theta = "<<theta<< "phi="<<phi<<std::endl;
|
|
|
|
|
|
|
|
osg::Vec3 texcoord(sin(phi) * cos(theta),
|
|
|
|
sin(phi) * sin(theta),
|
|
|
|
cos(phi));
|
|
|
|
|
|
|
|
vertices->push_back(cursor);
|
|
|
|
colors->push_back(osg::Vec4(1.0f,1.0f,1.0f,1.0f));
|
|
|
|
texcoords->push_back(texcoord);
|
|
|
|
|
|
|
|
cursor += dx;
|
|
|
|
}
|
|
|
|
// osg::notify(osg::NOTICE)<<std::endl;
|
2007-02-22 19:17:45 +08:00
|
|
|
}
|
|
|
|
}
|
2007-03-03 00:14:44 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
for(i=0;i<noSteps;++i)
|
|
|
|
{
|
|
|
|
osg::Vec3 cursor = bottom+dy*(float)i;
|
|
|
|
for(j=0;j<noSteps;++j)
|
|
|
|
{
|
|
|
|
osg::Vec2 delta(cursor.x() - screenCenter.x(), cursor.y() - screenCenter.y());
|
|
|
|
double theta = atan2(-delta.y(), delta.x());
|
|
|
|
double phi = osg::PI_2 * delta.length() / screenRadius;
|
|
|
|
if (phi > osg::PI_2) phi = osg::PI_2;
|
|
|
|
|
|
|
|
// osg::notify(osg::NOTICE)<<"theta = "<<theta<< "phi="<<phi<<std::endl;
|
|
|
|
|
|
|
|
double f = distance * sin(phi);
|
|
|
|
double e = distance * cos(phi) + sqrt( sphere_radius*sphere_radius - f*f);
|
|
|
|
double l = e * cos(phi);
|
|
|
|
double h = e * sin(phi);
|
|
|
|
double z = l - distance;
|
|
|
|
|
|
|
|
osg::Vec3 texcoord(h * cos(theta) / sphere_radius,
|
|
|
|
h * sin(theta) / sphere_radius,
|
|
|
|
z / sphere_radius);
|
|
|
|
|
|
|
|
vertices->push_back(cursor);
|
|
|
|
colors->push_back(osg::Vec4(1.0f,1.0f,1.0f,1.0f));
|
|
|
|
texcoords->push_back(texcoord);
|
2007-02-22 19:17:45 +08:00
|
|
|
|
2007-03-03 00:14:44 +08:00
|
|
|
cursor += dx;
|
|
|
|
}
|
|
|
|
// osg::notify(osg::NOTICE)<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-22 19:17:45 +08:00
|
|
|
// pass the created vertex array to the points geometry object.
|
|
|
|
geometry->setVertexArray(vertices);
|
|
|
|
|
|
|
|
geometry->setColorArray(colors);
|
|
|
|
geometry->setColorBinding(osg::Geometry::BIND_PER_VERTEX);
|
|
|
|
|
|
|
|
geometry->setTexCoordArray(0,texcoords);
|
|
|
|
|
|
|
|
for(i=0;i<noSteps-1;++i)
|
|
|
|
{
|
|
|
|
osg::DrawElementsUShort* elements = new osg::DrawElementsUShort(osg::PrimitiveSet::QUAD_STRIP);
|
|
|
|
for(j=0;j<noSteps;++j)
|
|
|
|
{
|
|
|
|
elements->push_back(j+(i+1)*noSteps);
|
|
|
|
elements->push_back(j+(i)*noSteps);
|
|
|
|
}
|
|
|
|
geometry->addPrimitiveSet(elements);
|
|
|
|
}
|
|
|
|
|
|
|
|
return geometry;
|
|
|
|
};
|
|
|
|
|
|
|
|
void setDomeCorrection(osgViewer::Viewer& viewer, osg::ArgumentParser& arguments)
|
2007-02-21 05:06:24 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
osg::GraphicsContext::WindowingSystemInterface* wsi = osg::GraphicsContext::getWindowingSystemInterface();
|
|
|
|
if (!wsi)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Error, no WindowSystemInterface available, cannot create windows."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
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());
|
|
|
|
if (!gc)
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"GraphicsWindow has not been created successfully."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-02-22 03:41:03 +08:00
|
|
|
int tex_width = 512;
|
|
|
|
int tex_height = 512;
|
|
|
|
|
2007-02-22 19:17:45 +08:00
|
|
|
int camera_width = tex_width;
|
|
|
|
int camera_height = tex_height;
|
|
|
|
|
2007-02-21 05:06:24 +08:00
|
|
|
osg::TextureCubeMap* texture = new osg::TextureCubeMap;
|
2007-02-22 19:17:45 +08:00
|
|
|
|
2007-02-21 05:06:24 +08:00
|
|
|
texture->setTextureSize(tex_width, tex_height);
|
|
|
|
texture->setInternalFormat(GL_RGB);
|
2007-02-22 03:41:03 +08:00
|
|
|
texture->setFilter(osg::Texture::MIN_FILTER,osg::Texture::LINEAR);
|
|
|
|
texture->setFilter(osg::Texture::MAG_FILTER,osg::Texture::LINEAR);
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
osg::Camera::RenderTargetImplementation renderTargetImplementation = osg::Camera::SEPERATE_WINDOW;
|
|
|
|
GLenum buffer = GL_FRONT;
|
|
|
|
#else
|
|
|
|
osg::Camera::RenderTargetImplementation renderTargetImplementation = osg::Camera::FRAME_BUFFER_OBJECT;
|
|
|
|
GLenum buffer = GL_FRONT;
|
|
|
|
#endif
|
2007-02-21 05:06:24 +08:00
|
|
|
|
|
|
|
// front face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setName("Front face camera");
|
|
|
|
camera->setGraphicsContext(gc.get());
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setViewport(new osg::Viewport(0,0,camera_width, camera_height));
|
2007-02-21 05:06:24 +08:00
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setAllowEventFocus(false);
|
|
|
|
// tell the camera to use OpenGL frame buffer object where supported.
|
|
|
|
camera->setRenderTargetImplementation(renderTargetImplementation);
|
|
|
|
|
2007-02-21 05:06:24 +08:00
|
|
|
// attach the texture and use it as the color buffer.
|
2007-02-23 00:42:59 +08:00
|
|
|
camera->attach(osg::Camera::COLOR_BUFFER, texture, 0, osg::TextureCubeMap::POSITIVE_Y);
|
2007-02-22 19:17:45 +08:00
|
|
|
|
2007-02-21 05:06:24 +08:00
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd());
|
|
|
|
}
|
2007-02-22 03:41:03 +08:00
|
|
|
|
2007-02-21 05:06:24 +08:00
|
|
|
|
|
|
|
// top face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setName("Top face camera");
|
|
|
|
camera->setGraphicsContext(gc.get());
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setViewport(new osg::Viewport(0,0,camera_width, camera_height));
|
2007-02-21 05:06:24 +08:00
|
|
|
GLenum buffer = traits->doubleBuffer ? GL_BACK : GL_FRONT;
|
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setAllowEventFocus(false);
|
|
|
|
|
|
|
|
// tell the camera to use OpenGL frame buffer object where supported.
|
|
|
|
camera->setRenderTargetImplementation(renderTargetImplementation);
|
2007-02-21 05:06:24 +08:00
|
|
|
|
|
|
|
// attach the texture and use it as the color buffer.
|
2007-02-23 00:42:59 +08:00
|
|
|
camera->attach(osg::Camera::COLOR_BUFFER, texture, 0, osg::TextureCubeMap::POSITIVE_Z);
|
2007-02-21 05:06:24 +08:00
|
|
|
|
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate(osg::inDegrees(-90.0f), 1.0,0.0,0.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
// left face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setName("Left face camera");
|
|
|
|
camera->setGraphicsContext(gc.get());
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setViewport(new osg::Viewport(0,0,camera_width, camera_height));
|
2007-02-21 05:06:24 +08:00
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setAllowEventFocus(false);
|
|
|
|
|
|
|
|
// tell the camera to use OpenGL frame buffer object where supported.
|
|
|
|
camera->setRenderTargetImplementation(renderTargetImplementation);
|
2007-02-21 05:06:24 +08:00
|
|
|
|
|
|
|
// attach the texture and use it as the color buffer.
|
|
|
|
camera->attach(osg::Camera::COLOR_BUFFER, texture, 0, osg::TextureCubeMap::NEGATIVE_X);
|
|
|
|
|
2007-02-23 00:42:59 +08:00
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate(osg::inDegrees(-90.0f), 0.0,1.0,0.0) * osg::Matrixd::rotate(osg::inDegrees(-90.0f), 0.0,0.0,1.0));
|
2007-02-21 05:06:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// right face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setName("Right face camera");
|
|
|
|
camera->setGraphicsContext(gc.get());
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setViewport(new osg::Viewport(0,0,camera_width, camera_height));
|
2007-02-21 05:06:24 +08:00
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setAllowEventFocus(false);
|
|
|
|
|
|
|
|
// tell the camera to use OpenGL frame buffer object where supported.
|
|
|
|
camera->setRenderTargetImplementation(renderTargetImplementation);
|
2007-02-21 05:06:24 +08:00
|
|
|
|
|
|
|
// attach the texture and use it as the color buffer.
|
2007-02-23 00:42:59 +08:00
|
|
|
camera->attach(osg::Camera::COLOR_BUFFER, texture, 0, osg::TextureCubeMap::POSITIVE_X);
|
2007-02-21 05:06:24 +08:00
|
|
|
|
2007-02-23 00:42:59 +08:00
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate(osg::inDegrees(90.0f), 0.0,1.0,0.0 ) * osg::Matrixd::rotate(osg::inDegrees(90.0f), 0.0,0.0,1.0));
|
2007-02-21 05:06:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// bottom face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setGraphicsContext(gc.get());
|
|
|
|
camera->setName("Bottom face camera");
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setViewport(new osg::Viewport(0,0,camera_width, camera_height));
|
2007-02-21 05:06:24 +08:00
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setAllowEventFocus(false);
|
|
|
|
|
|
|
|
// tell the camera to use OpenGL frame buffer object where supported.
|
|
|
|
camera->setRenderTargetImplementation(renderTargetImplementation);
|
2007-02-21 05:06:24 +08:00
|
|
|
|
|
|
|
// attach the texture and use it as the color buffer.
|
2007-02-23 00:42:59 +08:00
|
|
|
camera->attach(osg::Camera::COLOR_BUFFER, texture, 0, osg::TextureCubeMap::NEGATIVE_Z);
|
2007-02-21 05:06:24 +08:00
|
|
|
|
2007-02-23 00:42:59 +08:00
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate(osg::inDegrees(90.0f), 1.0,0.0,0.0) * osg::Matrixd::rotate(osg::inDegrees(180.0f), 0.0,0.0,1.0));
|
2007-02-21 05:06:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// back face
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setName("Back face camera");
|
|
|
|
camera->setGraphicsContext(gc.get());
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setViewport(new osg::Viewport(0,0,camera_width, camera_height));
|
2007-02-21 05:06:24 +08:00
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setAllowEventFocus(false);
|
|
|
|
|
|
|
|
// tell the camera to use OpenGL frame buffer object where supported.
|
|
|
|
camera->setRenderTargetImplementation(renderTargetImplementation);
|
2007-02-21 05:06:24 +08:00
|
|
|
|
|
|
|
// attach the texture and use it as the color buffer.
|
2007-02-23 00:42:59 +08:00
|
|
|
camera->attach(osg::Camera::COLOR_BUFFER, texture, 0, osg::TextureCubeMap::NEGATIVE_Y);
|
2007-02-21 05:06:24 +08:00
|
|
|
|
2007-02-23 00:42:59 +08:00
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::rotate(osg::inDegrees(180.0f), 1.0,0.0,0.0));
|
2007-02-21 05:06:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
viewer.getCamera()->setProjectionMatrixAsPerspective(90.0f, 1.0, 1, 1000.0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// distortion correction set up.
|
|
|
|
{
|
2007-02-22 19:17:45 +08:00
|
|
|
osg::Geode* geode = new osg::Geode();
|
|
|
|
geode->addDrawable(createDomeDistortionMesh(osg::Vec3(0.0f,0.0f,0.0f), osg::Vec3(width,0.0f,0.0f), osg::Vec3(0.0f,height,0.0f), arguments));
|
2007-02-21 05:06:24 +08:00
|
|
|
|
2007-02-22 19:17:45 +08:00
|
|
|
// new we need to add the texture to the mesh, we do so by creating a
|
2007-02-21 05:06:24 +08:00
|
|
|
// StateSet to contain the Texture StateAttribute.
|
2007-02-22 19:17:45 +08:00
|
|
|
osg::StateSet* stateset = geode->getOrCreateStateSet();
|
2007-02-21 05:06:24 +08:00
|
|
|
stateset->setTextureAttributeAndModes(0, texture,osg::StateAttribute::ON);
|
|
|
|
stateset->setMode(GL_LIGHTING,osg::StateAttribute::OFF);
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::Camera> camera = new osg::Camera;
|
|
|
|
camera->setGraphicsContext(gc.get());
|
|
|
|
camera->setClearMask(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT );
|
|
|
|
camera->setClearColor( osg::Vec4(0.1,0.1,1.0,1.0) );
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setViewport(new osg::Viewport(0, 0, width, height));
|
2007-02-21 05:06:24 +08:00
|
|
|
GLenum buffer = traits->doubleBuffer ? GL_BACK : GL_FRONT;
|
|
|
|
camera->setDrawBuffer(buffer);
|
|
|
|
camera->setReadBuffer(buffer);
|
|
|
|
camera->setReferenceFrame(osg::Camera::ABSOLUTE_RF);
|
2007-02-22 03:41:03 +08:00
|
|
|
camera->setAllowEventFocus(false);
|
2007-02-21 05:06:24 +08:00
|
|
|
//camera->setInheritanceMask(camera->getInheritanceMask() & ~osg::CullSettings::CLEAR_COLOR & ~osg::CullSettings::COMPUTE_NEAR_FAR_MODE);
|
|
|
|
//camera->setComputeNearFarMode(osg::CullSettings::DO_NOT_COMPUTE_NEAR_FAR);
|
|
|
|
|
2007-02-22 19:17:45 +08:00
|
|
|
camera->setProjectionMatrixAsOrtho2D(0,width,0,height);
|
2007-02-21 05:06:24 +08:00
|
|
|
camera->setViewMatrix(osg::Matrix::identity());
|
|
|
|
|
|
|
|
// add subgraph to render
|
|
|
|
camera->addChild(geode);
|
|
|
|
|
|
|
|
camera->setName("DistortionCorrectionCamera");
|
|
|
|
|
2007-02-23 19:53:45 +08:00
|
|
|
viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd(), false);
|
2007-02-21 05:06:24 +08:00
|
|
|
}
|
2007-02-23 00:42:59 +08:00
|
|
|
|
|
|
|
viewer.getCamera()->setNearFarRatio(0.0001f);
|
2007-02-21 05:06:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-07 05:35:57 +08:00
|
|
|
int main(int argc, char** argv)
|
2003-12-28 06:17:41 +08:00
|
|
|
{
|
|
|
|
// use an ArgumentParser object to manage the program arguments.
|
|
|
|
osg::ArgumentParser arguments(&argc,argv);
|
|
|
|
|
|
|
|
// construct the viewer.
|
2007-01-07 05:35:57 +08:00
|
|
|
osgViewer::Viewer viewer;
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2007-02-20 19:44:10 +08:00
|
|
|
|
2007-03-03 00:14:44 +08:00
|
|
|
if (arguments.read("--dome") || arguments.read("--puffer") )
|
2007-02-20 19:44:10 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
setDomeCorrection(viewer, arguments);
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2007-03-03 00:14:44 +08:00
|
|
|
viewer.setSceneData( osgDB::readNodeFiles(arguments) );
|
2007-02-21 05:06:24 +08:00
|
|
|
}
|
|
|
|
else if (arguments.read("--faces"))
|
|
|
|
{
|
|
|
|
|
|
|
|
setDomeFaces(viewer, arguments);
|
2007-03-03 00:14:44 +08:00
|
|
|
|
|
|
|
viewer.setSceneData( osgDB::readNodeFiles(arguments) );
|
2007-02-20 19:44:10 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-03-03 00:14:44 +08:00
|
|
|
osg::Node* distortionNode = createDistortionSubgraph( osgDB::readNodeFiles(arguments), viewer.getCamera()->getClearColor());
|
|
|
|
}
|
|
|
|
|
2007-02-20 19:44:10 +08:00
|
|
|
|
2007-03-03 00:14:44 +08:00
|
|
|
// load the nodes from the commandline arguments.
|
|
|
|
if (!viewer.getSceneData())
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Please specify a model filename on the command line."<<std::endl;
|
|
|
|
return 1;
|
2007-02-20 19:44:10 +08:00
|
|
|
}
|
2003-12-28 06:17:41 +08:00
|
|
|
|
2007-02-23 19:53:45 +08:00
|
|
|
|
2007-02-22 03:41:03 +08:00
|
|
|
// set up the camera manipulators.
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osgGA::KeySwitchMatrixManipulator> keyswitchManipulator = new osgGA::KeySwitchMatrixManipulator;
|
|
|
|
|
|
|
|
keyswitchManipulator->addMatrixManipulator( '1', "Trackball", new osgGA::TrackballManipulator() );
|
|
|
|
keyswitchManipulator->addMatrixManipulator( '2', "Flight", new osgGA::FlightManipulator() );
|
|
|
|
keyswitchManipulator->addMatrixManipulator( '3', "Drive", new osgGA::DriveManipulator() );
|
|
|
|
keyswitchManipulator->addMatrixManipulator( '4', "Terrain", new osgGA::TerrainManipulator() );
|
|
|
|
|
|
|
|
std::string pathfile;
|
|
|
|
char keyForAnimationPath = '5';
|
|
|
|
while (arguments.read("-p",pathfile))
|
|
|
|
{
|
|
|
|
osgGA::AnimationPathManipulator* apm = new osgGA::AnimationPathManipulator(pathfile);
|
|
|
|
if (apm || !apm->valid())
|
|
|
|
{
|
|
|
|
unsigned int num = keyswitchManipulator->getNumMatrixManipulators();
|
|
|
|
keyswitchManipulator->addMatrixManipulator( keyForAnimationPath, "Path", apm );
|
|
|
|
keyswitchManipulator->selectMatrixManipulator(num);
|
|
|
|
++keyForAnimationPath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
viewer.setCameraManipulator( keyswitchManipulator.get() );
|
|
|
|
}
|
|
|
|
|
2007-03-03 00:14:44 +08:00
|
|
|
viewer.setThreadingModel(osgViewer::Viewer::SingleThreaded);
|
2007-02-21 05:06:24 +08:00
|
|
|
|
|
|
|
// add the state manipulator
|
|
|
|
viewer.addEventHandler( new osgGA::StateSetManipulator(viewer.getCamera()->getOrCreateStateSet()) );
|
|
|
|
|
|
|
|
// add the stats handler
|
|
|
|
viewer.addEventHandler(new osgViewer::StatsHandler);
|
|
|
|
|
2007-01-07 05:35:57 +08:00
|
|
|
return viewer.run();
|
2003-12-28 06:17:41 +08:00
|
|
|
}
|
2007-01-07 05:35:57 +08:00
|
|
|
;
|