]> git.mxchange.org Git - simgear.git/blob - simgear/scene/util/OsgDebug.cxx
Work around apparent OSG 3.2.0 normal binding bug.
[simgear.git] / simgear / scene / util / OsgDebug.cxx
1 // Helper for OSG related debugging
2 //
3 // Copyright (C) 2013  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #include "OsgDebug.hxx"
20 #include <osg/Node>
21
22 namespace simgear
23 {
24
25   //----------------------------------------------------------------------------
26   std::string getNodePathString(const osg::Node* node)
27   {
28     if( !node )
29       return "(nullptr)";
30
31     std::string str;
32     const osg::NodePathList& paths = node->getParentalNodePaths();
33     for(size_t i = 0; i < paths.size(); ++i)
34     {
35       if( !str.empty() )
36         str += ":";
37
38       const osg::NodePath& path = paths.at(i);
39       for(size_t j = 0; j < path.size(); ++j)
40       {
41         const osg::Node* node = path[j];
42         str += "/'" + node->getName() + "'";
43       }
44     }
45
46     return str;
47   }
48
49 } // namespace simgear