]> git.mxchange.org Git - simgear.git/blob - simgear/scene/model/SGPagedLOD.hxx
accomodate changes to osgDB::DatabasePager interface
[simgear.git] / simgear / scene / model / SGPagedLOD.hxx
1 // Copyright (C) 2008 Till Busch buti@bux.at
2 //
3 // This program is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU General Public License as
5 // published by the Free Software Foundation; either version 2 of the
6 // License, or (at your option) any later version.
7 //
8 // This program is distributed in the hope that it will be useful, but
9 // WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16
17 #ifndef SGPAGEDLOD_HXX
18 #define SGPAGEDLOD_HXX 1
19
20 #include <simgear/structure/OSGVersion.hxx>
21
22 #define SG_PAGEDLOD_HAS_OPTIONS \
23     (SG_OSG_VERSION >= 29005 \
24      || (SG_OSG_VERSION < 29000 && SG_OSG_VERSION >= 28003))
25
26 #include <osg/PagedLOD>
27 #include <osgDB/Registry>
28 #include <osgDB/ReaderWriter>
29 #include <simgear/props/props.hxx>
30
31 namespace osgDB {
32 class DatabasePager;
33 }
34
35
36 namespace simgear
37 {
38
39 class SGPagedLOD : public osg::PagedLOD
40 {
41 public:
42     SGPagedLOD();
43
44     SGPagedLOD(const SGPagedLOD&,const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY);
45
46     META_Node(simgear, SGPagedLOD);
47
48     // virtual void traverse(osg::NodeVisitor& nv);
49     virtual void forceLoad(osgDB::DatabasePager* dbp,
50                            osg::FrameStamp* framestamp,
51                            osg::NodePath& path);
52
53     // reimplemented to notify the loading through ModelData
54     bool addChild(osg::Node *child);
55
56     void setReaderWriterOptions(osgDB::ReaderWriter::Options *options) {
57         options->setObjectCacheHint(osgDB::ReaderWriter::Options::CACHE_NONE);
58 #if SG_PAGEDLOD_HAS_OPTIONS
59         setDatabaseOptions(options);
60 #else
61         _readerWriterOptions = options;
62 #endif
63     }
64
65     osgDB::ReaderWriter::Options* getReaderWriterOptions() {
66 #if SG_PAGEDLOD_HAS_OPTIONS
67         return static_cast<osgDB::ReaderWriter::Options*>(getDatabaseOptions());
68 #else
69         return _readerWriterOptions.get();
70 #endif
71     }
72
73 protected:
74     virtual ~SGPagedLOD();
75 #if SG_PAGEDLOD_HAS_OPTIONS
76     osg::ref_ptr<osgDB::ReaderWriter::Options> _readerWriterOptions;
77 #endif
78 };
79 }
80 #endif