]> git.mxchange.org Git - simgear.git/blob - simgear/props/propertyObject.cxx
0685ae917463802481a8c7ab2f5e7769f4e469af
[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 namespace simgear
25 {
26
27 SGPropertyNode* static_defaultRoot = NULL;
28
29 void PropertyObjectBase::setDefaultRoot(SGPropertyNode* aRoot)
30 {
31   static_defaultRoot = aRoot;
32 }
33
34 PropertyObjectBase::PropertyObjectBase(const PropertyObjectBase& aOther) :
35   _base(aOther._base),
36   _path(aOther._path),
37   _prop(aOther._prop)
38 {
39
40 }
41
42 PropertyObjectBase::PropertyObjectBase(const char* aChild) :
43   _base(NULL),
44   _path(aChild),
45   _prop(NULL)
46 {
47 }
48   
49 PropertyObjectBase::PropertyObjectBase(SGPropertyNode* aNode, const char* aChild) :
50   _base(aNode),
51   _path(aChild),
52   _prop(NULL)
53 {
54
55 }
56   
57 SGPropertyNode* PropertyObjectBase::node(bool aCreate) const
58 {
59   if (_prop) {
60     return _prop;
61   }
62   
63   _prop = _base ? _base : static_defaultRoot;
64   if (_path) {
65     _prop = _prop->getNode(_path, aCreate);
66   }
67   
68   return _prop;
69 }
70
71 } // of namespace simgear
72