]> git.mxchange.org Git - simgear.git/blob - simgear/scene/model/modellib.cxx
Compile with MSVC10
[simgear.git] / simgear / scene / model / modellib.cxx
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
18 #ifdef HAVE_CONFIG_H
19 #  include <simgear_config.h>
20 #endif
21
22 #include <boost/algorithm/string.hpp>
23
24 #include <osgDB/ReadFile>
25 #include <osgDB/WriteFile>
26 #include <osgDB/Registry>
27
28 #include <simgear/constants.h>
29 #include <simgear/props/props.hxx>
30 #include <simgear/props/props_io.hxx>
31 #include <simgear/scene/model/model.hxx>
32 #include <simgear/scene/model/ModelRegistry.hxx>
33
34 #include "SGPagedLOD.hxx"
35 #include "SGReaderWriterXML.hxx"
36 #include "SGReaderWriterXMLOptions.hxx"
37
38 #include "modellib.hxx"
39
40 #include <simgear/math/SGMath.hxx>
41
42
43 using namespace simgear;
44
45 osgDB::RegisterReaderWriterProxy<SGReaderWriterXML> g_readerWriter_XML_Proxy;
46 ModelRegistryCallbackProxy<LoadOnlyCallback> g_xmlCallbackProxy("xml");
47
48 \fSGPropertyNode_ptr SGModelLib::static_propRoot;
49 SGModelLib::panel_func SGModelLib::static_panelFunc = NULL;
50 SGModelLib::resolve_func SGModelLib::static_resolver = NULL;
51
52 ////////////////////////////////////////////////////////////////////////
53 // Implementation of SGModelLib.
54 ////////////////////////////////////////////////////////////////////////
55 void SGModelLib::init(const string &root_dir)
56 {
57     osgDB::Registry::instance()->getDataFilePathList().push_front(root_dir);
58 }
59
60 void SGModelLib::setPropRoot(SGPropertyNode* root)
61 {
62   static_propRoot = root;
63 }
64     
65 void SGModelLib::setPanelFunc(panel_func pf)
66 {
67   static_panelFunc = pf;
68 }
69
70 void SGModelLib::setResolveFunc(resolve_func rf)
71 {
72   static_resolver = rf;
73 }
74
75 std::string SGModelLib::findDataFile(const std::string& file, 
76   const osgDB::ReaderWriter::Options* opts)
77 {
78   if (static_resolver) {
79     SGPath p = static_resolver(file);
80     if (p.exists()) {
81       return p.str();
82     }
83   }
84   
85   return osgDB::findDataFile(file, opts);
86 }
87
88 SGModelLib::SGModelLib()
89 {
90 }
91
92 SGModelLib::~SGModelLib()
93 {
94 }
95
96 namespace
97 {
98 osg::Node* loadFile(const string& path, osgDB::ReaderWriter::Options* options)
99 {
100     using namespace osg;
101     using namespace osgDB;
102     ref_ptr<Node> model = readRefNodeFile(path, options);
103     if (!model)
104         return 0;
105     if (boost::iends_with(path, ".ac")) {
106         ref_ptr<SGReaderWriterXMLOptions> sgOptions;
107         if (options)
108             sgOptions = new SGReaderWriterXMLOptions(*options);
109         model = instantiateEffects(model.get(), sgOptions.get());
110     }
111      return model.release();
112 }
113 }
114
115 osg::Node*
116 SGModelLib::loadModel(const string &path,
117                        SGPropertyNode *prop_root,
118                        SGModelData *data)
119 {
120     osg::ref_ptr<SGReaderWriterXMLOptions> opt = new SGReaderWriterXMLOptions(*(osgDB::Registry::instance()->getOptions()));
121     opt->setPropRoot(prop_root ? prop_root: static_propRoot.get());
122     opt->setModelData(data);
123     opt->setLoadPanel(static_panelFunc);
124     
125     osg::Node *n = loadFile(path, opt.get());
126     if (n && n->getName().empty())
127         n->setName("Direct loaded model \"" + path + "\"");
128     return n;
129
130 }
131
132 osg::Node*
133 SGModelLib::loadPagedModel(const string &path,
134                            SGPropertyNode *prop_root,
135                            SGModelData *data)
136 {
137     SGPagedLOD *plod = new SGPagedLOD;
138     plod->setName("Paged LOD for \"" + path + "\"");
139     plod->setFileName(0, path);
140     plod->setRange(0, 0.0, 50.0*SG_NM_TO_METER);
141
142     osg::ref_ptr<SGReaderWriterXMLOptions> opt = new SGReaderWriterXMLOptions(*(osgDB::Registry::instance()->getOptions()));
143     opt->setPropRoot(prop_root ? prop_root: static_propRoot.get());
144     opt->setModelData(data);
145     opt->setLoadPanel(static_panelFunc);
146     
147     plod->setReaderWriterOptions(opt.get());
148     return plod;
149 }
150
151 // end of modellib.cxx