]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/SGReaderWriterBTGOptions.hxx
Merge branch 'maint' into next
[simgear.git] / simgear / scene / tgdb / SGReaderWriterBTGOptions.hxx
1 // Copyright (C) 2007 Tim Moore timoore@redhat.com
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 SGREADERWRITERBTGOPTIONS_HXX
18 #define SGREADERWRITERBTGOPTIONS_HXX
19
20 #include <osgDB/ReaderWriter>
21 #include <simgear/scene/tgdb/obj.hxx>
22 class SGReaderWriterBTGOptions : public osgDB::ReaderWriter::Options {
23 public:
24     SGReaderWriterBTGOptions(const std::string& str = defaultOptions) :
25         osgDB::ReaderWriter::Options(str),
26         _matlib(0), _calcLights(true),
27         _useRandomObjects(false),
28         _useRandomVegetation(false)
29     {}
30
31     SGReaderWriterBTGOptions(const SGReaderWriterBTGOptions& options,
32             const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY):
33         osgDB::ReaderWriter::Options(options, copyop),
34         _matlib(options._matlib), _calcLights(options._calcLights),
35         _useRandomObjects(options._useRandomObjects),
36         _useRandomVegetation(options._useRandomVegetation)
37     {
38     }
39     SGMaterialLib* getMatlib() const { return _matlib; }
40     void setMatlib (SGMaterialLib* matlib) { _matlib = matlib; }
41     bool getCalcLights() const { return _calcLights; }
42     void setCalcLights(bool calcLights)  { _calcLights = calcLights; }
43     bool getUseRandomObjects() const { return _useRandomObjects; }
44     bool getUseRandomVegetation() const { return _useRandomVegetation; }
45     void setUseRandomObjects(bool useRandomObjects)
46     {
47         _useRandomObjects = useRandomObjects;
48     }
49     void setUseRandomVegetation(bool useRandomVegetation)
50     {
51         _useRandomVegetation = useRandomVegetation;
52     }
53
54 protected:
55     virtual ~SGReaderWriterBTGOptions() {}
56     SGMaterialLib* _matlib;
57     bool _calcLights;
58     bool _useRandomObjects;
59     bool _useRandomVegetation;
60     static std::string defaultOptions;
61 };
62 #endif