]> git.mxchange.org Git - simgear.git/blob - simgear/props/propertyObject.cxx
scenery: Use correct property root in xml loading.
[simgear.git] / simgear / props / propertyObject.cxx
1 // Copyright (C) 2010  James Turner - zakalawe@mac.com
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library 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 "propertyObject.hxx"
23
24 #include <simgear/math/SGMath.hxx>
25
26 #include <simgear/structure/exception.hxx>
27
28 namespace simgear
29 {
30
31 SGPropertyNode* static_defaultRoot = NULL;
32
33 void PropertyObjectBase::setDefaultRoot(SGPropertyNode* aRoot)
34 {
35   static_defaultRoot = aRoot;
36 }
37   
38 PropertyObjectBase::PropertyObjectBase() :
39   _path(NULL),
40   _prop(NULL)
41 {
42     
43 }
44
45 PropertyObjectBase::PropertyObjectBase(const PropertyObjectBase& aOther) :
46   _path(aOther._path),
47   _prop(aOther._prop)
48 {
49
50 }
51
52 PropertyObjectBase::PropertyObjectBase(const char* aChild) :
53   _path(aChild),
54   _prop(NULL)
55 {
56 }
57   
58 PropertyObjectBase::PropertyObjectBase(SGPropertyNode* aNode, const char* aChild) :
59   _path(aChild),
60   _prop(aNode)
61 {
62
63 }
64   
65 SGPropertyNode* PropertyObjectBase::node(bool aCreate) const
66 {
67   if (_path == NULL) { // already resolved
68     return _prop;
69   }
70   
71   SGPropertyNode* r = _prop ? _prop : static_defaultRoot;
72   _prop = r->getNode(_path, aCreate);
73   
74   if (_prop) {
75     // resolve worked, we will cache from now on, so clear _path
76     _path = NULL;
77   }
78
79   return _prop;
80 }
81
82 SGPropertyNode* PropertyObjectBase::getOrThrow() const
83 {
84   SGPropertyNode* n = node(false);
85   if (!n) {
86     std::string path;
87     if (_prop) {
88       path = _prop->getPath();
89       if (_path) {
90         path += '/';      
91       }
92     }
93
94     if (_path) {
95       path += _path;
96     }
97
98     throw sg_exception("Unknown property:" + path);
99   }
100
101   return n;
102 }
103
104 } // of namespace simgear
105