Add helper to get osg::Node path as string.
This commit is contained in:
parent
b217019723
commit
9b68062ba7
@ -7,6 +7,7 @@ set(HEADERS
|
|||||||
NodeAndDrawableVisitor.hxx
|
NodeAndDrawableVisitor.hxx
|
||||||
Noise.hxx
|
Noise.hxx
|
||||||
OptionsReadFileCallback.hxx
|
OptionsReadFileCallback.hxx
|
||||||
|
OsgDebug.hxx
|
||||||
OsgMath.hxx
|
OsgMath.hxx
|
||||||
OsgSingleton.hxx
|
OsgSingleton.hxx
|
||||||
parse_color.hxx
|
parse_color.hxx
|
||||||
@ -37,6 +38,7 @@ set(SOURCES
|
|||||||
NodeAndDrawableVisitor.cxx
|
NodeAndDrawableVisitor.cxx
|
||||||
Noise.cxx
|
Noise.cxx
|
||||||
OptionsReadFileCallback.cxx
|
OptionsReadFileCallback.cxx
|
||||||
|
OsgDebug.cxx
|
||||||
parse_color.cxx
|
parse_color.cxx
|
||||||
PrimitiveUtils.cxx
|
PrimitiveUtils.cxx
|
||||||
QuadTreeBuilder.cxx
|
QuadTreeBuilder.cxx
|
||||||
|
49
simgear/scene/util/OsgDebug.cxx
Normal file
49
simgear/scene/util/OsgDebug.cxx
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
// Helper for OSG related debugging
|
||||||
|
//
|
||||||
|
// Copyright (C) 2013 Thomas Geymayer <tomgey@gmail.com>
|
||||||
|
//
|
||||||
|
// This library is free software; you can redistribute it and/or
|
||||||
|
// modify it under the terms of the GNU Library General Public
|
||||||
|
// License as published by the Free Software Foundation; either
|
||||||
|
// version 2 of the License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This library is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
// Library General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Library General Public
|
||||||
|
// License along with this library; if not, write to the Free Software
|
||||||
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
|
||||||
|
#include "OsgDebug.hxx"
|
||||||
|
#include <osg/Node>
|
||||||
|
|
||||||
|
namespace simgear
|
||||||
|
{
|
||||||
|
|
||||||
|
//----------------------------------------------------------------------------
|
||||||
|
std::string getNodePathString(const osg::Node* node)
|
||||||
|
{
|
||||||
|
if( !node )
|
||||||
|
return "(nullptr)";
|
||||||
|
|
||||||
|
std::string str;
|
||||||
|
const osg::NodePathList& paths = node->getParentalNodePaths();
|
||||||
|
for(size_t i = 0; i < paths.size(); ++i)
|
||||||
|
{
|
||||||
|
if( !str.empty() )
|
||||||
|
str += ":";
|
||||||
|
|
||||||
|
const osg::NodePath& path = paths.at(i);
|
||||||
|
for(size_t j = 0; j < path.size(); ++j)
|
||||||
|
{
|
||||||
|
const osg::Node* node = path[j];
|
||||||
|
str += "/'" + node->getName() + "'";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace simgear
|
36
simgear/scene/util/OsgDebug.hxx
Normal file
36
simgear/scene/util/OsgDebug.hxx
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
///@file Helper for OSG related debugging
|
||||||
|
//
|
||||||
|
// Copyright (C) 2013 Thomas Geymayer <tomgey@gmail.com>
|
||||||
|
//
|
||||||
|
// This library is free software; you can redistribute it and/or
|
||||||
|
// modify it under the terms of the GNU Library General Public
|
||||||
|
// License as published by the Free Software Foundation; either
|
||||||
|
// version 2 of the License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This library is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
// Library General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Library General Public
|
||||||
|
// License along with this library; if not, write to the Free Software
|
||||||
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
|
||||||
|
#ifndef OSGDEBUG_HXX_
|
||||||
|
#define OSGDEBUG_HXX_
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
namespace osg { class Node; }
|
||||||
|
namespace simgear
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get parent path(s) of scene graph node as string.
|
||||||
|
*/
|
||||||
|
std::string getNodePathString(const osg::Node* node);
|
||||||
|
|
||||||
|
} // namespace simgear
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* OSGDEBUG_HXX_ */
|
Loading…
Reference in New Issue
Block a user