]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/NavDisplay.hxx
Make PLAN mode in Boeing NDs possible.
[flightgear.git] / src / Cockpit / 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     bool anyRuleForType(const std::string& type) const;
80     bool isPositionedShown(FGPositioned* pos);
81 protected:
82     std::string _name;
83     int _num;
84     double _time;
85     double _updateInterval;
86     bool _forceUpdate;
87     
88     SGPropertyNode_ptr _serviceable_node;
89     SGPropertyNode_ptr _Instrument;
90     SGPropertyNode_ptr _radar_mode_control_node;
91     SGPropertyNode_ptr _user_heading_node;
92     SGPropertyNode_ptr _testModeNode;
93     SGPropertyNode_ptr _userLatNode, _userLonNode, _userPositionEnable;
94     
95     FGODGauge *_odg;
96
97     // Convenience function for creating a property node with a
98     // default value
99     template<typename DefaultType>
100     SGPropertyNode *getInstrumentNode(const char *name, DefaultType value);
101
102 private:
103     friend class SymbolRule;
104     friend class SymbolDef;
105   
106     void addRule(SymbolRule*);
107   
108     void addSymbolsToScene();
109     void addSymbolToScene(SymbolInstance* sym);
110     void limitDisplayedSymbols();
111     
112     void findItems();
113     void isPositionedShownInner(FGPositioned* pos, SymbolRuleVector& rules);
114     void foundPositionedItem(FGPositioned* pos);
115     void computePositionedPropsAndHeading(FGPositioned* pos, SGPropertyNode* nd, double& heading);
116     void computePositionedState(FGPositioned* pos, string_set& states);
117     void processRoute();
118     void computeWayptPropsAndHeading(flightgear::Waypt* wpt, const SGGeod& pos, SGPropertyNode* nd, double& heading);
119     void processNavRadios();
120     FGNavRecord* processNavRadio(const SGPropertyNode_ptr& radio);
121     void processAI();
122     void computeAIStates(const SGPropertyNode* ai, string_set& states);
123     
124     void findRules(const std::string& type, const string_set& states, SymbolRuleVector& rules);
125     
126     SymbolInstance* addSymbolInstance(const osg::Vec2& proj, double heading, SymbolDef* def, SGPropertyNode* vars);
127     void addLine(osg::Vec2 a, osg::Vec2 b, const osg::Vec4& color);
128     osg::Vec2 projectBearingRange(double bearingDeg, double rangeNm) const;
129     osg::Vec2 projectGeod(const SGGeod& geod) const;
130     bool isProjectedClipped(const osg::Vec2& projected) const;
131     void updateFont();
132     
133     void addTestSymbol(const std::string& type, const std::string& states, const SGGeod& pos, double heading, SGPropertyNode* vars);
134     void addTestSymbols();
135   
136     std::string _texture_path;
137     unsigned int _textureSize;
138
139     float _scale;   // factor to convert nm to display units
140     float _view_heading;
141     
142     SGPropertyNode_ptr _Radar_controls;
143
144
145     
146     SGPropertyNode_ptr _font_node;
147     SGPropertyNode_ptr _ai_enabled_node;
148     SGPropertyNode_ptr _navRadio1Node;
149     SGPropertyNode_ptr _navRadio2Node;
150     SGPropertyNode_ptr _xCenterNode, _yCenterNode;
151     SGPropertyNode_ptr _viewHeadingNode;
152   
153     osg::ref_ptr<osg::Texture2D> _symbolTexture;
154     osg::ref_ptr<osg::Geode> _radarGeode;
155     osg::ref_ptr<osg::Geode> _textGeode;
156   
157     osg::Geometry *_geom;
158   
159     osg::DrawArrays* _symbolPrimSet;
160     osg::Vec2Array *_vertices;
161     osg::Vec2Array *_texCoords;
162     osg::Vec4Array* _quadColors;
163     
164     osg::Geometry* _lineGeometry;
165     osg::DrawArrays* _linePrimSet;
166     osg::Vec2Array* _lineVertices;
167     osg::Vec4Array* _lineColors;
168   
169   
170     osg::Matrixf _centerTrans;
171     osg::Matrixf _projectMat;
172     
173     osg::ref_ptr<osgText::Font> _font;
174     osg::Vec4 _font_color;
175     float _font_size;
176     float _font_spacing;
177
178     FGRouteMgr* _route;
179     SGGeod _pos;
180     double _rangeNm;
181     SGPropertyNode_ptr _rangeNode;
182     
183     SymbolDefVector _definitions;
184     SymbolRuleVector _rules;
185     FGNavRecord* _nav1Station;
186     FGNavRecord* _nav2Station;
187     std::vector<SymbolInstance*> _symbols;
188     std::set<FGPositioned*> _routeSources;
189     
190     bool _cachedItemsValid;
191     SGVec3d _cachedPos;
192     FGPositioned::List _itemsInRange;
193     SGPropertyNode_ptr _excessDataNode;
194     int _maxSymbols;
195   
196     class CacheListener;
197     std::auto_ptr<CacheListener> _cacheListener;
198     
199     class ForceUpdateListener;
200     std::auto_ptr<ForceUpdateListener> _forceUpdateListener;
201 };
202
203 #endif // _INST_ND_HXX