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 #include <simgear_config.h>
21 
22 #include <simgear/scene/util/OsgMath.hxx>
23 
24 #include "SGReaderWriterOptions.hxx"
25 
26 #include <osgDB/Registry>
27 
28 namespace simgear
29 {
30 
~SGReaderWriterOptions()31 SGReaderWriterOptions::~SGReaderWriterOptions()
32 {
33 }
34 
35 SGReaderWriterOptions*
copyOrCreate(const osgDB::Options * options)36 SGReaderWriterOptions::copyOrCreate(const osgDB::Options* options)
37 {
38     if (!options)
39         options = osgDB::Registry::instance()->getOptions();
40     if (!options)
41         return new SGReaderWriterOptions;
42     if (!dynamic_cast<const SGReaderWriterOptions*>(options))
43         return new SGReaderWriterOptions(*options);
44     return new SGReaderWriterOptions(*static_cast<const SGReaderWriterOptions*>(options));
45 }
46 
47 SGReaderWriterOptions*
fromPath(const SGPath & path)48 SGReaderWriterOptions::fromPath(const SGPath& path)
49 {
50     SGReaderWriterOptions* options = copyOrCreate(nullptr);
51     options->setDatabasePath(path.utf8Str());
52     return options;
53 }
54 
addErrorContext(const std::string & key,const std::string & value)55 void SGReaderWriterOptions::addErrorContext(const std::string& key, const std::string& value)
56 {
57     _errorContext[key] = value;
58 }
59 
60 
61 } // namespace simgear
62