]> git.mxchange.org Git - simgear.git/blob - simgear/props/propertyObject.cxx
df3f81f990004088dbb2d88044cf95b7c2846105
[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(const PropertyObjectBase& aOther) :
39   _path(aOther._path),
40   _prop(aOther._prop)
41 {
42
43 }
44
45 PropertyObjectBase::PropertyObjectBase(const char* aChild) :
46   _path(aChild),
47   _prop(NULL)
48 {
49 }
50   
51 PropertyObjectBase::PropertyObjectBase(SGPropertyNode* aNode, const char* aChild) :
52   _path(aChild),
53   _prop(aNode)
54 {
55
56 }
57   
58 SGPropertyNode* PropertyObjectBase::node(bool aCreate) const
59 {
60   if (_path == NULL) { // already resolved
61     return _prop;
62   }
63   
64   SGPropertyNode* r = _prop ? _prop : static_defaultRoot;
65   _prop = r->getNode(_path, aCreate);
66   
67   if (_prop) {
68     // resolve worked, we will cache from now on, so clear _path
69     _path = NULL;
70   }
71
72   return _prop;
73 }
74
75 SGPropertyNode* PropertyObjectBase::getOrThrow() const
76 {
77   SGPropertyNode* n = node(false);
78   if (!n) {
79     std::string path;
80     if (_prop) {
81       path = _prop->getPath();
82       if (_path) {
83         path += '/';      
84       }
85     }
86
87     if (_path) {
88       path += _path;
89     }
90
91     throw sg_exception("Unknown property:" + path);
92   }
93
94   return n;
95 }
96
97 } // of namespace simgear
98