]> git.mxchange.org Git - simgear.git/blob - simgear/props/PropertyBasedElement.hxx
More helper methods for Canvas and PropertyBasedElement.
[simgear.git] / simgear / props / PropertyBasedElement.hxx
1 // Base class for elements of property controlled subsystems
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #ifndef SG_PROPERTY_BASED_ELEMENT_HXX_
20 #define SG_PROPERTY_BASED_ELEMENT_HXX_
21
22 #include <simgear/props/props.hxx>
23
24 #include <boost/call_traits.hpp>
25 #include <boost/shared_ptr.hpp>
26 #include <boost/weak_ptr.hpp>
27
28
29 namespace simgear
30 {
31
32   class PropertyBasedElement;
33   typedef boost::shared_ptr<PropertyBasedElement> PropertyBasedElementPtr;
34   typedef boost::weak_ptr<PropertyBasedElement> PropertyBasedElementWeakPtr;
35
36   /**
37    * Base class for a property controlled element
38    */
39   class PropertyBasedElement:
40     public SGPropertyChangeListener
41   {
42     public:
43       PropertyBasedElement(SGPropertyNode* node);
44       virtual ~PropertyBasedElement();
45
46       virtual void update(double delta_time_sec) = 0;
47
48       SGConstPropertyNode_ptr getProps() const;
49       SGPropertyNode_ptr getProps();
50
51       template<class T>
52       void set( const std::string& name,
53                 typename boost::call_traits<T>::param_type val )
54       {
55         setValue(_node->getNode(name, true), val);
56       }
57
58       template<class T>
59       T get( const std::string& name,
60              typename boost::call_traits<T>::param_type def = T() )
61       {
62         SGPropertyNode const* child = _node->getNode(name);
63         if( !child )
64           return def;
65
66         return getValue<T>(child);
67       }
68
69       virtual void setSelf(const PropertyBasedElementPtr& self);
70
71     protected:
72
73       SGPropertyNode_ptr _node;
74       PropertyBasedElementWeakPtr _self;
75   };
76
77 } // namespace simgear
78
79 #endif /* SG_PROPERTY_BASED_ELEMENT_HXX_ */