From ab55668ff36a12ae0fa8809e759cca428c071d23 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 14 Mar 2013 16:24:22 +0000 Subject: [PATCH] Initial skeleton of new osgkeystone example --- examples/CMakeLists.txt | 1 + examples/osgkeystone/CMakeLists.txt | 4 +++ examples/osgkeystone/osgkeystone.cpp | 46 ++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 examples/osgkeystone/CMakeLists.txt create mode 100644 examples/osgkeystone/osgkeystone.cpp diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 0041c2730..c5d51a47d 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -60,6 +60,7 @@ IF(DYNAMIC_OPENSCENEGRAPH) ADD_SUBDIRECTORY(osgkdtree) ADD_SUBDIRECTORY(osgkeyboard) ADD_SUBDIRECTORY(osgkeyboardmouse) + ADD_SUBDIRECTORY(osgkeystone) ADD_SUBDIRECTORY(osglauncher) ADD_SUBDIRECTORY(osglight) ADD_SUBDIRECTORY(osglightpoint) diff --git a/examples/osgkeystone/CMakeLists.txt b/examples/osgkeystone/CMakeLists.txt new file mode 100644 index 000000000..9bfc2e769 --- /dev/null +++ b/examples/osgkeystone/CMakeLists.txt @@ -0,0 +1,4 @@ +SET(TARGET_SRC osgkeystone.cpp ) + +#### end var setup ### +SETUP_EXAMPLE(osgkeystone) diff --git a/examples/osgkeystone/osgkeystone.cpp b/examples/osgkeystone/osgkeystone.cpp new file mode 100644 index 000000000..72f660401 --- /dev/null +++ b/examples/osgkeystone/osgkeystone.cpp @@ -0,0 +1,46 @@ +/* OpenSceneGraph example, osganimate. +* +* 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 +#include +#include +#include + + + +int main( int argc, char **argv ) +{ + osg::ArgumentParser arguments(&argc,argv); + + // initialize the viewer. + osgViewer::Viewer viewer(arguments); + + osg::ref_ptr model = osgDB::readNodeFiles(arguments); + + if (!model) + { + OSG_NOTICE<<"No models loaded, please specify a model file on the command line"<