Skip to content

Commit

Permalink
Initial cut of Audio/Volume/Movie/Image presentation objects
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Sep 6, 2013
1 parent 798150d commit 1875d92
Show file tree
Hide file tree
Showing 11 changed files with 291 additions and 16 deletions.
33 changes: 24 additions & 9 deletions examples/osgpresentation/osgpresentation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,25 +108,40 @@ int main(int argc, char** argv)
osg::ref_ptr<osgPresentation::Element> element = new osgPresentation::Element;
osg::ref_ptr<osgPresentation::Text> text = new osgPresentation::Text;
osg::ref_ptr<osgPresentation::Model> model = new osgPresentation::Model;
osg::ref_ptr<osgPresentation::Audio> audio = new osgPresentation::Audio;
osg::ref_ptr<osgPresentation::Image> image = new osgPresentation::Image;
osg::ref_ptr<osgPresentation::Movie> movie = new osgPresentation::Movie;
osg::ref_ptr<osgPresentation::Volume> volume = new osgPresentation::Volume;
presentation->addChild(slide.get());
slide->addChild(layer.get());
//layer->addChild(element.get());
layer->addChild(group.get());
group->addChild(element.get());
group->addChild(model.get());
group->addChild(text.get());
group->addChild(new osgPresentation::Audio);
group->addChild(new osgPresentation::Movie);
group->addChild(new osgPresentation::Volume);

//layer->addChild(group.get());
layer->addChild(element.get());
// layer->addChild(model.get());
layer->addChild(text.get());
layer->addChild(audio.get());
layer->addChild(image.get());
layer->addChild(movie.get());
layer->addChild(volume.get());

text->setProperty("string",std::string("This is a first test"));
text->setProperty("font",std::string("times.ttf"));
text->setProperty("character_size",2.2);
text->setProperty("width",std::string("103.2"));

model->setProperty("filename", std::string("dumptruck.osgt"));
presentation->setProperty("scale",2.0);

image->setProperty("filename", std::string("Images/lz.rgb"));
image->setProperty("scale",0.75);

movie->setProperty("filename", std::string("/home/robert/Data/Movie/big_buck_bunny_1080p_stereo.ogg"));
movie->setProperty("scale",0.75);

volume->setProperty("filename", std::string("/home/robert/Data/MaleVisibleHumanHead"));
volume->setProperty("scale",0.75);
volume->setProperty("technique",std::string("iso-surface"));

presentation->setProperty("scale",1.0);


osgPresentation::PrintSupportedProperties psp(std::cout);
Expand Down
6 changes: 6 additions & 0 deletions include/osgPresentation/Audio
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ class OSGPRESENTATION_EXPORT Audio : public osgPresentation::Element

META_Presentation(Audio);

/** load the audio subgraph.*/
virtual bool load();

/** Get all types of Properties supported by Presentation Object type, return true if the Properties are supported, false otherwise.*/
virtual bool getSupportedProperties(PropertyList&);

protected :

virtual ~Audio() {}
Expand Down
6 changes: 6 additions & 0 deletions include/osgPresentation/Image
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ class OSGPRESENTATION_EXPORT Image : public osgPresentation::Element

META_Presentation(Image);

/** load the image subgraph.*/
virtual bool load();

/** Get all types of Properties supported by Presentation Object type, return true if the Properties are supported, false otherwise.*/
virtual bool getSupportedProperties(PropertyList&);

protected :

virtual ~Image() {}
Expand Down
2 changes: 1 addition & 1 deletion include/osgPresentation/Model
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class OSGPRESENTATION_EXPORT Model : public osgPresentation::Element

META_Presentation(Model);

/** load the text subgraph.*/
/** load the model subgraph.*/
virtual bool load();

/** Get all types of Properties supported by Presentation Object type, return true if the Properties are supported, false otherwise.*/
Expand Down
6 changes: 6 additions & 0 deletions include/osgPresentation/Movie
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ class OSGPRESENTATION_EXPORT Movie : public osgPresentation::Element

META_Presentation(Movie);

/** load the movie subgraph.*/
virtual bool load();

/** Get all types of Properties supported by Presentation Object type, return true if the Properties are supported, false otherwise.*/
virtual bool getSupportedProperties(PropertyList&);

protected :

virtual ~Movie() {}
Expand Down
6 changes: 6 additions & 0 deletions include/osgPresentation/Volume
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ class OSGPRESENTATION_EXPORT Volume : public osgPresentation::Element

