]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/NavDisplay.hxx
Feature request for Syd - expose the ND view heading
[flightgear.git] / src / Instrumentation / NavDisplay.hxx
1 // Wx Radar background texture
2 //
3 // Written by Harald JOHNSEN, started May 2005.
4 // With major amendments by Vivian MEAZZA May 2007
5 // Ported to OSG by Tim MOORE Jun 2007
6 //
7 // Copyright (C) 2005  Harald JOHNSEN - hjohnsen@evc.net
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22
23 #ifndef _INST_ND_HXX
24 #define _INST_ND_HXX
25
26 #include <osg/ref_ptr>
27 #include <osg/Geode>
28 #include <osg/Texture2D>
29 #include <osgText/Text>
30
31 #include <simgear/props/props.hxx>
32 #include <simgear/structure/subsystem_mgr.hxx>
33 #include <simgear/math/sg_geodesy.hxx>
34
35 #include <vector>
36 #include <string>
37 #include <memory>
38
39 #include <Navaids/positioned.hxx>
40
41 class FGODGauge;
42 class FGRouteMgr;
43 class FGNavRecord;
44
45 class SymbolInstance;
46 class SymbolDef;
47 class SymbolRule;
48
49 namespace flightgear
50 {
51     class Waypt;
52 }
53
54 typedef std::set<std::string> string_set;
55 typedef std::vector<SymbolRule*> SymbolRuleVector;
56 typedef std::vector<SymbolDef*> SymbolDefVector;
57
58 class NavDisplay : public SGSubsystem
59 {
60 public:
61
62     NavDisplay(SGPropertyNode *node);
63     virtual ~NavDisplay();
64
65     virtual void init();
66     virtual void update(double dt);
67
68     void invalidatePositionedCache()
69     {
70         _cachedItemsValid = false;
71     }
72     
73     double textureSize() const
74     { return _textureSize; }
75     
76     void forceUpdate()
77     { _forceUpdate = true; }
78     
79 protected:
80     std::string _name;
81     int _num;
82     double _time;
83     double _updateInterval;
84     bool _forceUpdate;
85     
86     SGPropertyNode_ptr _serviceable_node;
87     SGPropertyNode_ptr _Instrument;
88     SGPropertyNode_ptr _radar_mode_control_node;
89     SGPropertyNode_ptr _user_heading_node;
90     SGPropertyNode_ptr _testModeNode;
91   
92     FGODGauge *_odg;
93
94     // Convenience function for creating a property node with a
95     // default value
96     template<typename DefaultType>
97     SGPropertyNode *getInstrumentNode(const char *name, DefaultType value);
98
99 private:
100     friend class SymbolRule;
101     friend class SymbolDef;
102   
103     void addRule(SymbolRule*);
104   
105     void addSymbolsToScene();
106     void addSymbolToScene(SymbolInstance* sym);
107     void limitDisplayedSymbols();
108     
109     void findItems();
110     void foundPositionedItem(FGPositioned* pos);
111     void computePositionedPropsAndHeading(FGPositioned* pos, SGPropertyNode* nd, double& heading);
112     void computePositionedState(FGPositioned* pos, string_set& states);
113     void processRoute();
114     void computeWayptPropsAndHeading(flightgear::Waypt* wpt, const SGGeod& pos, SGPropertyNode* nd, double& heading);
115     void processNavRadios();
116     FGNavRecord* processNavRadio(const SGPropertyNode_ptr& radio);
117     void processAI();
118     void computeAIStates(const SGPropertyNode* ai, string_set& states);
119     
120     bool anyRuleForType(const std::string& type) const;
121     bool anyRuleMatches(const std::string& type, const string_set& states) const;
122     void findRules(const std::string& type, const string_set& states, SymbolRuleVector& rules);
123     
124     SymbolInstance* addSymbolInstance(const osg::Vec2& proj, double heading, SymbolDef* def, SGPropertyNode* vars);
125     void addLine(osg::Vec2 a, osg::Vec2 b, const osg::Vec4& color);
126     osg::Vec2 projectBearingRange(double bearingDeg, double rangeNm) const;
127     osg::Vec2 projectGeod(const SGGeod& geod) const;
128     bool isProjectedClipped(const osg::Vec2& projected) const;
129     void updateFont();
130     
131     void addTestSymbol(const std::string& type, const std::string& states, const SGGeod& pos, double heading, SGPropertyNode* vars);
132     void addTestSymbols();
133   
134     std::string _texture_path;
135     unsigned int _textureSize;
136
137     float _scale;   // factor to convert nm to display units
138     float _view_heading;
139     
140     SGPropertyNode_ptr _Radar_controls;
141
142
143     
144     SGPropertyNode_ptr _font_node;
145     SGPropertyNode_ptr _ai_enabled_node;
146     SGPropertyNode_ptr _navRadio1Node;
147     SGPropertyNode_ptr _navRadio2Node;
148     SGPropertyNode_ptr _xCenterNode, _yCenterNode;
149     SGPropertyNode_ptr _viewHeadingNode;
150   
151     osg::ref_ptr<osg::Texture2D> _symbolTexture;
152     osg::ref_ptr<osg::Geode> _radarGeode;
153     osg::ref_ptr<osg::Geode> _textGeode;
154   
155     osg::Geometry *_geom;
156   
157     osg::DrawArrays* _symbolPrimSet;
158     osg::Vec2Array *_vertices;
159     osg::Vec2Array *_texCoords;
160     osg::Vec4Array* _quadColors;
161     
162     osg::Geometry* _lineGeometry;
163     osg::DrawArrays* _linePrimSet;
164     osg::Vec2Array* _lineVertices;
165     osg::Vec4Array* _lineColors;
166   
167   
168     osg::Matrixf _centerTrans;
169     osg::Matrixf _projectMat;
170     
171     osg::ref_ptr<osgText::Font> _font;
172     osg::Vec4 _font_color;
173     float _font_size;
174     float _font_spacing;
175
176     FGRouteMgr* _route;
177     SGGeod _pos;
178     double _rangeNm;
179     SGPropertyNode_ptr _rangeNode;
180     
181     SymbolDefVector _definitions;
182     SymbolRuleVector _rules;
183     FGNavRecord* _nav1Station;
184     FGNavRecord* _nav2Station;
185     std::vector<SymbolInstance*> _symbols;
186     std::set<FGPositioned*> _routeSources;
187     
188     bool _cachedItemsValid;
189     SGVec3d _cachedPos;
190     FGPositioned::List _itemsInRange;
191     SGPropertyNode_ptr _excessDataNode;
192     
193     class CacheListener;
194     std::auto_ptr<CacheListener> _cacheListener;
195     
196     class ForceUpdateListener;
197     std::auto_ptr<ForceUpdateListener> _forceUpdateListener;
198 };
199
200 #endif // _INST_ND_HXX