]> git.mxchange.org Git - simgear.git/blob - simgear/scene/util/SGReaderWriterOptions.cxx
Work around apparent OSG 3.2.0 normal binding bug.
[simgear.git] / simgear / scene / util / SGReaderWriterOptions.cxx
1 // Copyright (C) 2007 Tim Moore timoore@redhat.com
2 // Copyright (C) 2008 Till Busch buti@bux.at
3 // Copyright (C) 2011 Mathias Froehlich
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 //
19
20 #ifdef HAVE_CONFIG_H
21 #  include <simgear_config.h>
22 #endif
23
24 #include <simgear/scene/util/OsgMath.hxx>
25
26 #include "SGReaderWriterOptions.hxx"
27
28 #include <osgDB/Registry>
29
30 namespace simgear
31 {
32
33 SGReaderWriterOptions::~SGReaderWriterOptions()
34 {
35 }
36
37 SGReaderWriterOptions*
38 SGReaderWriterOptions::copyOrCreate(const osgDB::Options* options)
39 {
40     if (!options)
41         options = osgDB::Registry::instance()->getOptions();
42     if (!options)
43         return new SGReaderWriterOptions;
44     if (!dynamic_cast<const SGReaderWriterOptions*>(options))
45         return new SGReaderWriterOptions(*options);
46     return new SGReaderWriterOptions(*static_cast<const SGReaderWriterOptions*>(options));
47 }
48
49 SGReaderWriterOptions*
50 SGReaderWriterOptions::fromPath(const std::string& path)
51 {
52     SGReaderWriterOptions* options = copyOrCreate(0);
53     options->setDatabasePath(path);
54     return options;
55 }
56
57 }