/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 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. */ #ifndef OSGDB_SHAREDSTATEMANAGER #define OSGDB_SHAREDSTATEMANAGER 1 #include #include #include #include #include namespace osgDB { class OSGDB_EXPORT SharedStateManager : public osg::NodeVisitor { public: enum ShareMode { SHARE_NONE = 0x00, SHARE_TEXTURES = 0x01, SHARE_STATESETS = 0x02, SHARE_ALL = SHARE_TEXTURES | SHARE_STATESETS }; SharedStateManager(); void setShareMode(unsigned int mode) { shareMode = mode; } unsigned int getShareMode() { return shareMode; } // Call right after each unload and before Registry cache prune. void prune(); // Call right after each load void share(osg::Node *node, OpenThreads::Mutex *mt=0); void apply(osg::Node& node); void apply(osg::Geode& geode); protected: void process(osg::StateSet* ss, osg::Object* parent); osg::StateAttribute *find(osg::StateAttribute *sa); osg::StateSet *find(osg::StateSet *ss); void setStateSet(osg::StateSet* ss, osg::Object* object); void shareTextures(osg::StateSet* ss); // Lists of shared objects typedef std::set< osg::ref_ptr > TextureSet; TextureSet _sharedTextureList; typedef std::set< osg::ref_ptr > StateSetSet; StateSetSet _sharedStateSetList; // Temporary lists just to avoid unnecesary find calls typedef std::pair TextureSharePair; typedef std::map TextureTextureSharePairMap; TextureTextureSharePairMap tmpSharedTextureList; typedef std::pair StateSetSharePair; typedef std::map StateSetStateSetSharePairMap; StateSetStateSetSharePairMap tmpSharedStateSetList; // Share connection mutex unsigned int shareMode; OpenThreads::Mutex *mutex; }; } #endif