]> git.mxchange.org Git - flightgear.git/blob - src/GUI/MapWidget.hxx
MapWidget: Show counties and towns as well, depending on the zoom.
[flightgear.git] / src / GUI / MapWidget.hxx
1 #ifndef GUI_MAPWIDGET_HXX
2 #define GUI_MAPWIDGET_HXX
3
4 #include <map>
5 #include <simgear/compiler.h>
6 #include <simgear/math/SGMath.hxx>
7 #include <simgear/props/props.hxx>
8
9 #include <plib/pu.h>
10
11 #include "dialog.hxx" // for GUI_ID
12
13 // forward decls
14 class FGRouteMgr;
15 class FGRunway;
16 class FGHelipad;
17 class FGAirport;
18 class FGNavRecord;
19 class FGFix;
20 class MapData;
21 class SGMagVar;
22
23 class MapWidget : public puObject
24 {
25 public:
26   MapWidget(int x, int y, int width, int height);
27   virtual ~MapWidget();
28   
29   virtual void setSize(int width, int height);
30   virtual void doHit( int button, int updown, int x, int y ) ;
31   virtual void draw( int dx, int dy ) ;
32   virtual int checkKey(int key, int updown);
33     
34   void setProperty(SGPropertyNode_ptr prop);
35 private:
36   int zoom() const;
37   
38   void handlePan(int x, int y);
39   
40   void pan(const SGVec2d& delta);
41   void zoomIn();
42   void zoomOut();
43   
44   void paintAircraftLocation(const SGGeod& aircraftPos);
45   void paintRoute();
46   void paintRuler();
47   void drawFlightHistory();
48   
49   void drawGPSData();
50   void drawNavRadio(SGPropertyNode_ptr radio);
51   void drawTunedLocalizer(SGPropertyNode_ptr radio);
52   
53   void drawLatLonGrid();
54   SGVec2d gridPoint(int ix, int iy);
55   bool drawLineClipped(const SGVec2d& a, const SGVec2d& b);
56   
57   void drawAirports();
58   void drawAirport(FGAirport* apt);
59   int scoreAirportRunways(FGAirport* apt);
60   void drawRunwayPre(FGRunway* rwy);
61   void drawRunway(FGRunway* rwy);
62   void drawHelipad(FGHelipad* hp);
63   void drawILS(bool tuned, FGRunway* rwy);
64   
65   void drawNavaids();
66   void drawPOIs();
67   void drawNDB(bool tuned, FGNavRecord* nav);
68   void drawVOR(bool tuned, FGNavRecord* nav);
69   void drawFix(FGFix* fix);
70
71   void drawCountries(FGNavRecord* rec);
72   void drawCities(FGNavRecord* rec);
73   void drawTowns(FGNavRecord* rec);
74   
75   void drawTraffic();
76   void drawAIAircraft(const SGPropertyNode* model, const SGGeod& pos, double hdg);
77   void drawAIShip(const SGPropertyNode* model, const SGGeod& pos, double hdg);
78   
79   void drawData();
80   bool validDataForKey(void* key);
81   MapData* getOrCreateDataForKey(void* key);
82   MapData* createDataForKey(void* key);
83   void setAnchorForKey(void* key, const SGVec2d& anchor);
84   void clearData();
85   
86   SGVec2d project(const SGGeod& geod) const;
87   SGGeod unproject(const SGVec2d& p) const;
88   double currentScale() const;
89   
90   int displayHeading(double trueHeading) const;
91   
92   void circleAt(const SGVec2d& center, int nSides, double r);
93   void circleAtAlt(const SGVec2d& center, int nSides, double r, double r2);
94   void drawLine(const SGVec2d& p1, const SGVec2d& p2);
95   void drawLegendBox(const SGVec2d& pos, const std::string& t);
96   
97   int _width, _height;
98   int _cachedZoom;
99   double _drawRangeNm;
100   double _upHeading; // true heading corresponding to +ve y-axis
101   bool _magneticHeadings;
102   bool _hasPanned;
103   
104   SGGeod _projectionCenter;
105   bool _orthoAzimuthProject;
106   SGGeod _aircraft;
107   SGGeod _clickGeod;
108   SGVec2d _hitLocation;
109   FGRouteMgr* _route;
110   SGPropertyNode_ptr _root;
111   SGPropertyNode_ptr _gps;
112   
113   typedef std::map<void*, MapData*> KeyDataMap;
114   KeyDataMap _mapData;
115   std::vector<MapData*> _dataQueue;
116   
117   SGMagVar* _magVar;
118   
119   typedef std::map<int, SGVec2d> GridPointCache;
120   GridPointCache _gridCache;
121   double _gridSpacing;
122   SGGeod _gridCenter;
123 };
124
125 #endif // of GUI_MAPWIDGET_HXX