META_Presentation(Volume);

/** load the volume subgraph.*/
virtual bool load();

/** Get all types of Properties supported by Presentation Object type, return true if the Properties are supported, false otherwise.*/
virtual bool getSupportedProperties(PropertyList&);

protected :

virtual ~Volume() {}
Expand Down
42 changes: 42 additions & 0 deletions src/osgPresentation/Audio.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2013 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 <osgPresentation/Audio>
#include <osg/ValueObject>
#include <osgDB/ReadFile>

using namespace osgPresentation;


bool Audio::load()
{
OSG_NOTICE<<"Audio::load() Not implemented yet"<<std::endl;

std::string filename;
getPropertyValue("filename", filename);

double volume = 1.0;
getPropertyValue("volume", volume);

OSG_NOTICE<<"Audio : filename = "<<filename<<std::endl;
OSG_NOTICE<<" volume = "<<volume<<std::endl;

return false;
}

bool Audio::getSupportedProperties(PropertyList& pl)
{
pl.push_back(ObjectDescription(new osg::StringValueObject("filename",""), std::string("Audio filename to load.")));
pl.push_back(ObjectDescription(new osg::DoubleValueObject("volume",1.0), std::string("Audio volume.")));
return true;
}
18 changes: 12 additions & 6 deletions src/osgPresentation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ ENDIF()
SET(LIB_NAME osgPresentation)
SET(HEADER_PATH ${OpenSceneGraph_SOURCE_DIR}/include/${LIB_NAME})
SET(TARGET_H
${HEADER_PATH}/Action
${HEADER_PATH}/Export

${HEADER_PATH}/Action
${HEADER_PATH}/Cursor
${HEADER_PATH}/Group

Expand All @@ -19,12 +20,12 @@ SET(TARGET_H
${HEADER_PATH}/Layer

${HEADER_PATH}/Element
${HEADER_PATH}/Text
${HEADER_PATH}/Model
${HEADER_PATH}/Volume
${HEADER_PATH}/Audio
${HEADER_PATH}/Image
${HEADER_PATH}/Model
${HEADER_PATH}/Movie
${HEADER_PATH}/Audio
${HEADER_PATH}/Text
${HEADER_PATH}/Volume

${HEADER_PATH}/deprecated/AnimationMaterial
${HEADER_PATH}/deprecated/CompileSlideCallback
Expand All @@ -41,9 +42,14 @@ SET(TARGET_SRC
Action.cpp
Cursor.cpp
Group.cpp

Element.cpp
Text.cpp
Audio.cpp
Image.cpp
Model.cpp
Movie.cpp
Text.cpp
Volume.cpp

deprecated/AnimationMaterial.cpp
deprecated/CompileSlideCallback.cpp
Expand Down
64 changes: 64 additions & 0 deletions src/osgPresentation/Image.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2013 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 <osgPresentation/Image>
#include <osg/ValueObject>
#include <osg/Geometry>
#include <osg/Texture2D>
#include <osgDB/ReadFile>

using namespace osgPresentation;


bool Image::load()
{
OSG_NOTICE<<"Image::load() Not implemented yet"<<std::endl;

std::string filename;
getPropertyValue("filename", filename);

double scale = 1.0;
getPropertyValue("scale", scale);

OSG_NOTICE<<"Image : filename = "<<filename<<std::endl;
OSG_NOTICE<<" scale = "<<scale<<std::endl;

osg::ref_ptr<osg::Image> image = osgDB::readImageFile(filename);
if (image.valid())
{
osg::Vec3d position(0.0,0.0,0.0);
osg::Vec3d widthVec(1.0,0.0,0.0);
osg::Vec3d heightVec(0.0,0.0,1.0);

osg::ref_ptr<osg::Geometry> geometry = osg::createTexturedQuadGeometry(position, widthVec, heightVec);
osg::ref_ptr<osg::Texture2D> texture = new osg::Texture2D(image.get());
texture->setResizeNonPowerOfTwoHint(false);
texture->setFilter(osg::Texture::MIN_FILTER, osg::Texture::LINEAR);
texture->setFilter(osg::Texture::MAG_FILTER, osg::Texture::LINEAR);
geometry->getOrCreateStateSet()->setTextureAttributeAndModes(0, texture, osg::StateAttribute::ON);

osg::ref_ptr<osg::Geode> geode = new osg::Geode;
geode->addDrawable(geometry.get());

addChild(geode.get());
}

return false;
}

bool Image::getSupportedProperties(PropertyList& pl)
{
pl.push_back(ObjectDescription(new osg::StringValueObject("filename",""), std::string("Image filename to load.")));
pl.push_back(ObjectDescription(new osg::DoubleValueObject("scale",1.0), std::string("Image scale.")));
return true;
}
69 changes: 69 additions & 0 deletions src/osgPresentation/Movie.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2013 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 <osgPresentation/Movie>
#include <osg/ValueObject>
#include <osg/Geometry>
#include <osg/Texture2D>
#include <osgDB/ReadFile>

using namespace osgPresentation;


bool Movie::load()
{
OSG_NOTICE<<"Movie::load() Not implemented yet"<<std::endl;

std::string filename;
getPropertyValue("filename", filename);

double volume = 1.0;
getPropertyValue("volume", volume);

double scale = 1.0;
getPropertyValue("scale", scale);

OSG_NOTICE<<"Movie : filename = "<<filename<<std::endl;
OSG_NOTICE<<" volume = "<<volume<<std::endl;
OSG_NOTICE<<" scale = "<<scale<<std::endl;

osg::ref_ptr<osg::Image> image = osgDB::readImageFile(filename);
if (image.valid())
{
osg::Vec3d position(0.0,0.0,0.0);
osg::Vec3d widthVec(1.0,0.0,0.0);
osg::Vec3d heightVec(0.0,0.0,1.0);

osg::ref_ptr<osg::Geometry> geometry = osg::createTexturedQuadGeometry(position, widthVec, heightVec);
osg::ref_ptr<osg::Texture2D> texture = new osg::Texture2D(image.get());
texture->setResizeNonPowerOfTwoHint(false);
texture->setFilter(osg::Texture::MIN_FILTER, osg::Texture::LINEAR);
texture->setFilter(osg::Texture::MAG_FILTER, osg::Texture::LINEAR);
geometry->getOrCreateStateSet()->setTextureAttributeAndModes(0, texture, osg::StateAttribute::ON);

osg::ref_ptr<osg::Geode> geode = new osg::Geode;
geode->addDrawable(geometry.get());

addChild(geode.get());
}

return false;
}

bool Movie::getSupportedProperties(PropertyList& pl)
{
pl.push_back(ObjectDescription(new osg::StringValueObject("filename",""), std::string("Movie filename to load.")));
pl.push_back(ObjectDescription(new osg::DoubleValueObject("volume",1.0), std::string("Audio volume.")));
pl.push_back(ObjectDescription(new osg::DoubleValueObject("scale",1.0), std::string("Movie scale.")));
return true;
}
55 changes: 55 additions & 0 deletions src/osgPresentation/Volume.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2013 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 <osgPresentation/Volume>
#include <osg/ValueObject>
#include <osgVolume/VolumeTile>
#include <osgDB/ReadFile>

using namespace osgPresentation;


bool Volume::load()
{
OSG_NOTICE<<"Volume::load() Not implemented yet"<<std::endl;

std::string filename;
getPropertyValue("filename", filename);

double scale = 1.0;
getPropertyValue("scale", scale);

std::string technique;
getPropertyValue("technique", technique);

OSG_NOTICE<<"Volume : filename = "<<filename<<std::endl;
OSG_NOTICE<<" technique = "<<technique<<std::endl;
OSG_NOTICE<<" scale = "<<scale<<std::endl;

osg::ref_ptr<osg::Object> object = osgDB::readObjectFile(filename);
if (object.valid())
{
osg::ref_ptr<osgVolume::VolumeTile> volume = dynamic_cast<osgVolume::VolumeTile*>(object.get());
if (volume.valid()) addChild(volume.get());
}

return false;
}

bool Volume::getSupportedProperties(PropertyList& pl)
{
pl.push_back(ObjectDescription(new osg::StringValueObject("filename",""), std::string("Volume filename to load.")));
pl.push_back(ObjectDescription(new osg::StringValueObject("technique",""), std::string("Volume technique to use when rendering.")));
pl.push_back(ObjectDescription(new osg::DoubleValueObject("scale",1.0), std::string("Volume scale.")));
return true;
}

0 comments on commit 1875d92

Please sign in to comment.