| [6941] | 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| [2693] | 18 | |
|---|
| [5927] | 19 | #include <osgViewer/Viewer> |
|---|
| [6949] | 20 | #include <osgViewer/ViewerEventHandlers> |
|---|
| [2693] | 21 | |
|---|
| 22 | #include <osgDB/ReadFile> |
|---|
| 23 | |
|---|
| 24 | #include <osg/Geode> |
|---|
| 25 | #include <osg/Geometry> |
|---|
| 26 | #include <osg/StateSet> |
|---|
| 27 | #include <osg/Material> |
|---|
| 28 | #include <osg/Texture2D> |
|---|
| 29 | #include <osg/TextureRectangle> |
|---|
| [6624] | 30 | #include <osg/TextureCubeMap> |
|---|
| [2693] | 31 | #include <osg/TexMat> |
|---|
| 32 | #include <osg/CullFace> |
|---|
| [2810] | 33 | #include <osg/ImageStream> |
|---|
| [4956] | 34 | #include <osg/io_utils> |
|---|
| [2693] | 35 | |
|---|
| 36 | #include <osgGA/TrackballManipulator> |
|---|
| [7615] | 37 | #include <osgGA/StateSetManipulator> |
|---|
| [4956] | 38 | #include <osgGA/EventVisitor> |
|---|
| [2693] | 39 | |
|---|
| [5927] | 40 | #include <iostream> |
|---|
| [3819] | 41 | |
|---|
| [2810] | 42 | class MovieEventHandler : public osgGA::GUIEventHandler |
|---|
| 43 | { |
|---|
| 44 | public: |
|---|
| 45 | |
|---|
| [10799] | 46 | MovieEventHandler():_trackMouse(false) {} |
|---|
| [9705] | 47 | |
|---|
| [6624] | 48 | void setMouseTracking(bool track) { _trackMouse = track; } |
|---|
| 49 | bool getMouseTracking() const { return _trackMouse; } |
|---|
| [9705] | 50 | |
|---|
| [2810] | 51 | void set(osg::Node* node); |
|---|
| 52 | |
|---|
| [4956] | 53 | virtual bool handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIActionAdapter& aa, osg::Object*, osg::NodeVisitor* nv); |
|---|
| [9705] | 54 | |
|---|
| [2810] | 55 | virtual void getUsage(osg::ApplicationUsage& usage) const; |
|---|
| 56 | |
|---|
| [7648] | 57 | typedef std::vector< osg::observer_ptr<osg::ImageStream> > ImageStreamList; |
|---|
| [2810] | 58 | |
|---|
| 59 | protected: |
|---|
| 60 | |
|---|
| 61 | virtual ~MovieEventHandler() {} |
|---|
| 62 | |
|---|
| 63 | class FindImageStreamsVisitor : public osg::NodeVisitor |
|---|
| 64 | { |
|---|
| 65 | public: |
|---|
| 66 | FindImageStreamsVisitor(ImageStreamList& imageStreamList): |
|---|
| 67 | _imageStreamList(imageStreamList) {} |
|---|
| [9705] | 68 | |
|---|
| [2810] | 69 | virtual void apply(osg::Geode& geode) |
|---|
| 70 | { |
|---|
| 71 | apply(geode.getStateSet()); |
|---|
| 72 | |
|---|
| 73 | for(unsigned int i=0;i<geode.getNumDrawables();++i) |
|---|
| 74 | { |
|---|
| 75 | apply(geode.getDrawable(i)->getStateSet()); |
|---|
| 76 | } |
|---|
| [9705] | 77 | |
|---|
| [2810] | 78 | traverse(geode); |
|---|
| 79 | } |
|---|
| 80 | |
|---|
| 81 | virtual void apply(osg::Node& node) |
|---|
| 82 | { |
|---|
| 83 | apply(node.getStateSet()); |
|---|
| 84 | traverse(node); |
|---|
| 85 | } |
|---|
| [9705] | 86 | |
|---|
| [2810] | 87 | inline void apply(osg::StateSet* stateset) |
|---|
| 88 | { |
|---|
| 89 | if (!stateset) return; |
|---|
| [9705] | 90 | |
|---|
| [2810] | 91 | osg::StateAttribute* attr = stateset->getTextureAttribute(0,osg::StateAttribute::TEXTURE); |
|---|
| 92 | if (attr) |
|---|
| 93 | { |
|---|
| 94 | osg::Texture2D* texture2D = dynamic_cast<osg::Texture2D*>(attr); |
|---|
| 95 | if (texture2D) apply(dynamic_cast<osg::ImageStream*>(texture2D->getImage())); |
|---|
| 96 | |
|---|
| 97 | osg::TextureRectangle* textureRec = dynamic_cast<osg::TextureRectangle*>(attr); |
|---|
| 98 | if (textureRec) apply(dynamic_cast<osg::ImageStream*>(textureRec->getImage())); |
|---|
| 99 | } |
|---|
| 100 | } |
|---|
| [9705] | 101 | |
|---|
| [2810] | 102 | inline void apply(osg::ImageStream* imagestream) |
|---|
| 103 | { |
|---|
| [3819] | 104 | if (imagestream) |
|---|
| 105 | { |
|---|
| [9705] | 106 | _imageStreamList.push_back(imagestream); |
|---|
| [3819] | 107 | } |
|---|
| [2810] | 108 | } |
|---|
| [9705] | 109 | |
|---|
| [2810] | 110 | ImageStreamList& _imageStreamList; |
|---|
| [9637] | 111 | |
|---|
| 112 | protected: |
|---|
| [9705] | 113 | |
|---|
| [9637] | 114 | FindImageStreamsVisitor& operator = (const FindImageStreamsVisitor&) { return *this; } |
|---|
| 115 | |
|---|
| [2810] | 116 | }; |
|---|
| 117 | |
|---|
| 118 | |
|---|
| [6624] | 119 | bool _trackMouse; |
|---|
| [2810] | 120 | ImageStreamList _imageStreamList; |
|---|
| [10809] | 121 | unsigned int _seekIncr; |
|---|
| [9705] | 122 | |
|---|
| [2810] | 123 | }; |
|---|
| 124 | |
|---|
| 125 | |
|---|
| 126 | |
|---|
| 127 | void MovieEventHandler::set(osg::Node* node) |
|---|
| 128 | { |
|---|
| 129 | _imageStreamList.clear(); |
|---|
| 130 | if (node) |
|---|
| 131 | { |
|---|
| 132 | FindImageStreamsVisitor fisv(_imageStreamList); |
|---|
| 133 | node->accept(fisv); |
|---|
| 134 | } |
|---|
| 135 | } |
|---|
| 136 | |
|---|
| 137 | |
|---|
| [4956] | 138 | bool MovieEventHandler::handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIActionAdapter& aa, osg::Object*, osg::NodeVisitor* nv) |
|---|
| [2810] | 139 | { |
|---|
| 140 | switch(ea.getEventType()) |
|---|
| 141 | { |
|---|
| [4956] | 142 | case(osgGA::GUIEventAdapter::MOVE): |
|---|
| 143 | case(osgGA::GUIEventAdapter::PUSH): |
|---|
| 144 | case(osgGA::GUIEventAdapter::RELEASE): |
|---|
| 145 | { |
|---|
| [6624] | 146 | if (_trackMouse) |
|---|
| [4956] | 147 | { |
|---|
| [6624] | 148 | osgViewer::View* view = dynamic_cast<osgViewer::View*>(&aa); |
|---|
| 149 | osgUtil::LineSegmentIntersector::Intersections intersections; |
|---|
| [8073] | 150 | bool foundIntersection = view==0 ? false : |
|---|
| 151 | (nv==0 ? view->computeIntersections(ea.getX(), ea.getY(), intersections) : |
|---|
| 152 | view->computeIntersections(ea.getX(), ea.getY(), nv->getNodePath(), intersections)); |
|---|
| [9705] | 153 | |
|---|
| [8073] | 154 | if (foundIntersection) |
|---|
| [4956] | 155 | { |
|---|
| 156 | |
|---|
| [9705] | 157 | |
|---|
| [6624] | 158 | const osgUtil::LineSegmentIntersector::Intersection& intersection = *(intersections.begin()); |
|---|
| 159 | osg::Drawable* drawable = intersection.drawable.get(); |
|---|
| 160 | osg::Geometry* geometry = drawable ? drawable->asGeometry() : 0; |
|---|
| 161 | osg::Vec3Array* vertices = geometry ? dynamic_cast<osg::Vec3Array*>(geometry->getVertexArray()) : 0; |
|---|
| 162 | if (vertices) |
|---|
| [4956] | 163 | { |
|---|
| [6624] | 164 | |
|---|
| 165 | const osgUtil::LineSegmentIntersector::Intersection::IndexList& indices = intersection.indexList; |
|---|
| 166 | const osgUtil::LineSegmentIntersector::Intersection::RatioList& ratios = intersection.ratioList; |
|---|
| [4956] | 167 | |
|---|
| [6624] | 168 | if (indices.size()==3 && ratios.size()==3) |
|---|
| [4956] | 169 | { |
|---|
| [6624] | 170 | unsigned int i1 = indices[0]; |
|---|
| 171 | unsigned int i2 = indices[1]; |
|---|
| 172 | unsigned int i3 = indices[2]; |
|---|
| [5951] | 173 | |
|---|
| [6624] | 174 | float r1 = ratios[0]; |
|---|
| 175 | float r2 = ratios[1]; |
|---|
| 176 | float r3 = ratios[2]; |
|---|
| [5951] | 177 | |
|---|
| [6624] | 178 | osg::Array* texcoords = (geometry->getNumTexCoordArrays()>0) ? geometry->getTexCoordArray(0) : 0; |
|---|
| 179 | osg::Vec2Array* texcoords_Vec2Array = dynamic_cast<osg::Vec2Array*>(texcoords); |
|---|
| 180 | if (texcoords_Vec2Array) |
|---|
| 181 | { |
|---|
| [9705] | 182 | |
|---|
| [6624] | 183 | osg::Vec2 tc1 = (*texcoords_Vec2Array)[i1]; |
|---|
| 184 | osg::Vec2 tc2 = (*texcoords_Vec2Array)[i2]; |
|---|
| 185 | osg::Vec2 tc3 = (*texcoords_Vec2Array)[i3]; |
|---|
| 186 | osg::Vec2 tc = tc1*r1 + tc2*r2 + tc3*r3; |
|---|
| 187 | |
|---|
| 188 | osg::notify(osg::NOTICE)<<"We hit tex coords "<<tc<<std::endl; |
|---|
| 189 | |
|---|
| 190 | } |
|---|
| [4956] | 191 | } |
|---|
| [6624] | 192 | else |
|---|
| 193 | { |
|---|
| 194 | osg::notify(osg::NOTICE)<<"Intersection has insufficient indices to work with"; |
|---|
| 195 | } |
|---|
| 196 | |
|---|
| [4956] | 197 | } |
|---|
| [5951] | 198 | } |
|---|
| [6624] | 199 | else |
|---|
| 200 | { |
|---|
| 201 | osg::notify(osg::NOTICE)<<"No intersection"<<std::endl; |
|---|
| 202 | } |
|---|
| [4956] | 203 | } |
|---|
| 204 | break; |
|---|
| 205 | } |
|---|
| [2810] | 206 | case(osgGA::GUIEventAdapter::KEYDOWN): |
|---|
| 207 | { |
|---|
| [7615] | 208 | if (ea.getKey()=='p') |
|---|
| [2810] | 209 | { |
|---|
| 210 | for(ImageStreamList::iterator itr=_imageStreamList.begin(); |
|---|
| 211 | itr!=_imageStreamList.end(); |
|---|
| 212 | ++itr) |
|---|
| 213 | { |
|---|
| [10799] | 214 | osg::ImageStream::StreamStatus playToggle = (*itr)->getStatus(); |
|---|
| 215 | if (playToggle != osg::ImageStream::PLAYING) |
|---|
| [7615] | 216 | { |
|---|
| [10799] | 217 | std::cout<< (*itr).get() << " Play"<<std::endl; |
|---|
| [7615] | 218 | (*itr)->play(); |
|---|
| 219 | } |
|---|
| 220 | else |
|---|
| 221 | { |
|---|
| 222 | |
|---|
| [10799] | 223 | std::cout<< (*itr).get() << " Pause"<<std::endl; |
|---|
| [7615] | 224 | (*itr)->pause(); |
|---|
| 225 | } |
|---|
| [2810] | 226 | } |
|---|
| 227 | return true; |
|---|
| 228 | } |
|---|
| 229 | else if (ea.getKey()=='r') |
|---|
| 230 | { |
|---|
| [4520] | 231 | for(ImageStreamList::iterator itr=_imageStreamList.begin(); |
|---|
| 232 | itr!=_imageStreamList.end(); |
|---|
| 233 | ++itr) |
|---|
| 234 | { |
|---|
| [10799] | 235 | std::cout<< (*itr).get() << " Restart"<<std::endl; |
|---|
| [4520] | 236 | (*itr)->rewind(); |
|---|
| 237 | (*itr)->play(); |
|---|
| 238 | } |
|---|
| [2810] | 239 | return true; |
|---|
| 240 | } |
|---|
| [10809] | 241 | else if (ea.getKey()=='>') |
|---|
| 242 | { |
|---|
| 243 | for(ImageStreamList::iterator itr=_imageStreamList.begin(); |
|---|
| 244 | itr!=_imageStreamList.end(); |
|---|
| 245 | ++itr) |
|---|
| 246 | { |
|---|
| 247 | std::cout<<"Seeking"<<std::endl; |
|---|
| 248 | if(_seekIncr > 3) _seekIncr = 0; |
|---|
| 249 | double length = (*itr)->getLength(); |
|---|
| 250 | double t_pos = (length/4.0f)*_seekIncr; |
|---|
| 251 | |
|---|
| 252 | (*itr)->seek(t_pos); |
|---|
| 253 | (*itr)->play(); |
|---|
| 254 | _seekIncr++; |
|---|
| 255 | } |
|---|
| 256 | return true; |
|---|
| 257 | } |
|---|
| [7615] | 258 | else if (ea.getKey()=='L') |
|---|
| [2810] | 259 | { |
|---|
| [4520] | 260 | for(ImageStreamList::iterator itr=_imageStreamList.begin(); |
|---|
| 261 | itr!=_imageStreamList.end(); |
|---|
| 262 | ++itr) |
|---|
| 263 | { |
|---|
| 264 | if ( (*itr)->getLoopingMode() == osg::ImageStream::LOOPING) |
|---|
| 265 | { |
|---|
| [10799] | 266 | std::cout<< (*itr).get() << " Toggle Looping Off"<<std::endl; |
|---|
| [4520] | 267 | (*itr)->setLoopingMode( osg::ImageStream::NO_LOOPING ); |
|---|
| 268 | } |
|---|
| 269 | else |
|---|
| 270 | { |
|---|
| [10799] | 271 | std::cout<< (*itr).get() << " Toggle Looping On"<<std::endl; |
|---|
| [4520] | 272 | (*itr)->setLoopingMode( osg::ImageStream::LOOPING ); |
|---|
| 273 | } |
|---|
| 274 | } |
|---|
| [2810] | 275 | return true; |
|---|
| 276 | } |
|---|
| [10799] | 277 | else if (ea.getKey()=='+') |
|---|
| 278 | { |
|---|
| 279 | for(ImageStreamList::iterator itr=_imageStreamList.begin(); |
|---|
| 280 | itr!=_imageStreamList.end(); |
|---|
| 281 | ++itr) |
|---|
| 282 | { |
|---|
| 283 | double tm = (*itr)->getTimeMultiplier(); |
|---|
| 284 | tm += 0.1; |
|---|
| 285 | (*itr)->setTimeMultiplier(tm); |
|---|
| 286 | std::cout << (*itr).get() << " Increase speed rate "<< (*itr)->getTimeMultiplier() << std::endl; |
|---|
| 287 | } |
|---|
| 288 | return true; |
|---|
| 289 | } |
|---|
| 290 | else if (ea.getKey()=='-') |
|---|
| 291 | { |
|---|
| 292 | for(ImageStreamList::iterator itr=_imageStreamList.begin(); |
|---|
| 293 | itr!=_imageStreamList.end(); |
|---|
| 294 | ++itr) |
|---|
| 295 | { |
|---|
| 296 | double tm = (*itr)->getTimeMultiplier(); |
|---|
| 297 | tm -= 0.1; |
|---|
| 298 | (*itr)->setTimeMultiplier(tm); |
|---|
| 299 | std::cout << (*itr).get() << " Decrease speed rate "<< (*itr)->getTimeMultiplier() << std::endl; |
|---|
| 300 | } |
|---|
| 301 | return true; |
|---|
| 302 | } |
|---|
| 303 | else if (ea.getKey()=='o') |
|---|
| 304 | { |
|---|
| 305 | for(ImageStreamList::iterator itr=_imageStreamList.begin(); |
|---|
| 306 | itr!=_imageStreamList.end(); |
|---|
| 307 | ++itr) |
|---|
| 308 | { |
|---|
| 309 | std::cout<< (*itr).get() << " Frame rate "<< (*itr)->getFrameRate() <<std::endl; |
|---|
| 310 | } |
|---|
| 311 | return true; |
|---|
| 312 | } |
|---|
| [2810] | 313 | return false; |
|---|
| 314 | } |
|---|
| 315 | |
|---|
| 316 | default: |
|---|
| 317 | return false; |
|---|
| 318 | } |
|---|
| [4956] | 319 | return false; |
|---|
| [2810] | 320 | } |
|---|
| 321 | |
|---|
| 322 | void MovieEventHandler::getUsage(osg::ApplicationUsage& usage) const |
|---|
| 323 | { |
|---|
| [7615] | 324 | usage.addKeyboardMouseBinding("p","Play/Pause movie"); |
|---|
| [4520] | 325 | usage.addKeyboardMouseBinding("r","Restart movie"); |
|---|
| [2810] | 326 | usage.addKeyboardMouseBinding("l","Toggle looping of movie"); |
|---|
| [10799] | 327 | usage.addKeyboardMouseBinding("+","Increase speed of movie"); |
|---|
| 328 | usage.addKeyboardMouseBinding("-","Decrease speed of movie"); |
|---|
| 329 | usage.addKeyboardMouseBinding("o","Display frame rate of movie"); |
|---|
| [10809] | 330 | usage.addKeyboardMouseBinding(">","Advance the movie using seek"); |
|---|
| [2810] | 331 | } |
|---|
| 332 | |
|---|
| 333 | |
|---|
| [7479] | 334 | osg::Geometry* myCreateTexturedQuadGeometry(const osg::Vec3& pos,float width,float height, osg::Image* image, bool useTextureRectangle, bool xyPlane, bool option_flip) |
|---|
| [2693] | 335 | { |
|---|
| [6947] | 336 | bool flip = image->getOrigin()==osg::Image::TOP_LEFT; |
|---|
| [7479] | 337 | if (option_flip) flip = !flip; |
|---|
| [9705] | 338 | |
|---|
| [2809] | 339 | if (useTextureRectangle) |
|---|
| 340 | { |
|---|
| [4746] | 341 | osg::Geometry* pictureQuad = osg::createTexturedQuadGeometry(pos, |
|---|
| [2809] | 342 | osg::Vec3(width,0.0f,0.0f), |
|---|
| [7477] | 343 | xyPlane ? osg::Vec3(0.0f,height,0.0f) : osg::Vec3(0.0f,0.0f,height), |
|---|
| [6947] | 344 | 0.0f, flip ? image->t() : 0.0, image->s(), flip ? 0.0 : image->t()); |
|---|
| [4321] | 345 | |
|---|
| [6941] | 346 | osg::TextureRectangle* texture = new osg::TextureRectangle(image); |
|---|
| 347 | texture->setWrap(osg::Texture::WRAP_S, osg::Texture::CLAMP_TO_EDGE); |
|---|
| 348 | texture->setWrap(osg::Texture::WRAP_T, osg::Texture::CLAMP_TO_EDGE); |
|---|
| [9705] | 349 | |
|---|
| 350 | |
|---|
| [2809] | 351 | pictureQuad->getOrCreateStateSet()->setTextureAttributeAndModes(0, |
|---|
| [6941] | 352 | texture, |
|---|
| 353 | osg::StateAttribute::ON); |
|---|
| [9705] | 354 | |
|---|
| [2809] | 355 | return pictureQuad; |
|---|
| [2693] | 356 | } |
|---|
| [2809] | 357 | else |
|---|
| 358 | { |
|---|
| [4746] | 359 | osg::Geometry* pictureQuad = osg::createTexturedQuadGeometry(pos, |
|---|
| [2809] | 360 | osg::Vec3(width,0.0f,0.0f), |
|---|
| [7477] | 361 | xyPlane ? osg::Vec3(0.0f,height,0.0f) : osg::Vec3(0.0f,0.0f,height), |
|---|
| [6947] | 362 | 0.0f, flip ? 1.0f : 0.0f , 1.0f, flip ? 0.0f : 1.0f); |
|---|
| [9705] | 363 | |
|---|
| [4321] | 364 | osg::Texture2D* texture = new osg::Texture2D(image); |
|---|
| [8857] | 365 | texture->setResizeNonPowerOfTwoHint(false); |
|---|
| [6941] | 366 | texture->setFilter(osg::Texture::MIN_FILTER,osg::Texture::LINEAR); |
|---|
| 367 | texture->setWrap(osg::Texture::WRAP_S, osg::Texture::CLAMP_TO_EDGE); |
|---|
| 368 | texture->setWrap(osg::Texture::WRAP_T, osg::Texture::CLAMP_TO_EDGE); |
|---|
| [9705] | 369 | |
|---|
| 370 | |
|---|
| [2809] | 371 | pictureQuad->getOrCreateStateSet()->setTextureAttributeAndModes(0, |
|---|
| [4321] | 372 | texture, |
|---|
| [2809] | 373 | osg::StateAttribute::ON); |
|---|
| [2693] | 374 | |
|---|
| [2809] | 375 | return pictureQuad; |
|---|
| 376 | } |
|---|
| [2693] | 377 | } |
|---|
| 378 | |
|---|
| [9849] | 379 | #if USE_SDL |
|---|
| 380 | |
|---|
| 381 | class SDLAudioSink : public osg::AudioSink |
|---|
| [9847] | 382 | { |
|---|
| 383 | public: |
|---|
| [10188] | 384 | |
|---|
| [9849] | 385 | SDLAudioSink(osg::AudioStream* audioStream): |
|---|
| [10925] | 386 | _started(false), |
|---|
| 387 | _paused(false), |
|---|
| [9847] | 388 | _audioStream(audioStream) {} |
|---|
| [9849] | 389 | |
|---|
| [10188] | 390 | ~SDLAudioSink(); |
|---|
| [9849] | 391 | |
|---|
| [10925] | 392 | virtual void play(); |
|---|
| 393 | virtual void pause(); |
|---|
| 394 | virtual void stop(); |
|---|
| [9847] | 395 | |
|---|
| [10925] | 396 | virtual bool playing() const { return _started && !_paused; } |
|---|
| [9849] | 397 | |
|---|
| [10925] | 398 | |
|---|
| 399 | bool _started; |
|---|
| 400 | bool _paused; |
|---|
| [9847] | 401 | osg::observer_ptr<osg::AudioStream> _audioStream; |
|---|
| 402 | }; |
|---|
| 403 | |
|---|
| [9849] | 404 | #endif |
|---|
| 405 | |
|---|
| [2693] | 406 | int main(int argc, char** argv) |
|---|
| 407 | { |
|---|
| 408 | |
|---|
| 409 | osg::ArgumentParser arguments(&argc,argv); |
|---|
| [9705] | 410 | |
|---|
| [2693] | 411 | |
|---|
| 412 | arguments.getApplicationUsage()->setApplicationName(arguments.getApplicationName()); |
|---|
| [4780] | 413 | arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" example demonstrates the use of ImageStream for rendering movies as textures."); |
|---|
| [2693] | 414 | arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options] filename ..."); |
|---|
| 415 | arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information"); |
|---|
| [5927] | 416 | arguments.getApplicationUsage()->addCommandLineOption("--texture2D","Use Texture2D rather than TextureRectangle."); |
|---|
| 417 | arguments.getApplicationUsage()->addCommandLineOption("--shader","Use shaders to post process the video."); |
|---|
| [7480] | 418 | arguments.getApplicationUsage()->addCommandLineOption("--interactive","Use camera manipulator to allow movement around movie."); |
|---|
| 419 | arguments.getApplicationUsage()->addCommandLineOption("--flip","Flip the movie so top becomes bottom."); |
|---|
| [9705] | 420 | #if defined(WIN32) || defined(__APPLE__) |
|---|
| [7594] | 421 | arguments.getApplicationUsage()->addCommandLineOption("--devices","Print the Video input capability via QuickTime and exit."); |
|---|
| [9705] | 422 | #endif |
|---|
| 423 | |
|---|
| [4321] | 424 | bool useTextureRectangle = true; |
|---|
| 425 | bool useShader = false; |
|---|
| [2693] | 426 | |
|---|
| 427 | |
|---|
| [7475] | 428 | osgViewer::Viewer viewer(arguments); |
|---|
| [9705] | 429 | |
|---|
| [6625] | 430 | if (arguments.argc()<=1) |
|---|
| 431 | { |
|---|
| 432 | arguments.getApplicationUsage()->write(std::cout,osg::ApplicationUsage::COMMAND_LINE_OPTION); |
|---|
| 433 | return 1; |
|---|
| 434 | } |
|---|
| 435 | |
|---|
| [9705] | 436 | #if defined(WIN32) || defined(__APPLE__) |
|---|
| [7594] | 437 | |
|---|
| 438 | if (arguments.read("-devices") || arguments.read("--devices")) |
|---|
| 439 | { |
|---|
| 440 | |
|---|
| 441 | osgDB::readImageFile("devices.live"); |
|---|
| 442 | return 1; |
|---|
| 443 | } |
|---|
| [9705] | 444 | #endif |
|---|
| [7594] | 445 | |
|---|
| [4321] | 446 | while (arguments.read("--texture2D")) useTextureRectangle=false; |
|---|
| 447 | while (arguments.read("--shader")) useShader=true; |
|---|
| [2693] | 448 | |
|---|
| [8073] | 449 | bool mouseTracking = false; |
|---|
| [9705] | 450 | while (arguments.read("--mouse")) mouseTracking=true; |
|---|
| [8073] | 451 | |
|---|
| 452 | |
|---|
| [2693] | 453 | |
|---|
| 454 | if (arguments.read("-h") || arguments.read("--help")) |
|---|
| 455 | { |
|---|
| 456 | arguments.getApplicationUsage()->write(std::cout); |
|---|
| 457 | return 1; |
|---|
| 458 | } |
|---|
| 459 | |
|---|
| [7477] | 460 | bool fullscreen = !arguments.read("--interactive"); |
|---|
| [7479] | 461 | bool flip = arguments.read("--flip"); |
|---|
| [4321] | 462 | |
|---|
| [7477] | 463 | osg::ref_ptr<osg::Geode> geode = new osg::Geode; |
|---|
| [4322] | 464 | |
|---|
| [7477] | 465 | osg::StateSet* stateset = geode->getOrCreateStateSet(); |
|---|
| 466 | stateset->setMode(GL_LIGHTING,osg::StateAttribute::OFF); |
|---|
| [4322] | 467 | |
|---|
| [7477] | 468 | if (useShader) |
|---|
| 469 | { |
|---|
| 470 | |
|---|
| [4321] | 471 | |
|---|
| [7477] | 472 | static const char *shaderSourceTextureRec = { |
|---|
| 473 | "uniform vec4 cutoff_color;\n" |
|---|
| 474 | "uniform samplerRect movie_texture;\n" |
|---|
| 475 | "void main(void)\n" |
|---|
| 476 | "{\n" |
|---|
| [8857] | 477 | " vec4 texture_color = textureRect(movie_texture, gl_TexCoord[0].st); \n" |
|---|
| [7477] | 478 | " if (all(lessThanEqual(texture_color,cutoff_color))) discard; \n" |
|---|
| 479 | " gl_FragColor = texture_color;\n" |
|---|
| 480 | "}\n" |
|---|
| 481 | }; |
|---|
| [4321] | 482 | |
|---|
| [7477] | 483 | static const char *shaderSourceTexture2D = { |
|---|
| 484 | "uniform vec4 cutoff_color;\n" |
|---|
| 485 | "uniform sampler2D movie_texture;\n" |
|---|
| 486 | "void main(void)\n" |
|---|
| 487 | "{\n" |
|---|
| [8857] | 488 | " vec4 texture_color = texture2D(movie_texture, gl_TexCoord[0].st); \n" |
|---|
| [7477] | 489 | " if (all(lessThanEqual(texture_color,cutoff_color))) discard; \n" |
|---|
| 490 | " gl_FragColor = texture_color;\n" |
|---|
| 491 | "}\n" |
|---|
| 492 | }; |
|---|
| [4321] | 493 | |
|---|
| [7477] | 494 | osg::Program* program = new osg::Program; |
|---|
| [4321] | 495 | |
|---|
| [7477] | 496 | program->addShader(new osg::Shader(osg::Shader::FRAGMENT, |
|---|
| 497 | useTextureRectangle ? shaderSourceTextureRec : shaderSourceTexture2D)); |
|---|
| [4321] | 498 | |
|---|
| [7477] | 499 | stateset->addUniform(new osg::Uniform("cutoff_color",osg::Vec4(0.1f,0.1f,0.1f,1.0f))); |
|---|
| 500 | stateset->addUniform(new osg::Uniform("movie_texture",0)); |
|---|
| [6625] | 501 | |
|---|
| [7477] | 502 | stateset->setAttribute(program); |
|---|
| [6625] | 503 | |
|---|
| [7477] | 504 | } |
|---|
| [6625] | 505 | |
|---|
| [7477] | 506 | osg::Vec3 pos(0.0f,0.0f,0.0f); |
|---|
| 507 | osg::Vec3 topleft = pos; |
|---|
| 508 | osg::Vec3 bottomright = pos; |
|---|
| [9705] | 509 | |
|---|
| [7477] | 510 | bool xyPlane = fullscreen; |
|---|
| [9847] | 511 | |
|---|
| [9849] | 512 | bool useAudioSink = false; |
|---|
| 513 | while(arguments.read("--audio")) { useAudioSink = true; } |
|---|
| [9914] | 514 | |
|---|
| [9928] | 515 | #if USE_SDL |
|---|
| [9914] | 516 | unsigned int numAudioStreamsEnabled = 0; |
|---|
| [9928] | 517 | #endif |
|---|
| [9705] | 518 | |
|---|
| [7477] | 519 | for(int i=1;i<arguments.argc();++i) |
|---|
| 520 | { |
|---|
| 521 | if (arguments.isString(i)) |
|---|
| [2809] | 522 | { |
|---|
| [7477] | 523 | osg::Image* image = osgDB::readImageFile(arguments[i]); |
|---|
| 524 | osg::ImageStream* imagestream = dynamic_cast<osg::ImageStream*>(image); |
|---|
| [9847] | 525 | if (imagestream) |
|---|
| 526 | { |
|---|
| 527 | osg::ImageStream::AudioStreams& audioStreams = imagestream->getAudioStreams(); |
|---|
| [9849] | 528 | if (useAudioSink && !audioStreams.empty()) |
|---|
| [9847] | 529 | { |
|---|
| 530 | osg::AudioStream* audioStream = audioStreams[0].get(); |
|---|
| 531 | osg::notify(osg::NOTICE)<<"AudioStream read ["<<audioStream->getName()<<"]"<<std::endl; |
|---|
| [9849] | 532 | #if USE_SDL |
|---|
| [9914] | 533 | if (numAudioStreamsEnabled==0) |
|---|
| 534 | { |
|---|
| 535 | audioStream->setAudioSink(new SDLAudioSink(audioStream)); |
|---|
| 536 | |
|---|
| 537 | ++numAudioStreamsEnabled; |
|---|
| 538 | } |
|---|
| [9849] | 539 | #endif |
|---|
| [9847] | 540 | } |
|---|
| [7477] | 541 | |
|---|
| [9847] | 542 | |
|---|
| 543 | imagestream->play(); |
|---|
| 544 | } |
|---|
| 545 | |
|---|
| [7477] | 546 | if (image) |
|---|
| [4082] | 547 | { |
|---|
| [9911] | 548 | osg::notify(osg::NOTICE)<<"image->s()"<<image->s()<<" image-t()="<<image->t()<<" aspectRatio="<<image->getPixelAspectRatio()<<std::endl; |
|---|
| [9705] | 549 | |
|---|
| [9913] | 550 | float width = image->s() * image->getPixelAspectRatio(); |
|---|
| 551 | float height = image->t(); |
|---|
| [9705] | 552 | |
|---|
| [9911] | 553 | osg::ref_ptr<osg::Drawable> drawable = myCreateTexturedQuadGeometry(pos, width, height,image, useTextureRectangle, xyPlane, flip); |
|---|
| 554 | |
|---|
| 555 | if (image->isImageTranslucent()) |
|---|
| 556 | { |
|---|
| 557 | osg::notify(osg::NOTICE)<<"Transparent movie, enabling blending."<<std::endl; |
|---|
| [6624] | 558 | |
|---|
| [9911] | 559 | drawable->getOrCreateStateSet()->setMode(GL_BLEND, osg::StateAttribute::ON); |
|---|
| 560 | drawable->getOrCreateStateSet()->setRenderingHint(osg::StateSet::TRANSPARENT_BIN); |
|---|
| 561 | } |
|---|
| 562 | |
|---|
| 563 | geode->addDrawable(drawable.get()); |
|---|
| 564 | |
|---|
| 565 | bottomright = pos + osg::Vec3(width,height,0.0f); |
|---|
| 566 | |
|---|
| 567 | if (xyPlane) pos.y() += height*1.05f; |
|---|
| 568 | else pos.z() += height*1.05f; |
|---|
| [4082] | 569 | } |
|---|
| [7477] | 570 | else |
|---|
| 571 | { |
|---|
| 572 | std::cout<<"Unable to read file "<<arguments[i]<<std::endl; |
|---|
| [9705] | 573 | } |
|---|
| [2809] | 574 | } |
|---|
| 575 | } |
|---|
| [9705] | 576 | |
|---|
| [7477] | 577 | |
|---|
| 578 | viewer.setSceneData(geode.get()); |
|---|
| [2809] | 579 | |
|---|
| [7477] | 580 | if (viewer.getSceneData()==0) |
|---|
| 581 | { |
|---|
| 582 | arguments.getApplicationUsage()->write(std::cout); |
|---|
| 583 | return 1; |
|---|
| 584 | } |
|---|
| 585 | |
|---|
| [2810] | 586 | |
|---|
| [4956] | 587 | MovieEventHandler* meh = new MovieEventHandler(); |
|---|
| [8073] | 588 | meh->setMouseTracking( mouseTracking ); |
|---|
| [7615] | 589 | meh->set( viewer.getSceneData() ); |
|---|
| 590 | viewer.addEventHandler( meh ); |
|---|
| [2809] | 591 | |
|---|
| [7615] | 592 | viewer.addEventHandler( new osgViewer::StatsHandler ); |
|---|
| 593 | viewer.addEventHandler( new osgGA::StateSetManipulator( viewer.getCamera()->getOrCreateStateSet() ) ); |
|---|
| 594 | viewer.addEventHandler( new osgViewer::WindowSizeHandler ); |
|---|
| 595 | |
|---|
| 596 | |
|---|
| 597 | viewer.addEventHandler(new osgViewer::RecordCameraPathHandler); |
|---|
| 598 | |
|---|
| [7648] | 599 | |
|---|
| [2693] | 600 | if (arguments.errors()) |
|---|
| 601 | { |
|---|
| 602 | arguments.writeErrorMessages(std::cout); |
|---|
| 603 | return 1; |
|---|
| 604 | } |
|---|
| 605 | |
|---|
| [7477] | 606 | if (fullscreen) |
|---|
| 607 | { |
|---|
| 608 | viewer.realize(); |
|---|
| [9911] | 609 | |
|---|
| 610 | viewer.getCamera()->setClearColor(osg::Vec4(0.0f,0.0f,0.0f,1.0f)); |
|---|
| [6624] | 611 | |
|---|
| [9911] | 612 | float screenAspectRatio = 1280.0f/1024.0f; |
|---|
| 613 | |
|---|
| 614 | osg::GraphicsContext::WindowingSystemInterface* wsi = osg::GraphicsContext::getWindowingSystemInterface(); |
|---|
| 615 | if (wsi) |
|---|
| 616 | { |
|---|
| 617 | unsigned int width, height; |
|---|
| 618 | wsi->getScreenResolution(osg::GraphicsContext::ScreenIdentifier(0), width, height); |
|---|
| 619 | |
|---|
| 620 | screenAspectRatio = float(width) / float(height); |
|---|
| 621 | } |
|---|
| 622 | |
|---|
| 623 | float modelAspectRatio = (bottomright.x()-topleft.x())/(bottomright.y()-topleft.y()); |
|---|
| 624 | |
|---|
| [7477] | 625 | viewer.getCamera()->setViewMatrix(osg::Matrix::identity()); |
|---|
| [9911] | 626 | |
|---|
| 627 | |
|---|
| 628 | osg::Vec3 center = (bottomright + topleft)*0.5f; |
|---|
| 629 | osg::Vec3 dx(bottomright.x()-center.x(), 0.0f, 0.0f); |
|---|
| 630 | osg::Vec3 dy(0.0f, topleft.y()-center.y(), 0.0f); |
|---|
| 631 | |
|---|
| 632 | float ratio = modelAspectRatio/screenAspectRatio; |
|---|
| 633 | |
|---|
| 634 | if (ratio>1.0f) |
|---|
| 635 | { |
|---|
| 636 | |
|---|
| 637 | bottomright = center + dx - dy * ratio; |
|---|
| 638 | topleft = center - dx + dy * ratio; |
|---|
| 639 | } |
|---|
| 640 | else |
|---|
| 641 | { |
|---|
| 642 | |
|---|
| 643 | bottomright = center + dx / ratio - dy; |
|---|
| 644 | topleft = center - dx / ratio + dy; |
|---|
| 645 | } |
|---|
| 646 | |
|---|
| [7477] | 647 | viewer.getCamera()->setProjectionMatrixAsOrtho2D(topleft.x(),bottomright.x(),topleft.y(),bottomright.y()); |
|---|
| [2693] | 648 | |
|---|
| [7477] | 649 | while(!viewer.done()) |
|---|
| 650 | { |
|---|
| 651 | viewer.frame(); |
|---|
| 652 | } |
|---|
| 653 | return 0; |
|---|
| 654 | } |
|---|
| 655 | else |
|---|
| 656 | { |
|---|
| 657 | |
|---|
| 658 | return viewer.run(); |
|---|
| 659 | } |
|---|
| [2693] | 660 | } |
|---|
| [9705] | 661 | |
|---|
| [10188] | 662 | #if USE_SDL |
|---|
| 663 | |
|---|
| 664 | #include "SDL.h" |
|---|
| 665 | |
|---|
| [10193] | 666 | static void soundReadCallback(void * user_data, uint8_t * data, int datalen) |
|---|
| 667 | { |
|---|
| 668 | SDLAudioSink * sink = reinterpret_cast<SDLAudioSink*>(user_data); |
|---|
| 669 | osg::ref_ptr<osg::AudioStream> as = sink->_audioStream.get(); |
|---|
| 670 | if (as.valid()) |
|---|
| 671 | { |
|---|
| 672 | as->consumeAudioBuffer(data, datalen); |
|---|
| 673 | } |
|---|
| 674 | } |
|---|
| 675 | |
|---|
| [10188] | 676 | SDLAudioSink::~SDLAudioSink() |
|---|
| 677 | { |
|---|
| [10925] | 678 | stop(); |
|---|
| 679 | } |
|---|
| 680 | |
|---|
| 681 | void SDLAudioSink::play() |
|---|
| 682 | { |
|---|
| 683 | if (_started) |
|---|
| [10188] | 684 | { |
|---|
| [10925] | 685 | if (_paused) |
|---|
| 686 | { |
|---|
| 687 | SDL_PauseAudio(0); |
|---|
| 688 | _paused = false; |
|---|
| 689 | } |
|---|
| 690 | return; |
|---|
| 691 | } |
|---|
| [10188] | 692 | |
|---|
| [10925] | 693 | _started = true; |
|---|
| 694 | _paused = false; |
|---|
| [10188] | 695 | |
|---|
| 696 | osg::notify(osg::NOTICE)<<"SDLAudioSink()::startPlaying()"<<std::endl; |
|---|
| 697 | |
|---|
| 698 | osg::notify(osg::NOTICE)<<" audioFrequency()="<<_audioStream->audioFrequency()<<std::endl; |
|---|
| 699 | osg::notify(osg::NOTICE)<<" audioNbChannels()="<<_audioStream->audioNbChannels()<<std::endl; |
|---|
| 700 | osg::notify(osg::NOTICE)<<" audioSampleFormat()="<<_audioStream->audioSampleFormat()<<std::endl; |
|---|
| 701 | |
|---|
| 702 | SDL_AudioSpec specs = { 0 }; |
|---|
| 703 | SDL_AudioSpec wanted_specs = { 0 }; |
|---|
| 704 | |
|---|
| 705 | wanted_specs.freq = _audioStream->audioFrequency(); |
|---|
| 706 | wanted_specs.format = AUDIO_S16SYS; |
|---|
| 707 | wanted_specs.channels = _audioStream->audioNbChannels(); |
|---|
| 708 | wanted_specs.silence = 0; |
|---|
| 709 | wanted_specs.samples = 1024; |
|---|
| 710 | wanted_specs.callback = soundReadCallback; |
|---|
| 711 | wanted_specs.userdata = this; |
|---|
| 712 | |
|---|
| 713 | if (SDL_OpenAudio(&wanted_specs, &specs) < 0) |
|---|
| 714 | throw "SDL_OpenAudio() failed (" + std::string(SDL_GetError()) + ")"; |
|---|
| 715 | |
|---|
| 716 | SDL_PauseAudio(0); |
|---|
| 717 | |
|---|
| 718 | } |
|---|
| 719 | |
|---|
| [10925] | 720 | void SDLAudioSink::pause() |
|---|
| 721 | { |
|---|
| 722 | if (_started) |
|---|
| 723 | { |
|---|
| 724 | SDL_PauseAudio(1); |
|---|
| 725 | _paused = true; |
|---|
| 726 | } |
|---|
| 727 | } |
|---|
| [10188] | 728 | |
|---|
| [10925] | 729 | void SDLAudioSink::stop() |
|---|
| 730 | { |
|---|
| 731 | if (_started) |
|---|
| 732 | { |
|---|
| 733 | if (!_paused) SDL_PauseAudio(1); |
|---|
| 734 | SDL_CloseAudio(); |
|---|
| 735 | |
|---|
| 736 | osg::notify(osg::NOTICE)<<"~SDLAudioSink() destructor, but still playing"<<std::endl; |
|---|
| 737 | } |
|---|
| 738 | } |
|---|
| 739 | |
|---|
| [10188] | 740 | #endif |
|---|