]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/elements/element.hxx
Expose character-aspect-ratio and do some clean up
[flightgear.git] / src / Canvas / elements / element.hxx
1 // Interface for 2D canvas element
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19 #ifndef CANVAS_ELEMENT_HXX_
20 #define CANVAS_ELEMENT_HXX_
21
22 #include <simgear/props/props.hxx>
23 #include <osg/MatrixTransform>
24 #include <simgear/misc/stdint.hxx> // for uint32_t
25
26 namespace osg
27 {
28   class Drawable;
29 }
30
31 namespace canvas
32 {
33
34   class Element:
35     private SGPropertyChangeListener
36   {
37     public:
38       virtual ~Element() = 0;
39
40       /**
41        * Called every frame to update internal state
42        *
43        * @param dt  Frame time in seconds
44        */
45       virtual void update(double dt);
46
47       osg::ref_ptr<osg::MatrixTransform> getMatrixTransform();
48
49     protected:
50
51       enum Attributes
52       {
53         COLOR           = 0x0001,
54         COLOR_FILL      = 0x0002,
55         BOUNDING_BOX    = 0x0004,
56         LAST_ATTRIBUTE  = BOUNDING_BOX
57       };
58
59       enum TransformType
60       {
61         TT_NONE,
62         TT_MATRIX,
63         TT_TRANSLATE,
64         TT_ROTATE,
65         TT_SCALE
66       };
67
68       uint32_t _attributes_used;
69       uint32_t _attributes_dirty;
70
71       bool _transform_dirty;
72       osg::ref_ptr<osg::MatrixTransform>    _transform;
73       std::vector<TransformType>            _transform_types;
74
75       SGPropertyNode_ptr                _node;
76       std::vector<SGPropertyNode_ptr>   _color,
77                                         _color_fill;
78       std::vector<SGPropertyNode_ptr>   _bounding_box;
79
80       Element(SGPropertyNode_ptr node, uint32_t attributes_used = 0);
81
82       virtual void childAdded(SGPropertyNode * child)  {}
83       virtual void childRemoved(SGPropertyNode * child){}
84       virtual void childChanged(SGPropertyNode * child){}
85
86       virtual void colorChanged(const osg::Vec4& color)  {}
87       virtual void colorFillChanged(const osg::Vec4& color){}
88
89       void setDrawable( osg::Drawable* drawable );
90
91     private:
92
93       osg::Drawable  *_drawable;
94
95       Element(const Element&);// = delete
96
97       virtual void childAdded( SGPropertyNode * parent,
98                                SGPropertyNode * child );
99       virtual void childRemoved( SGPropertyNode * parent,
100                                  SGPropertyNode * child );
101       virtual void valueChanged(SGPropertyNode * child);
102   };
103
104 }  // namespace canvas
105
106 #endif /* CANVAS_ELEMENT_HXX_ */