104 lines
2.2 KiB
C++
104 lines
2.2 KiB
C++
// Copyright (C) 2010 James Turner - zakalawe@mac.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 General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
//
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "simgear_config.h"
|
|
#endif
|
|
|
|
#include "propertyObject.hxx"
|
|
|
|
#include <simgear/structure/exception.hxx>
|
|
|
|
namespace simgear
|
|
{
|
|
|
|
SGPropertyNode* static_defaultRoot = NULL;
|
|
|
|
void PropertyObjectBase::setDefaultRoot(SGPropertyNode* aRoot)
|
|
{
|
|
static_defaultRoot = aRoot;
|
|
}
|
|
|
|
PropertyObjectBase::PropertyObjectBase() :
|
|
_path(NULL),
|
|
_prop(NULL)
|
|
{
|
|
|
|
}
|
|
|
|
PropertyObjectBase::PropertyObjectBase(const PropertyObjectBase& aOther) :
|
|
_path(aOther._path),
|
|
_prop(aOther._prop)
|
|
{
|
|
|
|
}
|
|
|
|
PropertyObjectBase::PropertyObjectBase(const char* aChild) :
|
|
_path(aChild),
|
|
_prop(NULL)
|
|
{
|
|
}
|
|
|
|
PropertyObjectBase::PropertyObjectBase(SGPropertyNode* aNode, const char* aChild) :
|
|
_path(aChild),
|
|
_prop(aNode)
|
|
{
|
|
|
|
}
|
|
|
|
SGPropertyNode* PropertyObjectBase::node(bool aCreate) const
|
|
{
|
|
if (_path == NULL) { // already resolved
|
|
return _prop;
|
|
}
|
|
|
|
SGPropertyNode* r = _prop ? _prop : static_defaultRoot;
|
|
_prop = r->getNode(_path, aCreate);
|
|
|
|
if (_prop) {
|
|
// resolve worked, we will cache from now on, so clear _path
|
|
_path = NULL;
|
|
}
|
|
|
|
return _prop;
|
|
}
|
|
|
|
SGPropertyNode* PropertyObjectBase::getOrThrow() const
|
|
{
|
|
SGPropertyNode* n = node(false);
|
|
if (!n) {
|
|
std::string path;
|
|
if (_prop) {
|
|
path = _prop->getPath();
|
|
if (_path) {
|
|
path += '/';
|
|
}
|
|
}
|
|
|
|
if (_path) {
|
|
path += _path;
|
|
}
|
|
|
|
throw sg_exception("Unknown property:" + path);
|
|
}
|
|
|
|
return n;
|
|
}
|
|
|
|
} // of namespace simgear
|
|
|