]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/elements/CanvasMap.hxx
Canvas: More helper functions and cleanup.
[simgear.git] / simgear / canvas / elements / CanvasMap.hxx
1 // A group of 2D Canvas elements which get automatically transformed according
2 // to the map parameters.
3 //
4 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Library General Public
8 // License as published by the Free Software Foundation; either
9 // version 2 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Library General Public License for more details.
15 //
16 // You should have received a copy of the GNU Library General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
19
20 #ifndef CANVAS_MAP_HXX_
21 #define CANVAS_MAP_HXX_
22
23 #include "CanvasGroup.hxx"
24
25 #include <boost/shared_ptr.hpp>
26 #include <boost/unordered_map.hpp>
27
28 namespace simgear
29 {
30 namespace canvas
31 {
32   class GeoNodePair;
33   class HorizontalProjection;
34   class Map:
35     public Group
36   {
37     public:
38       static const std::string TYPE_NAME;
39
40       Map( const CanvasWeakPtr& canvas,
41            const SGPropertyNode_ptr& node,
42            const Style& parent_style,
43            Element* parent = 0 );
44       virtual ~Map();
45
46       virtual void update(double dt);
47
48       virtual void childAdded( SGPropertyNode * parent,
49                                SGPropertyNode * child );
50       virtual void childRemoved( SGPropertyNode * parent,
51                                  SGPropertyNode * child );
52       virtual void valueChanged(SGPropertyNode * child);
53
54     protected:
55
56       virtual void childChanged(SGPropertyNode * child);
57
58       typedef boost::unordered_map< SGPropertyNode*,
59                                     boost::shared_ptr<GeoNodePair>
60                                   > GeoNodes;
61       GeoNodes _geo_nodes;
62       boost::shared_ptr<HorizontalProjection> _projection;
63       bool _projection_dirty;
64
65       struct GeoCoord
66       {
67         GeoCoord():
68           type(INVALID)
69         {}
70         enum
71         {
72           INVALID,
73           LATITUDE,
74           LONGITUDE
75         } type;
76         double value;
77       };
78
79       GeoCoord parseGeoCoord(const std::string& val) const;
80   };
81
82 } // namespace canvas
83 } // namespace simgear
84
85 #endif /* CANVAS_MAP_HXX_ */