]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/elements/element.hxx
Allow filling paths and do some clean up/fixing.
[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     public 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       virtual void childAdded( SGPropertyNode * parent,
50                                SGPropertyNode * child );
51       virtual void childRemoved( SGPropertyNode * parent,
52                                  SGPropertyNode * child );
53       virtual void valueChanged(SGPropertyNode * child);
54
55     protected:
56
57       enum Attributes
58       {
59         COLOR           = 0x0001,
60         COLOR_FILL      = 0x0002,
61         BOUNDING_BOX    = 0x0004,
62         LAST_ATTRIBUTE  = BOUNDING_BOX
63       };
64
65       enum TransformType
66       {
67         TT_NONE,
68         TT_MATRIX,
69         TT_TRANSLATE,
70         TT_ROTATE,
71         TT_SCALE
72       };
73
74       uint32_t _attributes_used;
75       uint32_t _attributes_dirty;
76
77       bool _transform_dirty;
78       osg::ref_ptr<osg::MatrixTransform>    _transform;
79       std::vector<TransformType>            _transform_types;
80
81       SGPropertyNode_ptr                _node;
82       std::vector<SGPropertyNode_ptr>   _color,
83                                         _color_fill;
84       std::vector<SGPropertyNode_ptr>   _bounding_box;
85
86       Element(SGPropertyNode_ptr node, uint32_t attributes_used = 0);
87
88       virtual void childAdded(SGPropertyNode * child)  {}
89       virtual void childRemoved(SGPropertyNode * child){}
90       virtual void childChanged(SGPropertyNode * child){}
91
92       virtual void colorChanged(const osg::Vec4& color)  {}
93       virtual void colorFillChanged(const osg::Vec4& color){}
94
95       void setDrawable( osg::Drawable* drawable );
96
97     private:
98
99       osg::Drawable  *_drawable;
100
101       Element(const Element&);// = delete
102   };
103
104 }  // namespace canvas
105
106 #endif /* CANVAS_ELEMENT_HXX_ */