]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/wxradar.cxx
Fix a dumb bug in NavDisplay text-enable.
[flightgear.git] / src / Instrumentation / wxradar.cxx
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 //
8 // Copyright (C) 2005  Harald JOHNSEN
9 //
10 // This program is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU General Public License as
12 // published by the Free Software Foundation; either version 2 of the
13 // License, or (at your option) any later version.
14 //
15 // This program is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 // General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with this program; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
23 //
24 //
25
26 #ifdef HAVE_CONFIG_H
27 #  include "config.h"
28 #endif
29
30 #include <osg/Array>
31 #include <osg/Geometry>
32 #include <osg/Matrixf>
33 #include <osg/PrimitiveSet>
34 #include <osg/StateSet>
35 #include <osg/Version>
36 #include <osgDB/ReaderWriter>
37 #include <osgDB/WriteFile>
38
39 #include <simgear/constants.h>
40 #include <simgear/misc/sg_path.hxx>
41 #include <simgear/scene/model/model.hxx>
42 #include <simgear/structure/exception.hxx>
43 #include <simgear/misc/sg_path.hxx>
44 #include <simgear/math/sg_geodesy.hxx>
45
46 #include <sstream>
47 #include <iomanip>
48
49 using std::stringstream;
50 using std::endl;
51 using std::setprecision;
52 using std::fixed;
53 using std::setw;
54 using std::setfill;
55 using std::string;
56
57 #include <Main/fg_props.hxx>
58 #include <Main/globals.hxx>
59 #include <Cockpit/panel.hxx>
60
61 #include "instrument_mgr.hxx"
62 #include "od_gauge.hxx"
63 #include "wxradar.hxx"
64
65 #include <iostream>             // for cout, endl
66
67 using std::cout;
68 using std::endl;
69
70 static const float UNIT = 1.0f / 8.0f;  // 8 symbols in a row/column in the texture
71 static const char *DEFAULT_FONT = "typewriter.txf";
72
73 wxRadarBg::wxRadarBg(SGPropertyNode *node) :
74     _name(node->getStringValue("name", "radar")),
75     _num(node->getIntValue("number", 0)),
76     _time(0.0),
77     _interval(node->getDoubleValue("update-interval-sec", 1.0)),
78     _elapsed_time(0),
79     _persistance(0),
80     _odg(0),
81     _range_nm(0),
82     _scale(0),
83     _angle_offset(0),
84     _view_heading(0),
85     _x_offset(0),
86     _y_offset(0),
87     _radar_ref_rng(0),
88     _lat(0),
89     _lon(0),
90     _antenna_ht(node->getDoubleValue("antenna-ht-ft", 0.0)),
91     _resultTexture(0),
92     _wxEcho(0),
93     _font_size(0),
94     _font_spacing(0)
95 {
96     string branch;
97     branch = "/instrumentation/" + _name;
98     _Instrument = fgGetNode(branch.c_str(), _num, true);
99
100     const char *tacan_source = node->getStringValue("tacan-source", "/instrumentation/tacan");
101     _Tacan = fgGetNode(tacan_source, true);
102
103     _font_node = _Instrument->getNode("font", true);
104
105 #define INITFONT(p, val, type) if (!_font_node->hasValue(p)) _font_node->set##type##Value(p, val)
106     INITFONT("name", DEFAULT_FONT, String);
107     INITFONT("size", 8, Float);
108     INITFONT("line-spacing", 0.25, Float);
109     INITFONT("color/red", 0, Float);
110     INITFONT("color/green", 0.8, Float);
111     INITFONT("color/blue", 0, Float);
112     INITFONT("color/alpha", 1, Float);
113 #undef INITFONT
114
115     _font_node->addChangeListener(this, true);
116 }
117
118
119 wxRadarBg::~wxRadarBg ()
120 {
121     _font_node->removeChangeListener(this);
122     delete _odg;
123 }
124
125
126 void
127 wxRadarBg::init ()
128 {
129     _serviceable_node = _Instrument->getNode("serviceable", true);
130     _sceneryLoaded = fgGetNode("/sim/sceneryloaded", true);
131
132     // texture name to use in 2D and 3D instruments
133     _texture_path = _Instrument->getStringValue("radar-texture-path",
134         "Aircraft/Instruments/Textures/od_wxradar.rgb");
135     _resultTexture = FGTextureManager::createTexture(_texture_path.c_str(), false);
136
137     string path = _Instrument->getStringValue("echo-texture-path",
138         "Aircraft/Instruments/Textures/wxecho.rgb");
139     SGPath tpath = globals->resolve_aircraft_path(path);
140
141     // no mipmap or else alpha will mix with pixels on the border of shapes, ruining the effect
142     _wxEcho = SGLoadTexture2D(tpath, NULL, false, false);
143
144
145     _Instrument->setFloatValue("trk", 0.0);
146     _Instrument->setFloatValue("tilt", 0.0);
147     _Instrument->setStringValue("status", "");
148     // those properties are used by a radar instrument of a MFD
149     // input switch = OFF | TST | STBY | ON
150     // input mode = WX | WXA | MAP
151     // output status = STBY | TEST | WX | WXA | MAP | blank
152     // input lightning = true | false
153     // input TRK = +/- n degrees
154     // input TILT = +/- n degree
155     // input autotilt = true | false
156     // input range = n nm (20/40/80)
157     // input display-mode = arc | rose | map | plan
158
159     _odg = new FGODGauge;
160     _odg->setSize(512);
161
162     _ai_enabled_node = fgGetNode("/sim/ai/enabled", true);
163
164     _user_lat_node = fgGetNode("/position/latitude-deg", true);
165     _user_lon_node = fgGetNode("/position/longitude-deg", true);
166     _user_alt_node = fgGetNode("/position/altitude-ft", true);
167
168     _user_speed_east_fps_node   = fgGetNode("/velocities/speed-east-fps", true);
169     _user_speed_north_fps_node  = fgGetNode("/velocities/speed-north-fps", true);
170
171     _tacan_serviceable_node = _Tacan->getNode("serviceable", true);
172     _tacan_distance_node    = _Tacan->getNode("indicated-distance-nm", true);
173     _tacan_name_node        = _Tacan->getNode("name", true);
174     _tacan_bearing_node     = _Tacan->getNode("indicated-bearing-true-deg", true);
175     _tacan_in_range_node    = _Tacan->getNode("in-range", true);
176
177     _radar_mode_control_node = _Instrument->getNode("mode-control", true);
178     _radar_coverage_node     = _Instrument->getNode("limit-deg", true);
179     _radar_ref_rng_node      = _Instrument->getNode("reference-range-nm", true);
180     _radar_hdg_marker_node   = _Instrument->getNode("heading-marker", true);
181
182     SGPropertyNode *n = _Instrument->getNode("display-controls", true);
183     _radar_weather_node     = n->getNode("WX", true);
184     _radar_position_node    = n->getNode("pos", true);
185     _radar_data_node        = n->getNode("data", true);
186     _radar_symbol_node      = n->getNode("symbol", true);
187     _radar_centre_node      = n->getNode("centre", true);
188     _radar_rotate_node      = n->getNode("rotate", true);
189     _radar_tcas_node        = n->getNode("tcas", true);
190     _radar_absalt_node      = n->getNode("abs-altitude", true);
191
192     _radar_centre_node->setBoolValue(false);
193     if (!_radar_coverage_node->hasValue())
194         _radar_coverage_node->setFloatValue(120);
195     if (!_radar_ref_rng_node->hasValue())
196         _radar_ref_rng_node->setDoubleValue(35);
197     if (!_radar_hdg_marker_node->hasValue())
198         _radar_hdg_marker_node->setBoolValue(true);
199
200     _x_offset = 0;
201     _y_offset = 0;
202
203     // OSG geometry setup. The polygons for the radar returns will be
204     // stored in a single Geometry. The geometry will have several
205     // primitive sets so we can have different kinds of polys and
206     // choose a different overall color for each set.
207     _radarGeode = new osg::Geode;
208     osg::StateSet *stateSet = _radarGeode->getOrCreateStateSet();
209     stateSet->setTextureAttributeAndModes(0, _wxEcho.get());
210     _geom = new osg::Geometry;
211     _geom->setUseDisplayList(false);
212     // Initially allocate space for 128 quads
213     _vertices = new osg::Vec2Array;
214     _vertices->setDataVariance(osg::Object::DYNAMIC);
215     _vertices->reserve(128 * 4);
216     _geom->setVertexArray(_vertices);
217     _texCoords = new osg::Vec2Array;
218     _texCoords->setDataVariance(osg::Object::DYNAMIC);
219     _texCoords->reserve(128 * 4);
220     _geom->setTexCoordArray(0, _texCoords);
221     osg::Vec3Array *colors = new osg::Vec3Array;
222     colors->push_back(osg::Vec3(1.0f, 1.0f, 1.0f)); // color of echos
223     colors->push_back(osg::Vec3(1.0f, 0.0f, 0.0f)); // arc mask
224     colors->push_back(osg::Vec3(0.0f, 0.0f, 0.0f)); // rest of mask
225     _geom->setColorBinding(osg::Geometry::BIND_PER_PRIMITIVE_SET);
226     _geom->setColorArray(colors);
227     osg::PrimitiveSet *pset = new osg::DrawArrays(osg::PrimitiveSet::QUADS);
228     pset->setDataVariance(osg::Object::DYNAMIC);
229     _geom->addPrimitiveSet(pset);
230     pset = new osg::DrawArrays(osg::PrimitiveSet::QUADS);
231     pset->setDataVariance(osg::Object::DYNAMIC);
232     _geom->addPrimitiveSet(pset);
233     pset = new osg::DrawArrays(osg::PrimitiveSet::TRIANGLES);
234     pset->setDataVariance(osg::Object::DYNAMIC);
235     _geom->addPrimitiveSet(pset);
236     _geom->setInitialBound(osg::BoundingBox(osg::Vec3f(-256.0f, -256.0f, 0.0f),
237         osg::Vec3f(256.0f, 256.0f, 0.0f)));
238     _radarGeode->addDrawable(_geom);
239     _odg->allocRT();
240     // Texture in the 2D panel system
241     FGTextureManager::addTexture(_texture_path.c_str(), _odg->getTexture());
242
243     _textGeode = new osg::Geode;
244
245     osg::Camera *camera = _odg->getCamera();
246     camera->addChild(_radarGeode.get());
247     camera->addChild(_textGeode.get());
248
249     updateFont();
250 }
251
252
253 // Local coordinates for each echo
254 const osg::Vec3f echoCoords[4] = {
255     osg::Vec3f(-.7f, -.7f, 0.0f), osg::Vec3f(.7f, -.7f, 0.0f),
256     osg::Vec3f(.7f, .7f, 0.0f), osg::Vec3f(-.7f, .7f, 0.0f)
257 };
258
259
260 const osg::Vec2f echoTexCoords[4] = {
261     osg::Vec2f(0.0f, 0.0f), osg::Vec2f(UNIT, 0.0f),
262     osg::Vec2f(UNIT, UNIT), osg::Vec2f(0.0f, UNIT)
263 };
264
265
266 // helper
267 static void
268 addQuad(osg::Vec2Array *vertices, osg::Vec2Array *texCoords,
269         const osg::Matrixf& transform, const osg::Vec2f& texBase)
270 {
271     for (int i = 0; i < 4; i++) {
272         const osg::Vec3f coords = transform.preMult(echoCoords[i]);
273         texCoords->push_back(texBase + echoTexCoords[i]);
274         vertices->push_back(osg::Vec2f(coords.x(), coords.y()));
275     }
276 }
277
278
279 // Rotate by a heading value
280 static inline
281 osg::Matrixf wxRotate(float angle)
282 {
283     return osg::Matrixf::rotate(angle, 0.0f, 0.0f, -1.0f);
284 }
285
286
287 void
288 wxRadarBg::update (double delta_time_sec)
289 {
290     if (!_sceneryLoaded->getBoolValue())
291         return;
292
293     if (!_odg || !_serviceable_node->getBoolValue()) {
294         _Instrument->setStringValue("status", "");
295         return;
296     }
297
298     _time += delta_time_sec;
299     if (_time < _interval)
300         return;
301
302     _time = 0.0;
303
304     string mode = _Instrument->getStringValue("display-mode", "arc");
305     if (mode == "map") {
306         if (_display_mode != MAP) {
307             _display_mode = MAP;
308             center_map();
309         }
310     } else if (mode == "plan") {
311         _display_mode = PLAN;}
312     else if (mode == "bscan") {
313         _display_mode = BSCAN;
314     } else {
315         _display_mode = ARC;
316     }
317
318     string switchKnob = _Instrument->getStringValue("switch", "on");
319     if (switchKnob == "off") {
320         _Instrument->setStringValue("status", "");
321     } else if (switchKnob == "stby") {
322         _Instrument->setStringValue("status", "STBY");
323     } else if (switchKnob == "tst") {
324         _Instrument->setStringValue("status", "TST");
325         // find something interesting to do...
326     } else {
327         float r = _Instrument->getFloatValue("range", 40.0);
328         if (r != _range_nm) {
329             center_map();
330             _range_nm = r;
331         }
332
333         _radar_ref_rng = _radar_ref_rng_node->getDoubleValue();
334         _view_heading = fgGetDouble("/orientation/heading-deg") * SG_DEGREES_TO_RADIANS;
335         _centerTrans.makeTranslate(0.0f, 0.0f, 0.0f);
336
337         _scale = 200.0 / _range_nm;
338         _angle_offset = 0;
339
340         if (_display_mode == ARC) {
341             _scale = 2*200.0f / _range_nm;
342             _angle_offset = -_view_heading;
343             _centerTrans.makeTranslate(0.0f, -200.0f, 0.0f);
344
345         } else if (_display_mode == MAP) {
346             apply_map_offset();
347
348             bool centre = _radar_centre_node->getBoolValue();
349             if (centre) {
350                 center_map();
351                 _radar_centre_node->setBoolValue(false);
352             }
353
354             //SG_LOG(SG_INSTR, SG_DEBUG, "Radar: displacement "
355             //        << _x_offset <<", "<<_y_offset
356             //        << " user_speed_east_fps * SG_FPS_TO_KT "
357             //        << user_speed_east_fps * SG_FPS_TO_KT
358             //        << " user_speed_north_fps * SG_FPS_TO_KT "
359             //        << user_speed_north_fps * SG_FPS_TO_KT
360             //        << " dt " << delta_time_sec);
361
362             _centerTrans.makeTranslate(_x_offset, _y_offset, 0.0f);
363
364         } else if (_display_mode == PLAN) {
365             if (_radar_rotate_node->getBoolValue()) {
366                 _angle_offset = -_view_heading;
367             }
368         } else if (_display_mode == BSCAN) {
369             _angle_offset = -_view_heading;
370         } else {
371             // rose
372         }
373
374         _vertices->clear();
375         _texCoords->clear();
376         _textGeode->removeDrawables(0, _textGeode->getNumDrawables());
377
378 #if 0
379         //TODO FIXME Mask below (only used for ARC mode) isn't properly aligned, i.e.
380         // it assumes the a/c position at the center of the display - though it's somewhere at
381         // bottom part for ARC mode.
382         // The mask hadn't worked at all for a while (probably since the OSG port) due to
383         // another bug (which is fixed now). Now, the mask is disabled completely until s.o.
384         // adapted the coordinates below. And the mask is only really useful to limit displayed
385         // weather blobs (not support yet).
386         // Aircraft echos are already limited properly through wxradar's "limit-deg" property.
387         {
388             osg::DrawArrays *maskPSet
389                 = static_cast<osg::DrawArrays*>(_geom->getPrimitiveSet(1));
390             osg::DrawArrays *trimaskPSet
391                 = static_cast<osg::DrawArrays*>(_geom->getPrimitiveSet(2));
392
393             if (_display_mode == ARC) {
394                 // erase what is out of sight of antenna
395                 /*
396                 |\     /|
397                 | \   / |
398                 |  \ /  |
399                 ---------
400                 |       |
401                 |       |
402                 ---------
403                 */
404                 float xOffset = 256.0f;
405                 float yOffset = 200.0f;
406
407                 int firstQuadVert = _vertices->size();
408                 _texCoords->push_back(osg::Vec2f(0.5f, 0.25f));
409                 _vertices->push_back(osg::Vec2f(-xOffset, 0.0 + yOffset));
410                 _texCoords->push_back(osg::Vec2f(1.0f, 0.25f));
411                 _vertices->push_back(osg::Vec2f(xOffset, 0.0 + yOffset));
412                 _texCoords->push_back(osg::Vec2f(1.0f, 0.5f));
413                 _vertices->push_back(osg::Vec2f(xOffset, 256.0 + yOffset));
414                 _texCoords->push_back(osg::Vec2f(0.5f, 0.5f));
415                 _vertices->push_back(osg::Vec2f(-xOffset, 256.0 + yOffset));
416                 maskPSet->set(osg::PrimitiveSet::QUADS, firstQuadVert, 4);
417                 firstQuadVert += 4;
418
419                 // The triangles aren't supposed to be textured, but there's
420                 // no need to set up a different Geometry, switch modes,
421                 // etc. I happen to know that there's a white pixel in the
422                 // texture at 1.0, 0.0 :)
423                 float centerY = tan(30 * SG_DEGREES_TO_RADIANS);
424                 _vertices->push_back(osg::Vec2f(0.0, 0.0));
425                 _vertices->push_back(osg::Vec2f(-256.0, 0.0));
426                 _vertices->push_back(osg::Vec2f(-256.0, 256.0 * centerY));
427
428                 _vertices->push_back(osg::Vec2f(0.0, 0.0));
429                 _vertices->push_back(osg::Vec2f(256.0, 0.0));
430                 _vertices->push_back(osg::Vec2f(256.0, 256.0 * centerY));
431
432                 _vertices->push_back(osg::Vec2f(-256, 0.0));
433                 _vertices->push_back(osg::Vec2f(256.0, 0.0));
434                 _vertices->push_back(osg::Vec2f(-256.0, -256.0));
435
436                 _vertices->push_back(osg::Vec2f(256, 0.0));
437                 _vertices->push_back(osg::Vec2f(256.0, -256.0));
438                 _vertices->push_back(osg::Vec2f(-256.0, -256.0));
439
440                 const osg::Vec2f whiteSpot(1.0f, 0.0f);
441                 for (int i = 0; i < 3 * 4; i++)
442                     _texCoords->push_back(whiteSpot);
443
444                 trimaskPSet->set(osg::PrimitiveSet::TRIANGLES, firstQuadVert, 3 * 4);
445
446             } else
447             {
448                 maskPSet->set(osg::PrimitiveSet::QUADS, 0, 0);
449                 trimaskPSet->set(osg::PrimitiveSet::TRIANGLES, 0, 0);
450             }
451
452             maskPSet->dirty();
453             trimaskPSet->dirty();
454         }
455 #endif
456
457         // remember index of next vertex
458         int vIndex = _vertices->size();
459
460         update_weather();
461
462         osg::DrawArrays *quadPSet
463             = static_cast<osg::DrawArrays*>(_geom->getPrimitiveSet(0));
464
465         update_aircraft();
466         update_tacan();
467         update_heading_marker();
468
469         // draw all new vertices are quads
470         quadPSet->set(osg::PrimitiveSet::QUADS, vIndex, _vertices->size()-vIndex);
471         quadPSet->dirty();
472     }
473 }
474
475
476 void
477 wxRadarBg::update_weather()
478 {
479     string modeButton = _Instrument->getStringValue("mode", "WX");
480 // FIXME: implementation of radar echoes missing
481 //    _radarEchoBuffer = *sgEnviro.get_radar_echo();
482
483     // pretend we have a scan angle bigger then the FOV
484     // TODO:check real fov, enlarge if < nn, and do clipping if > mm
485 //    const float fovFactor = 1.45f;
486     _Instrument->setStringValue("status", modeButton.c_str());
487
488 // FIXME: implementation of radar echoes missing
489 #if 0
490     list_of_SGWxRadarEcho *radarEcho = &_radarEchoBuffer;
491     list_of_SGWxRadarEcho::iterator iradarEcho, end = radarEcho->end();
492     const float LWClevel[] = { 0.1f, 0.5f, 2.1f };
493
494     // draw the cloud radar echo
495     bool drawClouds = _radar_weather_node->getBoolValue();
496     if (drawClouds) {
497
498         // we do that in 3 passes, one for each color level
499         // this is to 'merge' same colors together
500         for (int level = 0; level <= 2; level++) {
501             float col = level * UNIT;
502
503             for (iradarEcho = radarEcho->begin(); iradarEcho != end; ++iradarEcho) {
504                 int cloudId = iradarEcho->cloudId;
505                 bool upgrade = (cloudId >> 5) & 1;
506                 float lwc = iradarEcho->LWC + (upgrade ? 1.0f : 0.0f);
507
508                 // skip ns
509                 if (iradarEcho->LWC >= 0.5 && iradarEcho->LWC <= 0.6)
510                     continue;
511
512                 if (iradarEcho->lightning || lwc < LWClevel[level])
513                     continue;
514
515                 float radius = sqrt(iradarEcho->dist) * SG_METER_TO_NM * _scale;
516                 float size = iradarEcho->radius * 2.0 * SG_METER_TO_NM * _scale;
517
518                 if (radius - size > 180)
519                     continue;
520
521                 float angle = (iradarEcho->heading - _angle_offset) //* fovFactor
522                     + 0.5 * SG_PI;
523
524                 // Rotate echo into position, and rotate echo to have
525                 // a constant orientation towards the
526                 // airplane. Compass headings increase in clockwise
527                 // direction, while graphics rotations follow
528                 // right-hand (counter-clockwise) rule.
529                 const osg::Vec2f texBase(col, (UNIT * (float) (4 + (cloudId & 3))));
530
531                 osg::Matrixf m(osg::Matrixf::scale(size, size, 1.0f)
532                     * osg::Matrixf::translate(0.0f, radius, 0.0f)
533                     * wxRotate(angle) * _centerTrans);
534                 addQuad(_vertices, _texCoords, m, texBase);
535
536                 //SG_LOG(SG_INSTR, SG_DEBUG, "Radar: drawing clouds"
537                 //        << " ID=" << cloudId
538                 //        << " x=" << x
539                 //        << " y="<< y
540                 //        << " radius=" << radius
541                 //        << " view_heading=" << _view_heading * SG_RADIANS_TO_DEGREES
542                 //        << " heading=" << iradarEcho->heading * SG_RADIANS_TO_DEGREES
543                 //        << " angle=" << angle * SG_RADIANS_TO_DEGREES);
544             }
545         }
546     }
547
548     // draw lightning echos
549     bool drawLightning = _Instrument->getBoolValue("lightning", true);
550     if (drawLightning) {
551         const osg::Vec2f texBase(3 * UNIT, 4 * UNIT);
552
553         for (iradarEcho = radarEcho->begin(); iradarEcho != end; ++iradarEcho) {
554             if (!iradarEcho->lightning)
555                 continue;
556
557             float size = UNIT * 0.5f;
558             float radius = iradarEcho->dist * _scale;
559             float angle = iradarEcho->heading * SG_DEGREES_TO_RADIANS
560                 - _angle_offset;
561
562             osg::Matrixf m(osg::Matrixf::scale(size, size, 1.0f)
563                 * wxRotate(-angle)
564                 * osg::Matrixf::translate(0.0f, radius, 0.0f)
565                 * wxRotate(angle) * _centerTrans);
566             addQuad(_vertices, _texCoords, m, texBase);
567         }
568     }
569 #endif
570 }
571
572
573 void
574 wxRadarBg::update_data(const SGPropertyNode *ac, double altitude, double heading,
575                        double radius, double bearing, bool selected)
576 {
577     osgText::Text *callsign = new osgText::Text;
578     callsign->setFont(_font.get());
579     callsign->setFontResolution(12, 12);
580     callsign->setCharacterSize(_font_size);
581     callsign->setColor(selected ? osg::Vec4(1, 1, 1, 1) : _font_color);
582     osg::Matrixf m(wxRotate(-bearing)
583         * osg::Matrixf::translate(0.0f, radius, 0.0f)
584         * wxRotate(bearing) * _centerTrans);
585
586     osg::Vec3 pos = m.preMult(osg::Vec3(16, 16, 0));
587     // cast to int's, otherwise text comes out ugly
588     callsign->setPosition(osg::Vec3((int)pos.x(), (int)pos.y(), 0));
589     callsign->setAlignment(osgText::Text::LEFT_BOTTOM_BASE_LINE);
590     callsign->setLineSpacing(_font_spacing);
591
592     const char *identity = ac->getStringValue("transponder-id");
593     if (!identity[0])
594         identity = ac->getStringValue("callsign");
595
596     stringstream text;
597     text << identity << endl
598         << setprecision(0) << fixed
599         << setw(3) << setfill('0') << heading * SG_RADIANS_TO_DEGREES << "\xB0 "
600         << setw(0) << altitude << "ft" << endl
601         << ac->getDoubleValue("velocities/true-airspeed-kt") << "kts";
602
603     callsign->setText(text.str());
604     _textGeode->addDrawable(callsign);
605 }
606
607
608 void
609 wxRadarBg::update_aircraft()
610 {
611     double diff;
612     double age_factor = 1.0;
613     double test_rng;
614     double test_brg;
615     double range;
616     double bearing;
617     float echo_radius;
618     double angle;
619
620     if (!ground_echoes.empty()){
621         ground_echoes_iterator = ground_echoes.begin();
622
623         while(ground_echoes_iterator != ground_echoes.end()) {
624             diff = _elapsed_time - (*ground_echoes_iterator)->elapsed_time;
625
626             if( diff > _persistance) {
627                 ground_echoes.erase(ground_echoes_iterator++);
628             } else {
629 //                double test_brg = (*ground_echoes_iterator)->bearing;
630 //                double bearing = test_brg * SG_DEGREES_TO_RADIANS;
631 //                float angle = calcRelBearing(bearing, _view_heading);
632                 double bumpinessFactor  = (*ground_echoes_iterator)->bumpiness;
633                 float heading = fgGetDouble("/orientation/heading-deg");
634                 if ( _display_mode == BSCAN ){
635                     test_rng = (*ground_echoes_iterator)->elevation * 6;
636                     test_brg = (*ground_echoes_iterator)->bearing;
637                     angle = calcRelBearingDeg(test_brg, heading) * 6;
638                     range = sqrt(test_rng * test_rng + angle * angle);
639                     bearing = atan2(angle, test_rng);
640                     //cout << "angle " << angle <<" bearing "
641                     //    << bearing / SG_DEGREES_TO_RADIANS <<  endl;
642                     echo_radius = (0.1 + (1.9 * bumpinessFactor)) * 240 * age_factor;
643                 } else {
644                     test_rng = (*ground_echoes_iterator)->range;
645                     range = test_rng * SG_METER_TO_NM;
646                     test_brg = (*ground_echoes_iterator)->bearing;
647                     bearing = test_brg * SG_DEGREES_TO_RADIANS;
648                     echo_radius = (0.1 + (1.9 * bumpinessFactor)) * 120 * age_factor;
649                     bearing += _angle_offset;
650                 }
651
652                 float radius = range * _scale;
653                 //double heading = 90 * SG_DEGREES_TO_RADIANS;
654                 //heading += _angle_offset;
655
656                 age_factor = 1;
657
658                 if (diff != 0)
659                     age_factor = 1 - (0.5 * diff/_persistance);
660
661                 float size = echo_radius * UNIT;
662
663                 const osg::Vec2f texBase(3 * UNIT, 3 * UNIT);
664                 osg::Matrixf m(osg::Matrixf::scale(size, size, 1.0f)
665                     * osg::Matrixf::translate(0.0f, radius, 0.0f)
666                     * wxRotate(bearing) * _centerTrans);
667                 addQuad(_vertices, _texCoords, m, texBase);
668
669                 ++ground_echoes_iterator;
670
671                 //cout << "test bearing " << test_brg 
672                 //<< " test_rng " << test_rng * SG_METER_TO_NM
673                 //<< " persistance " << _persistance
674                 //<< endl;
675             }
676
677         }
678
679     }
680     if (!_ai_enabled_node->getBoolValue())
681         return;
682
683     bool draw_tcas     = _radar_tcas_node->getBoolValue();
684     bool draw_absolute = _radar_absalt_node->getBoolValue();
685     bool draw_echoes   = _radar_position_node->getBoolValue();
686     bool draw_symbols  = _radar_symbol_node->getBoolValue();
687     bool draw_data     = _radar_data_node->getBoolValue();
688     if (!draw_echoes && !draw_symbols && !draw_data)
689         return;
690
691     double user_lat = _user_lat_node->getDoubleValue();
692     double user_lon = _user_lon_node->getDoubleValue();
693     double user_alt = _user_alt_node->getDoubleValue();
694
695     float limit = _radar_coverage_node->getFloatValue();
696     if (limit > 180)
697         limit = 180;
698     else if (limit < 0)
699         limit = 0;
700     limit *= SG_DEGREES_TO_RADIANS;
701
702     int selected_id = fgGetInt("/instrumentation/radar/selected-id", -1);
703
704     const SGPropertyNode *selected_ac = 0;
705     const SGPropertyNode *ai = fgGetNode("/ai/models", true);
706
707     for (int i = ai->nChildren() - 1; i >= -1; i--) {
708         const SGPropertyNode *model;
709
710         if (i < 0) { // last iteration: selected model
711             model = selected_ac;
712         } else {
713             model = ai->getChild(i);
714             if (!model->nChildren())
715                 continue;
716             if ((model->getIntValue("id") == selected_id)&&
717                 (!draw_tcas)) {
718                 selected_ac = model;  // save selected model for last iteration
719                 continue;
720             }
721         }
722         if (!model)
723             continue;
724
725         double echo_radius, sigma;
726         const string name = model->getName();
727
728         //cout << "name "<<name << endl;
729         if (name == "aircraft" || name == "tanker")
730             echo_radius = 1, sigma = 1;
731         else if (name == "multiplayer" || name == "wingman" || name == "static")
732             echo_radius = 1.5, sigma = 1;
733         else if (name == "ship" || name == "carrier" || name == "escort" ||name == "storm")
734             echo_radius = 1.5, sigma = 100;
735         else if (name == "thermal")
736             echo_radius = 2, sigma = 100;
737         else if (name == "rocket")
738             echo_radius = 0.1, sigma = 0.1;
739         else if (name == "ballistic")
740             echo_radius = 0.001, sigma = 0.001;
741         else
742             continue;
743
744         double lat = model->getDoubleValue("position/latitude-deg");
745         double lon = model->getDoubleValue("position/longitude-deg");
746         double alt = model->getDoubleValue("position/altitude-ft");
747         double heading = model->getDoubleValue("orientation/true-heading-deg");
748
749         double range, bearing;
750         calcRangeBearing(user_lat, user_lon, lat, lon, range, bearing);
751         //cout << _antenna_ht << _interval<< endl;
752         bool isVisible = withinRadarHorizon(user_alt, alt, range);
753
754         if (!isVisible)
755             continue;
756
757         if (!inRadarRange(sigma, range))
758             continue;
759
760         bearing *= SG_DEGREES_TO_RADIANS;
761         heading *= SG_DEGREES_TO_RADIANS;
762
763         float radius = range * _scale;
764         float angle = calcRelBearing(bearing, _view_heading);
765
766         if (angle > limit || angle < -limit)
767             continue;
768
769         bearing += _angle_offset;
770         heading += _angle_offset;
771
772         bool is_tcas_contact = false;
773         if (draw_tcas)
774         {
775             is_tcas_contact = update_tcas(model,range,user_alt,alt,bearing,radius,draw_absolute);
776         }
777
778         // pos mode
779         if (draw_echoes && (!is_tcas_contact)) {
780             float size = echo_radius * 120 * UNIT;
781
782             const osg::Vec2f texBase(3 * UNIT, 3 * UNIT);
783             osg::Matrixf m(osg::Matrixf::scale(size, size, 1.0f)
784                 * osg::Matrixf::translate(0.0f, radius, 0.0f)
785                 * wxRotate(bearing) * _centerTrans);
786             addQuad(_vertices, _texCoords, m, texBase);
787         }
788
789         // data mode
790         if (draw_symbols && (!draw_tcas)) {
791             const osg::Vec2f texBase(0, 3 * UNIT);
792             float size = 600 * UNIT;
793             osg::Matrixf m(osg::Matrixf::scale(size, size, 1.0f)
794                 * wxRotate(heading - bearing)
795                 * osg::Matrixf::translate(0.0f, radius, 0.0f)
796                 * wxRotate(bearing) * _centerTrans);
797             addQuad(_vertices, _texCoords, m, texBase);
798         }
799
800         if ((draw_data || i < 0)&&  // selected one (i == -1) is always drawn
801             ((!draw_tcas)||(is_tcas_contact)||(draw_echoes)))
802             update_data(model, alt, heading, radius, bearing, i < 0);
803     }
804 }
805
806 /** Update TCAS display.
807  * Return true when processed as TCAS contact, false otherwise. */
808 bool
809 wxRadarBg::update_tcas(const SGPropertyNode *model,double range,double user_alt,double alt,
810                        double bearing,double radius,bool absMode)
811 {
812     int threatLevel=0;
813     {
814         // update TCAS symbol
815         osg::Vec2f texBase;
816         threatLevel = model->getIntValue("tcas/threat-level",-1);
817         if (threatLevel == -1)
818         {
819             // no TCAS information (i.e. no transponder) => not visible to TCAS
820             return false;
821         }
822         int row = 7 - threatLevel;
823         int col = 4;
824         double vspeed = model->getDoubleValue("velocities/vertical-speed-fps");
825         if (vspeed < -3.0) // descending
826             col+=1;
827         else
828         if (vspeed > 3.0) // climbing
829             col+=2;
830         texBase = osg::Vec2f(col*UNIT,row * UNIT);
831         float size = 200 * UNIT;
832             osg::Matrixf m(osg::Matrixf::scale(size, size, 1.0f)
833                 * wxRotate(-bearing)
834                 * osg::Matrixf::translate(0.0f, radius, 0.0f)
835                 * wxRotate(bearing) * _centerTrans);
836             addQuad(_vertices, _texCoords, m, texBase);
837     }
838
839     {
840         // update TCAS data
841         osgText::Text *altStr = new osgText::Text;
842         altStr->setFont(_font.get());
843         altStr->setFontResolution(12, 12);
844         altStr->setCharacterSize(_font_size);
845         altStr->setColor(_tcas_colors[threatLevel]);
846         osg::Matrixf m(wxRotate(-bearing)
847             * osg::Matrixf::translate(0.0f, radius, 0.0f)
848             * wxRotate(bearing) * _centerTrans);
849     
850         osg::Vec3 pos = m.preMult(osg::Vec3(16, 16, 0));
851         // cast to int's, otherwise text comes out ugly
852         altStr->setLineSpacing(_font_spacing);
853     
854         stringstream text;
855         altStr->setAlignment(osgText::Text::LEFT_CENTER);
856         int altDif = (alt-user_alt+50)/100;
857         char sign = 0;
858         int dy=0;
859         if (altDif>=0)
860         {
861             sign='+';
862             dy=2;
863         }
864         else
865         if (altDif<0)
866         {
867             sign='-';
868             altDif = -altDif;
869             dy=-30;
870         }
871         altStr->setPosition(osg::Vec3((int)pos.x()-30, (int)pos.y()+dy, 0));
872         if (absMode)
873         {
874             // absolute altitude display
875             text << setprecision(0) << fixed
876                  << setw(3) << setfill('0') << alt/100 << endl;
877         }
878         else // relative altitude display
879         if (sign)
880         {
881             text << sign
882                  << setprecision(0) << fixed
883                  << setw(2) << setfill('0') << altDif << endl;
884         }
885     
886         altStr->setText(text.str());
887         _textGeode->addDrawable(altStr);
888     }
889
890     return true;
891 }
892
893 void
894 wxRadarBg::update_tacan()
895 {
896     // draw TACAN symbol
897     int mode = _radar_mode_control_node->getIntValue();
898     bool inRange = _tacan_in_range_node->getBoolValue();
899
900     if (mode != 1 || !inRange)
901         return;
902
903     float size = 600 * UNIT;
904     float radius = _tacan_distance_node->getFloatValue() * _scale;
905     float angle = _tacan_bearing_node->getFloatValue() * SG_DEGREES_TO_RADIANS
906         + _angle_offset;
907
908     const osg::Vec2f texBase(1 * UNIT, 3 * UNIT);
909     osg::Matrixf m(osg::Matrixf::scale(size, size, 1.0f)
910         * wxRotate(-angle)
911         * osg::Matrixf::translate(0.0f, radius, 0.0f)
912         * wxRotate(angle) * _centerTrans);
913     addQuad(_vertices, _texCoords, m, texBase);
914
915     //SG_LOG(SG_INSTR, SG_DEBUG, "Radar:     drawing TACAN"
916     //        << " dist=" << radius
917     //        << " view_heading=" << _view_heading * SG_RADIANS_TO_DEGREES
918     //        << " bearing=" << angle * SG_RADIANS_TO_DEGREES
919     //        << " x=" << x << " y="<< y
920     //        << " size=" << size);
921 }
922
923
924 void
925 wxRadarBg::update_heading_marker()
926 {
927     if (!_radar_hdg_marker_node->getBoolValue())
928         return;
929
930     const osg::Vec2f texBase(2 * UNIT, 3 * UNIT);
931     float size = 600 * UNIT;
932     osg::Matrixf m(osg::Matrixf::scale(size, size, 1.0f)
933         * wxRotate(_view_heading + _angle_offset));
934
935     m *= _centerTrans;
936     addQuad(_vertices, _texCoords, m, texBase);
937
938     //SG_LOG(SG_INSTR, SG_DEBUG, "Radar:   drawing heading marker"
939     //        << " x,y " << x <<","<< y
940     //        << " dist" << dist
941     //        << " view_heading" << _view_heading * SG_RADIANS_TO_DEGREES
942     //        << " heading " << iradarEcho->heading * SG_RADIANS_TO_DEGREES
943     //        << " angle " << angle * SG_RADIANS_TO_DEGREES);
944 }
945
946
947 void
948 wxRadarBg::center_map()
949 {
950     _lat = _user_lat_node->getDoubleValue();
951     _lon = _user_lon_node->getDoubleValue();
952     _x_offset = _y_offset = 0;
953 }
954
955
956 void
957 wxRadarBg::apply_map_offset()
958 {
959     double lat = _user_lat_node->getDoubleValue();
960     double lon = _user_lon_node->getDoubleValue();
961     double bearing, distance, az2;
962     geo_inverse_wgs_84(_lat, _lon, lat, lon, &bearing, &az2, &distance);
963     distance *= SG_METER_TO_NM * _scale;
964     bearing *= SG_DEGREES_TO_RADIANS;
965     _x_offset += sin(bearing) * distance;
966     _y_offset += cos(bearing) * distance;
967     _lat = lat;
968     _lon = lon;
969 }
970
971
972 bool
973 wxRadarBg::withinRadarHorizon(double user_alt, double alt, double range_nm)
974 {
975     // Radar Horizon  = 1.23(ht^1/2 + hr^1/2),
976     //don't allow negative altitudes (an approximation - yes altitudes can be negative)
977     // Allow antenna ht to be set, but only on ground
978     _antenna_ht = _Instrument->getDoubleValue("antenna-ht-ft");
979
980     if (user_alt <= 0)
981         user_alt = _antenna_ht;
982
983     if (alt <= 0)
984         alt = 0; // to allow some vertical extent of target
985
986     double radarhorizon = 1.23 * (sqrt(alt) + sqrt(user_alt));
987 //    SG_LOG(SG_INSTR, SG_ALERT, "Radar: radar horizon " << radarhorizon);
988     return radarhorizon >= range_nm;
989 }
990
991
992 bool
993 wxRadarBg::inRadarRange(double sigma, double range_nm)
994 {
995     //The Radar Equation:
996     //
997     // MaxRange^4 = (TxPower * AntGain^2 * lambda^2 * sigma)/((constant) * MDS)
998     //
999     // Where (constant) = (4*pi)3 and MDS is the Minimum Detectable Signal power.
1000     //
1001     // For a given radar we can assume that the only variable is sigma,
1002     // the target radar cross section.
1003     //
1004     // Here, we will use a normalised rcs (sigma) for a standard taget and assume that this
1005     // will provide a maximum range of 35nm;
1006     //
1007     // TODO - make the maximum range adjustable at runtime
1008
1009     double constant = _radar_ref_rng;
1010
1011     if (constant <= 0)
1012         constant = 35;
1013
1014     double maxrange = constant * pow(sigma, 0.25);
1015     //SG_LOG(SG_INSTR, SG_DEBUG, "Radar: max range " << maxrange);
1016     return maxrange >= range_nm;
1017 }
1018
1019
1020 void
1021 wxRadarBg::calcRangeBearing(double lat, double lon, double lat2, double lon2,
1022                             double &range, double &bearing) const
1023 {
1024     // calculate the bearing and range of the second pos from the first
1025     double az2, distance;
1026     geo_inverse_wgs_84(lat, lon, lat2, lon2, &bearing, &az2, &distance);
1027     range = distance *= SG_METER_TO_NM;
1028 }
1029
1030
1031 float
1032 wxRadarBg::calcRelBearing(float bearing, float heading)
1033 {
1034     float angle = bearing - heading;
1035
1036     if (angle >= SG_PI)
1037         angle -= 2.0 * SG_PI;
1038
1039     if (angle < -SG_PI)
1040         angle += 2.0 * SG_PI;
1041
1042     return angle;
1043 }
1044
1045 float
1046 wxRadarBg::calcRelBearingDeg(float bearing, float heading)
1047 {
1048     float angle = bearing - heading;
1049
1050     if (angle >= 180)
1051         return angle -= 360;
1052
1053     if (angle < -180)
1054         return angle += 360;
1055
1056     return angle;
1057 }
1058
1059
1060 void
1061 wxRadarBg::updateFont()
1062 {
1063     float red = _font_node->getFloatValue("color/red");
1064     float green = _font_node->getFloatValue("color/green");
1065     float blue = _font_node->getFloatValue("color/blue");
1066     float alpha = _font_node->getFloatValue("color/alpha");
1067     _font_color.set(red, green, blue, alpha);
1068
1069     _font_size = _font_node->getFloatValue("size");
1070     _font_spacing = _font_size * _font_node->getFloatValue("line-spacing");
1071     string path = _font_node->getStringValue("name", DEFAULT_FONT);
1072
1073     SGPath tpath;
1074     if (path[0] != '/') {
1075         tpath = globals->get_fg_root();
1076         tpath.append("Fonts");
1077         tpath.append(path);
1078     } else {
1079         tpath = path;
1080     }
1081
1082 #if (FG_OSG_VERSION >= 21000)
1083     osg::ref_ptr<osgDB::ReaderWriter::Options> fontOptions = new osgDB::ReaderWriter::Options("monochrome");
1084     osg::ref_ptr<osgText::Font> font = osgText::readFontFile(tpath.c_str(), fontOptions.get());
1085 #else
1086     osg::ref_ptr<osgText::Font> font = osgText::readFontFile(tpath.c_str());
1087 #endif
1088
1089     if (font != 0) {
1090         _font = font;
1091         _font->setMinFilterHint(osg::Texture::NEAREST);
1092         _font->setMagFilterHint(osg::Texture::NEAREST);
1093         _font->setGlyphImageMargin(0);
1094         _font->setGlyphImageMarginRatio(0);
1095     }
1096
1097     for (int i=0;i<4;i++)
1098     {
1099         const float defaultColors[4][3] = {{0,1,1},{0,1,1},{1,0.5,0},{1,0,0}};
1100         SGPropertyNode_ptr color_node = _font_node->getNode("tcas/color",i,true);
1101         float red   = color_node->getFloatValue("red",defaultColors[i][0]);
1102         float green = color_node->getFloatValue("green",defaultColors[i][1]);
1103         float blue  = color_node->getFloatValue("blue",defaultColors[i][2]);
1104         float alpha = color_node->getFloatValue("alpha",1);
1105         _tcas_colors[i]=osg::Vec4(red, green, blue, alpha);
1106     }
1107 }
1108
1109 void
1110 wxRadarBg::valueChanged(SGPropertyNode*)
1111 {
1112     updateFont();
1113     _time = _interval;
1114 }
1115