]> git.mxchange.org Git - simgear.git/blob - simgear/scene/model/SGPagedLOD.hxx
Merge branch 'next' of git.gitorious.org:fg/simgear into next
[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
25 #include <osg/PagedLOD>
26 #include <osgDB/Registry>
27 #include <osgDB/ReaderWriter>
28 #include <simgear/props/props.hxx>
29
30 namespace osgDB {
31 class DatabasePager;
32 }
33
34
35 namespace simgear
36 {
37
38 class SGPagedLOD : public osg::PagedLOD
39 {
40 public:
41     SGPagedLOD();
42
43     SGPagedLOD(const SGPagedLOD&,const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY);
44
45     META_Node(simgear, SGPagedLOD);
46
47     // virtual void traverse(osg::NodeVisitor& nv);
48     virtual void forceLoad(osgDB::DatabasePager* dbp,
49                            osg::FrameStamp* framestamp,
50                            osg::NodePath& path);
51
52     // reimplemented to notify the loading through ModelData
53     bool addChild(osg::Node *child);
54
55     void setReaderWriterOptions(osgDB::ReaderWriter::Options *options);
56
57     osgDB::ReaderWriter::Options* getReaderWriterOptions() {
58 #if SG_PAGEDLOD_HAS_OPTIONS
59         return static_cast<osgDB::ReaderWriter::Options*>(getDatabaseOptions());
60 #else
61         return _readerWriterOptions.get();
62 #endif
63     }
64
65     static void setRenderingCache(bool cache) {_cache = cache;}
66 protected:
67     virtual ~SGPagedLOD();
68 #if !SG_PAGEDLOD_HAS_OPTIONS
69     osg::ref_ptr<osgDB::ReaderWriter::Options> _readerWriterOptions;
70 #endif
71 private:
72     static bool _cache;
73 };
74 }
75 #endif