Initial cut of Audio/Volume/Movie/Image presentation objects
This commit is contained in:
parent
df48d440e4
commit
7050c59cae
@ -108,17 +108,21 @@ 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"));
|
||||
@ -126,7 +130,18 @@ int main(int argc, char** argv)
|
||||
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);
|
||||
|
@ -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() {}
|
||||
|
@ -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() {}
|
||||
|
@ -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.*/
|
||||
|
@ -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() {}
|
||||
|
@ -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() {}
|
||||
|
42
src/osgPresentation/Audio.cpp
Normal file
42
src/osgPresentation/Audio.cpp
Normal file
@ -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;
|
||||
}
|
@ -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
|
||||
|
||||
@ -19,12 +20,12 @@ SET(TARGET_H
|
||||
${HEADER_PATH}/Layer
|
||||
|
||||
${HEADER_PATH}/Element
|
||||
${HEADER_PATH}/Text
|
||||
${HEADER_PATH}/Model
|
||||
${HEADER_PATH}/Volume
|
||||
${HEADER_PATH}/Image
|
||||
${HEADER_PATH}/Movie
|
||||
${HEADER_PATH}/Audio
|
||||
${HEADER_PATH}/Image
|
||||
${HEADER_PATH}/Model
|
||||
${HEADER_PATH}/Movie
|
||||
${HEADER_PATH}/Text
|
||||
${HEADER_PATH}/Volume
|
||||
|
||||
${HEADER_PATH}/deprecated/AnimationMaterial
|
||||
${HEADER_PATH}/deprecated/CompileSlideCallback
|
||||
@ -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
|
||||
|
64
src/osgPresentation/Image.cpp
Normal file
64
src/osgPresentation/Image.cpp
Normal file
@ -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
src/osgPresentation/Movie.cpp
Normal file
69
src/osgPresentation/Movie.cpp
Normal file
@ -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
src/osgPresentation/Volume.cpp
Normal file
55
src/osgPresentation/Volume.cpp
Normal file
@ -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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user