]> git.mxchange.org Git - flightgear.git/blob - src/GUI/MapWidget.hxx
Add support for helipads from apt.dat 850+
[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 drawNDB(bool tuned, FGNavRecord* nav);
67   void drawVOR(bool tuned, FGNavRecord* nav);
68   void drawFix(FGFix* fix);
69   
70   void drawTraffic();
71   void drawAIAircraft(const SGPropertyNode* model, const SGGeod& pos, double hdg);
72   void drawAIShip(const SGPropertyNode* model, const SGGeod& pos, double hdg);
73   
74   void drawData();
75   bool validDataForKey(void* key);
76   MapData* getOrCreateDataForKey(void* key);
77   MapData* createDataForKey(void* key);
78   void setAnchorForKey(void* key, const SGVec2d& anchor);
79   void clearData();
80   
81   SGVec2d project(const SGGeod& geod) const;
82   SGGeod unproject(const SGVec2d& p) const;
83   double currentScale() const;
84   
85   int displayHeading(double trueHeading) const;
86   
87   void circleAt(const SGVec2d& center, int nSides, double r);
88   void circleAtAlt(const SGVec2d& center, int nSides, double r, double r2);
89   void drawLine(const SGVec2d& p1, const SGVec2d& p2);
90   void drawLegendBox(const SGVec2d& pos, const std::string& t);
91   
92   int _width, _height;
93   int _cachedZoom;
94   double _drawRangeNm;
95   double _upHeading; // true heading corresponding to +ve y-axis
96   bool _magneticHeadings;
97   bool _hasPanned;
98   
99   SGGeod _projectionCenter;
100   bool _orthoAzimuthProject;
101   SGGeod _aircraft;
102   SGGeod _clickGeod;
103   SGVec2d _hitLocation;
104   FGRouteMgr* _route;
105   SGPropertyNode_ptr _root;
106   SGPropertyNode_ptr _gps;
107   
108   typedef std::map<void*, MapData*> KeyDataMap;
109   KeyDataMap _mapData;
110   std::vector<MapData*> _dataQueue;
111   
112   SGMagVar* _magVar;
113   
114   typedef std::map<int, SGVec2d> GridPointCache;
115   GridPointCache _gridCache;
116   double _gridSpacing;
117   SGGeod _gridCenter;
118 };
119
120 #endif // of GUI_MAPWIDGET_HXX