]> git.mxchange.org Git - flightgear.git/blob - src/Network/AV400.cxx
NavDisplay - custom symbol support enabled.
[flightgear.git] / src / Network / AV400.cxx
1 // AV400.cxx -- Garmin 400 series protocal class
2 //
3 // Written by Curtis Olson, started August 2006.
4 //
5 // Copyright (C) 2006  Curtis L. Olson - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include <cstdlib>
29 #include <cstring>
30
31 #include <simgear/debug/logstream.hxx>
32 #include <simgear/math/sg_geodesy.hxx>
33 #include <simgear/io/iochannel.hxx>
34 #include <simgear/timing/sg_time.hxx>
35
36 #include <Main/fg_props.hxx>
37 #include <Main/globals.hxx>
38
39 #include "AV400.hxx"
40
41 FGAV400::FGAV400() {
42 }
43
44 FGAV400::~FGAV400() {
45 }
46
47
48 #if 0
49 // calculate the garmin check sum
50 static char calc_nmea_cksum(char *sentence) {
51     unsigned char sum = 0;
52     int i, len;
53
54     // cout << sentence << endl;
55
56     len = strlen(sentence);
57     sum = sentence[0];
58     for ( i = 1; i < len; i++ ) {
59         // cout << sentence[i];
60         sum ^= sentence[i];
61     }
62     // cout << endl;
63
64     // printf("sum = %02x\n", sum);
65     return sum;
66 }
67 #endif
68
69
70 // generate AV400 message
71 bool FGAV400::gen_message() {
72     // cout << "generating garmin message" << endl;
73
74     char msg_z[32], msg_A[32], msg_B[32], msg_C[32], msg_D[32];
75     char msg_Q[32], msg_T[32], msg_type2[256];
76     // the following could be implemented, but currently are unused
77     // char msg_E[32], msg_G[32], msg_I[32], msg_K[32], msg_L[32], msg_S[32];
78     // char msg_l[32];
79
80     char dir;
81     int deg;
82     double min;
83
84     // create msg_z
85     sprintf( msg_z, "z%05.0f\r\n", fdm.get_Altitude() );
86
87     // create msg_A
88     sprintf( msg_A, "A");
89
90     double latd = fdm.get_Latitude() * SGD_RADIANS_TO_DEGREES;
91     if ( latd < 0.0 ) {
92         latd = -latd;
93         dir = 'S';
94     } else {
95         dir = 'N';
96     }
97     deg = (int)latd;
98     min = (latd - (double)deg) * 60.0 * 100.0;
99     sprintf( msg_A, "A%c %02d %04.0f\r\n", dir, deg, min);
100
101     // create msg_B
102     double lond = fdm.get_Longitude() * SGD_RADIANS_TO_DEGREES;
103     if ( lond < 0.0 ) {
104         lond = -lond;
105         dir = 'W';
106     } else {
107         dir = 'E';
108     }
109     deg = (int)lond;
110     min = (lond - (double)deg) * 60.0 * 100.0;
111     sprintf( msg_B, "B%c %03d %04.0f\r\n", dir, deg, min);
112
113     // create msg_C
114     float magdeg = fgGetDouble( "/environment/magnetic-variation-deg" );
115     double vn = fgGetDouble( "/velocities/speed-north-fps" );
116     double ve = fgGetDouble( "/velocities/speed-east-fps" );
117     double gnd_trk_true = atan2( ve, vn ) * SGD_RADIANS_TO_DEGREES;
118     double gnd_trk_mag = gnd_trk_true - magdeg;
119     if ( gnd_trk_mag < 0.0 ) { gnd_trk_mag += 360.0; }
120     if ( gnd_trk_mag >= 360.0 ) { gnd_trk_mag -= 360.0; }
121     sprintf( msg_C, "C%03.0f\r\n", gnd_trk_mag);
122
123     // create msg_D
124     double speed_kt = sqrt( vn*vn + ve*ve ) * SG_FPS_TO_KT;
125     if ( speed_kt > 999.0 ) {
126         speed_kt = 999.0;
127     }
128     sprintf( msg_D, "D%03.0f\r\n", speed_kt);
129
130     // create msg_E (not implemented)
131     // create msg_G (not implemented)
132     // create msg_I (not implemented)
133     // create msg_K (not implemented)
134     // create msg_L (not implemented)
135
136     // create msg_Q
137     if ( magdeg < 0.0 ) {
138         magdeg = -magdeg;
139         dir = 'W';
140     } else {
141         dir = 'E';
142     }
143     sprintf( msg_Q, "Q%c%03.0f\r\n", dir, magdeg * 10.0 );
144
145     // create msg_S (not implemented)
146
147     // create msg_T
148     sprintf( msg_T, "T---------\r\n" );
149
150     // create msg_l (not implemented)
151
152     // sentence type 2
153     sprintf( msg_type2, "w01%c\r\n", (char)65 );
154
155     // assemble message
156     string sentence;
157     sentence += '\002';         // STX
158     sentence += msg_z;          // altitude
159     sentence += msg_A;          // latitude
160     sentence += msg_B;          // longitude
161     sentence += msg_C;          // ground track
162     sentence += msg_D;          // ground speed (kt)
163     // sentence += "E-----\r\n";
164     // sentence += "G-----\r\n";
165     // sentence += "I----\r\n";
166     // sentence += "K-----\r\n";
167     // sentence += "L----\r\n";
168     sentence += msg_Q;          // magvar
169     // sentence += "S-----\r\n";
170     sentence += msg_T;          // end of type 1 messages (must be sent)
171     sentence += msg_type2;      // type2 message
172     // sentence += "l------\r\n";
173     sentence += '\003';         // ETX
174
175     // cout << sentence;
176     length = sentence.length();
177     // cout << endl << "length = " << length << endl;
178     strncpy( buf, sentence.c_str(), length );
179
180     return true;
181 }
182
183
184 // parse AV400 message
185 bool FGAV400::parse_message() {
186     SG_LOG( SG_IO, SG_INFO, "parse garmin message" );
187
188     string msg = buf;
189     msg = msg.substr( 0, length );
190     SG_LOG( SG_IO, SG_INFO, "entire message = " << msg );
191
192     string::size_type begin_line, end_line, begin, end;
193     begin_line = begin = 0;
194
195     // extract out each line
196     end_line = msg.find("\n", begin_line);
197     while ( end_line != string::npos ) {
198         string line = msg.substr(begin_line, end_line - begin_line);
199         begin_line = end_line + 1;
200         SG_LOG( SG_IO, SG_INFO, "  input line = " << line );
201
202         // leading character
203         string start = msg.substr(begin, 1);
204         ++begin;
205         SG_LOG( SG_IO, SG_INFO, "  start = " << start );
206
207         // sentence
208         end = msg.find(",", begin);
209         if ( end == string::npos ) {
210             return false;
211         }
212     
213         string sentence = msg.substr(begin, end - begin);
214         begin = end + 1;
215         SG_LOG( SG_IO, SG_INFO, "  sentence = " << sentence );
216
217         double lon_deg, lon_min, lat_deg, lat_min;
218         double lon, lat, speed, heading, altitude;
219
220         if ( sentence == "GPRMC" ) {
221             // time
222             end = msg.find(",", begin);
223             if ( end == string::npos ) {
224                 return false;
225             }
226     
227             string utc = msg.substr(begin, end - begin);
228             begin = end + 1;
229             SG_LOG( SG_IO, SG_INFO, "  utc = " << utc );
230
231             // junk
232             end = msg.find(",", begin);
233             if ( end == string::npos ) {
234                 return false;
235             }
236     
237             string junk = msg.substr(begin, end - begin);
238             begin = end + 1;
239             SG_LOG( SG_IO, SG_INFO, "  junk = " << junk );
240
241             // lat val
242             end = msg.find(",", begin);
243             if ( end == string::npos ) {
244                 return false;
245             }
246     
247             string lat_str = msg.substr(begin, end - begin);
248             begin = end + 1;
249
250             lat_deg = atof( lat_str.substr(0, 2).c_str() );
251             lat_min = atof( lat_str.substr(2).c_str() );
252
253             // lat dir
254             end = msg.find(",", begin);
255             if ( end == string::npos ) {
256                 return false;
257             }
258     
259             string lat_dir = msg.substr(begin, end - begin);
260             begin = end + 1;
261
262             lat = lat_deg + ( lat_min / 60.0 );
263             if ( lat_dir == "S" ) {
264                 lat *= -1;
265             }
266
267             fdm.set_Latitude( lat * SGD_DEGREES_TO_RADIANS );
268             SG_LOG( SG_IO, SG_INFO, "  lat = " << lat );
269
270             // lon val
271             end = msg.find(",", begin);
272             if ( end == string::npos ) {
273                 return false;
274             }
275     
276             string lon_str = msg.substr(begin, end - begin);
277             begin = end + 1;
278
279             lon_deg = atof( lon_str.substr(0, 3).c_str() );
280             lon_min = atof( lon_str.substr(3).c_str() );
281
282             // lon dir
283             end = msg.find(",", begin);
284             if ( end == string::npos ) {
285                 return false;
286             }
287     
288             string lon_dir = msg.substr(begin, end - begin);
289             begin = end + 1;
290
291             lon = lon_deg + ( lon_min / 60.0 );
292             if ( lon_dir == "W" ) {
293                 lon *= -1;
294             }
295
296             fdm.set_Longitude( lon * SGD_DEGREES_TO_RADIANS );
297             SG_LOG( SG_IO, SG_INFO, "  lon = " << lon );
298
299 #if 0
300             double sl_radius, lat_geoc;
301             sgGeodToGeoc( fdm.get_Latitude(), 
302                           fdm.get_Altitude(), 
303                           &sl_radius, &lat_geoc );
304             fdm.set_Geocentric_Position( lat_geoc, 
305                            fdm.get_Longitude(), 
306                            sl_radius + fdm.get_Altitude() );
307 #endif
308
309             // speed
310             end = msg.find(",", begin);
311             if ( end == string::npos ) {
312                 return false;
313             }
314     
315             string speed_str = msg.substr(begin, end - begin);
316             begin = end + 1;
317             speed = atof( speed_str.c_str() );
318             fdm.set_V_calibrated_kts( speed );
319             // fdm.set_V_ground_speed( speed );
320             SG_LOG( SG_IO, SG_INFO, "  speed = " << speed );
321
322             // heading
323             end = msg.find(",", begin);
324             if ( end == string::npos ) {
325                 return false;
326             }
327     
328             string hdg_str = msg.substr(begin, end - begin);
329             begin = end + 1;
330             heading = atof( hdg_str.c_str() );
331             fdm.set_Euler_Angles( fdm.get_Phi(), 
332                                              fdm.get_Theta(), 
333                                              heading * SGD_DEGREES_TO_RADIANS );
334             SG_LOG( SG_IO, SG_INFO, "  heading = " << heading );
335         } else if ( sentence == "PGRMZ" ) {
336             // altitude
337             end = msg.find(",", begin);
338             if ( end == string::npos ) {
339                 return false;
340             }
341     
342             string alt_str = msg.substr(begin, end - begin);
343             altitude = atof( alt_str.c_str() );
344             begin = end + 1;
345
346             // altitude units
347             end = msg.find(",", begin);
348             if ( end == string::npos ) {
349                 return false;
350             }
351     
352             string alt_units = msg.substr(begin, end - begin);
353             begin = end + 1;
354
355             if ( alt_units != "F" && alt_units != "f" ) {
356                 altitude *= SG_METER_TO_FEET;
357             }
358
359             fdm.set_Altitude( altitude );
360     
361             SG_LOG( SG_IO, SG_INFO, " altitude  = " << altitude );
362
363         }
364
365         // printf("%.8f %.8f\n", lon, lat);
366
367         begin = begin_line;
368         end_line = msg.find("\n", begin_line);
369     }
370
371     return true;
372 }
373
374
375 // open hailing frequencies
376 bool FGAV400::open() {
377     if ( is_enabled() ) {
378         SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel " 
379                 << "is already in use, ignoring" );
380         return false;
381     }
382
383     SGIOChannel *io = get_io_channel();
384
385     if ( ! io->open( get_direction() ) ) {
386         SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
387         return false;
388     }
389
390     set_enabled( true );
391
392     return true;
393 }
394
395
396 // process work for this port
397 bool FGAV400::process() {
398     SGIOChannel *io = get_io_channel();
399
400     if ( get_direction() == SG_IO_OUT ) {
401         gen_message();
402         if ( ! io->write( buf, length ) ) {
403             SG_LOG( SG_IO, SG_WARN, "Error writing data." );
404             return false;
405         }
406     } else if ( get_direction() == SG_IO_IN ) {
407         if ( (length = io->readline( buf, FG_MAX_MSG_SIZE )) > 0 ) {
408             SG_LOG( SG_IO, SG_ALERT, "Success reading data." );
409             if ( parse_message() ) {
410                 SG_LOG( SG_IO, SG_ALERT, "Success parsing data." );
411             } else {
412                 SG_LOG( SG_IO, SG_ALERT, "Error parsing data." );
413             }
414         } else {
415             SG_LOG( SG_IO, SG_ALERT, "Error reading data." );
416             return false;
417         }
418         if ( (length = io->readline( buf, FG_MAX_MSG_SIZE )) > 0 ) {
419             SG_LOG( SG_IO, SG_ALERT, "Success reading data." );
420             if ( parse_message() ) {
421                 SG_LOG( SG_IO, SG_ALERT, "Success parsing data." );
422             } else {
423                 SG_LOG( SG_IO, SG_ALERT, "Error parsing data." );
424             }
425         } else {
426             SG_LOG( SG_IO, SG_ALERT, "Error reading data." );
427             return false;
428         }
429     }
430
431     return true;
432 }
433
434
435 // close the channel
436 bool FGAV400::close() {
437     SGIOChannel *io = get_io_channel();
438
439     set_enabled( false );
440
441     if ( ! io->close() ) {
442         return false;
443     }
444
445     return true;
446 }