dd996a3289
forcing users to use osgDB::readRef*File() methods. The later is preferable as it closes a potential threading bug when using paging databases in conjunction with the osgDB::Registry Object Cache. This threading bug occurs when one thread gets an object from the Cache via an osgDB::read*File() call where only a pointer to the object is passed back, so taking a reference to the object is delayed till it gets reassigned to a ref_ptr<>, but at the same time another thread calls a flush of the Object Cache deleting this object as it's referenceCount is now zero. Using osgDB::readREf*File() makes sure the a ref_ptr<> is passed back and the referenceCount never goes to zero. To ensure the OSG builds when OSG_PROVIDE_READFILE is to OFF the many cases of osgDB::read*File() usage had to be replaced with a ref_ptr<> osgDB::readRef*File() usage. The avoid this change causing lots of other client code to be rewritten to handle the use of ref_ptr<> in place of C pointer I introduced a serious of templte methods in various class to adapt ref_ptr<> to the underly C pointer to be passed to old OSG API's, example of this is found in include/osg/Group: bool addChild(Node* child); // old method which can only be used with a Node* tempalte<class T> bool addChild(const osg::ref_ptr<T>& child) { return addChild(child.get()); } // adapter template method These changes together cover 149 modified files, so it's a large submission. This extent of changes are warrent to make use of the Object Cache and multi-threaded loaded more robust. git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@15164 16af8721-9629-0410-8352-f15c8da7e697
315 lines
10 KiB
C++
315 lines
10 KiB
C++
/* OpenSceneGraph example, osgparametric.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <osg/Vec3>
|
|
#include <osg/Vec4>
|
|
#include <osg/Quat>
|
|
#include <osg/Matrix>
|
|
#include <osg/ShapeDrawable>
|
|
#include <osg/Geometry>
|
|
#include <osg/Geode>
|
|
#include <osg/Texture2D>
|
|
|
|
#include <osgDB/FileUtils>
|
|
#include <osgDB/ReadFile>
|
|
|
|
#include <osgUtil/Optimizer>
|
|
|
|
#include <osgViewer/Viewer>
|
|
#include <osgViewer/ViewerEventHandlers>
|
|
|
|
#include <iostream>
|
|
|
|
// for the grid data..
|
|
#include "../osghangglide/terrain_coords.h"
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
// vertex shader using just Vec4 coefficients
|
|
char vertexShaderSource_simple[] =
|
|
"uniform vec4 coeff; \n"
|
|
"\n"
|
|
"void main(void) \n"
|
|
"{ \n"
|
|
"\n"
|
|
" gl_TexCoord[0] = gl_Vertex; \n"
|
|
" vec4 vert = gl_Vertex; \n"
|
|
" vert.z = gl_Vertex.x*coeff[0] + gl_Vertex.x*gl_Vertex.x* coeff[1] + \n"
|
|
" gl_Vertex.y*coeff[2] + gl_Vertex.y*gl_Vertex.y* coeff[3]; \n"
|
|
" gl_Position = gl_ModelViewProjectionMatrix * vert;\n"
|
|
"}\n";
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// vertex shader using full Matrix4 coefficients
|
|
char vertexShaderSource_matrix[] =
|
|
"uniform vec4 origin; \n"
|
|
"uniform mat4 coeffMatrix; \n"
|
|
"\n"
|
|
"void main(void) \n"
|
|
"{ \n"
|
|
"\n"
|
|
" gl_TexCoord[0] = gl_Vertex; \n"
|
|
" vec4 v = vec4(gl_Vertex.x, gl_Vertex.x*gl_Vertex.x, gl_Vertex.y, gl_Vertex.y*gl_Vertex.y ); \n"
|
|
" gl_Position = gl_ModelViewProjectionMatrix * (origin + coeffMatrix * v);\n"
|
|
"}\n";
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// vertex shader using texture read
|
|
char vertexShaderSource_texture[] =
|
|
"uniform sampler2D vertexTexture; \n"
|
|
"\n"
|
|
"void main(void) \n"
|
|
"{ \n"
|
|
"\n"
|
|
" gl_TexCoord[0] = gl_Vertex; \n"
|
|
" vec4 vert = gl_Vertex; \n"
|
|
" vert.z = texture2D( vertexTexture, gl_TexCoord[0].xy).x*0.0001; \n"
|
|
" gl_Position = gl_ModelViewProjectionMatrix * vert;\n"
|
|
"}\n";
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
// fragment shader
|
|
//
|
|
char fragmentShaderSource[] =
|
|
"uniform sampler2D baseTexture; \n"
|
|
"\n"
|
|
"void main(void) \n"
|
|
"{ \n"
|
|
" gl_FragColor = texture2D( baseTexture, gl_TexCoord[0].xy); \n"
|
|
"}\n";
|
|
|
|
|
|
|
|
class UniformVarying : public osg::UniformCallback
|
|
{
|
|
virtual void operator () (osg::Uniform* uniform, osg::NodeVisitor* nv)
|
|
{
|
|
const osg::FrameStamp* fs = nv->getFrameStamp();
|
|
float value = sinf(fs->getSimulationTime());
|
|
uniform->set(osg::Vec4(value,-value,-value,value));
|
|
}
|
|
};
|
|
|
|
osg::Node* createModel(const std::string& shader, const std::string& textureFileName, const std::string& terrainFileName, bool dynamic, bool useVBO)
|
|
{
|
|
osg::Geode* geode = new osg::Geode;
|
|
|
|
osg::Geometry* geom = new osg::Geometry;
|
|
geode->addDrawable(geom);
|
|
|
|
// dimensions for ~one million triangles :-)
|
|
unsigned int num_x = 708;
|
|
unsigned int num_y = 708;
|
|
|
|
// set up state
|
|
{
|
|
|
|
osg::StateSet* stateset = geom->getOrCreateStateSet();
|
|
|
|
osg::Program* program = new osg::Program;
|
|
stateset->setAttribute(program);
|
|
|
|
if (shader=="simple")
|
|
{
|
|
osg::Shader* vertex_shader = new osg::Shader(osg::Shader::VERTEX, vertexShaderSource_simple);
|
|
program->addShader(vertex_shader);
|
|
|
|
osg::Uniform* coeff = new osg::Uniform("coeff",osg::Vec4(1.0,-1.0f,-1.0f,1.0f));
|
|
|
|
stateset->addUniform(coeff);
|
|
|
|
if (dynamic)
|
|
{
|
|
coeff->setUpdateCallback(new UniformVarying);
|
|
coeff->setDataVariance(osg::Object::DYNAMIC);
|
|
stateset->setDataVariance(osg::Object::DYNAMIC);
|
|
}
|
|
|
|
}
|
|
else if (shader=="matrix")
|
|
{
|
|
osg::Shader* vertex_shader = new osg::Shader(osg::Shader::VERTEX, vertexShaderSource_matrix);
|
|
program->addShader(vertex_shader);
|
|
|
|
osg::Uniform* origin = new osg::Uniform("origin",osg::Vec4(0.0f,0.0f,0.0f,1.0f));
|
|
stateset->addUniform(origin);
|
|
|
|
osg::Uniform* coeffMatrix = new osg::Uniform("coeffMatrix",
|
|
osg::Matrix(1.0f,0.0f,1.0f,0.0f,
|
|
0.0f,0.0f,-1.0f,0.0f,
|
|
0.0f,1.0f,-1.0f,0.0f,
|
|
0.0f,0.0f,1.0f,0.0f));
|
|
|
|
stateset->addUniform(coeffMatrix);
|
|
}
|
|
else if (shader=="texture")
|
|
{
|
|
osg::Shader* vertex_shader = new osg::Shader(osg::Shader::VERTEX, vertexShaderSource_texture);
|
|
program->addShader(vertex_shader);
|
|
|
|
osg::ref_ptr<osg::Image> image;
|
|
|
|
if (terrainFileName.empty())
|
|
{
|
|
image = new osg::Image;
|
|
unsigned int tx = 38;
|
|
unsigned int ty = 39;
|
|
image->allocateImage(tx,ty,1,GL_LUMINANCE,GL_FLOAT,1);
|
|
for(unsigned int r=0;r<ty;++r)
|
|
{
|
|
for(unsigned int c=0;c<tx;++c)
|
|
{
|
|
*((float*)image->data(c,r)) = vertex[r+c*39][2]*0.1;
|
|
}
|
|
}
|
|
|
|
num_x = tx;
|
|
num_y = tx;
|
|
}
|
|
else
|
|
{
|
|
image = osgDB::readRefImageFile(terrainFileName);
|
|
|
|
num_x = image->s();
|
|
num_y = image->t();
|
|
}
|
|
|
|
osg::Texture2D* vertexTexture = new osg::Texture2D(image);
|
|
|
|
|
|
vertexTexture->setFilter(osg::Texture::MIN_FILTER,osg::Texture::NEAREST);
|
|
vertexTexture->setFilter(osg::Texture::MAG_FILTER,osg::Texture::NEAREST);
|
|
vertexTexture->setInternalFormat(GL_LUMINANCE_FLOAT32_ATI);
|
|
stateset->setTextureAttributeAndModes(1,vertexTexture);
|
|
|
|
osg::Uniform* vertexTextureSampler = new osg::Uniform("vertexTexture",1);
|
|
stateset->addUniform(vertexTextureSampler);
|
|
|
|
}
|
|
|
|
osg::Shader* fragment_shader = new osg::Shader(osg::Shader::FRAGMENT, fragmentShaderSource);
|
|
program->addShader(fragment_shader);
|
|
|
|
osg::Texture2D* texture = new osg::Texture2D(osgDB::readRefImageFile(textureFileName));
|
|
stateset->setTextureAttributeAndModes(0,texture);
|
|
|
|
osg::Uniform* baseTextureSampler = new osg::Uniform("baseTexture",0);
|
|
stateset->addUniform(baseTextureSampler);
|
|
|
|
}
|
|
|
|
|
|
// set up geometry data.
|
|
|
|
osg::Vec3Array* vertices = new osg::Vec3Array( num_x * num_y );
|
|
|
|
float dx = 1.0f/(float)(num_x-1);
|
|
float dy = 1.0f/(float)(num_y-1);
|
|
osg::Vec3 row(0.0f,0.0f,0.0);
|
|
|
|
unsigned int vert_no = 0;
|
|
unsigned int iy;
|
|
for(iy=0; iy<num_y; ++iy)
|
|
{
|
|
osg::Vec3 column = row;
|
|
for(unsigned int ix=0;ix<num_x;++ix)
|
|
{
|
|
(*vertices)[vert_no++] = column;
|
|
column.x() += dx;
|
|
}
|
|
row.y() += dy;
|
|
}
|
|
|
|
geom->setVertexArray(vertices);
|
|
|
|
osg::VertexBufferObject* vbo = useVBO ? new osg::VertexBufferObject : 0;
|
|
if (vbo) vertices->setVertexBufferObject(vbo);
|
|
|
|
osg::ElementBufferObject* ebo = useVBO ? new osg::ElementBufferObject : 0;
|
|
|
|
for(iy=0; iy<num_y-1; ++iy)
|
|
{
|
|
unsigned int element_no = 0;
|
|
osg::DrawElementsUInt* elements = new osg::DrawElementsUInt(GL_TRIANGLE_STRIP, num_x*2);
|
|
unsigned int index = iy * num_x;
|
|
for(unsigned int ix = 0; ix<num_x; ++ix)
|
|
{
|
|
(*elements)[element_no++] = index + num_x;
|
|
(*elements)[element_no++] = index++;
|
|
}
|
|
geom->addPrimitiveSet(elements);
|
|
|
|
if (ebo) elements->setElementBufferObject(ebo);
|
|
}
|
|
|
|
geom->setUseVertexBufferObjects(useVBO);
|
|
|
|
return geode;
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// use an ArgumentParser object to manage the program arguments.
|
|
osg::ArgumentParser arguments(&argc,argv);
|
|
|
|
// set up the usage document, in case we need to print out how to use this program.
|
|
arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is the example which demonstrate support for ARB_vertex_program.");
|
|
arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options] filename ...");
|
|
arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information");
|
|
|
|
// construct the viewer.
|
|
osgViewer::Viewer viewer;
|
|
|
|
// add the stats handler
|
|
viewer.addEventHandler(new osgViewer::StatsHandler);
|
|
|
|
std::string shader("simple");
|
|
while(arguments.read("-s",shader)) {}
|
|
|
|
std::string textureFileName("Images/lz.rgb");
|
|
while(arguments.read("-t",textureFileName)) {}
|
|
|
|
std::string terrainFileName("");
|
|
while(arguments.read("-d",terrainFileName)) {}
|
|
|
|
bool dynamic = true;
|
|
while(arguments.read("--static")) { dynamic = false; }
|
|
|
|
bool vbo = false;
|
|
while(arguments.read("--vbo")) { vbo = true; }
|
|
|
|
// if user request help write it out to cout.
|
|
if (arguments.read("-h") || arguments.read("--help"))
|
|
{
|
|
arguments.getApplicationUsage()->write(std::cout);
|
|
return 1;
|
|
}
|
|
|
|
// load the nodes from the commandline arguments.
|
|
osg::Node* model = createModel(shader,textureFileName,terrainFileName, dynamic, vbo);
|
|
if (!model)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
viewer.setSceneData(model);
|
|
|
|
return viewer.run();
|
|
}
|