]> git.mxchange.org Git - flightgear.git/blob - src/Network/native_gui.cxx
91618430f2675b75e567165131176cdd409da639
[flightgear.git] / src / Network / native_gui.cxx
1 // native_gui.cxx -- FGFS external gui data export class
2 //
3 // Written by Curtis Olson, started January 2002.
4 //
5 // Copyright (C) 2002  Curtis L. Olson - curt@flightgear.org
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #include <simgear/debug/logstream.hxx>
29 #include <simgear/io/lowlevel.hxx> // endian tests
30 #include <simgear/io/iochannel.hxx>
31 #include <simgear/timing/sg_time.hxx>
32
33 #include <Cockpit/radiostack.hxx>
34 #include <FDM/flight.hxx>
35 #include <Time/tmp.hxx>
36 #include <Main/fg_props.hxx>
37 #include <Main/globals.hxx>
38
39 #include "native_gui.hxx"
40
41 // FreeBSD works better with this included last ... (?)
42 #if defined(WIN32) && !defined(__CYGWIN__)
43 #  include <windows.h>
44 #else
45 #  include <netinet/in.h>       // htonl() ntohl()
46 #endif
47
48
49 // #define FG_USE_NETWORK_BYTE_ORDER
50 #if defined( FG_USE_NETWORK_BYTE_ORDER )
51
52 // The function htond is defined this way due to the way some
53 // processors and OSes treat floating point values.  Some will raise
54 // an exception whenever a "bad" floating point value is loaded into a
55 // floating point register.  Solaris is notorious for this, but then
56 // so is LynxOS on the PowerPC.  By translating the data in place,
57 // there is no need to load a FP register with the "corruped" floating
58 // point value.  By doing the BIG_ENDIAN test, I can optimize the
59 // routine for big-endian processors so it can be as efficient as
60 // possible
61 static void htond (double &x)   
62 {
63     if ( sgIsLittleEndian() ) {
64         int    *Double_Overlay;
65         int     Holding_Buffer;
66     
67         Double_Overlay = (int *) &x;
68         Holding_Buffer = Double_Overlay [0];
69     
70         Double_Overlay [0] = htonl (Double_Overlay [1]);
71         Double_Overlay [1] = htonl (Holding_Buffer);
72     } else {
73         return;
74     }
75 }
76 static void htonf (float &x)    
77 {
78     if ( sgIsLittleEndian() ) {
79         int    *Float_Overlay;
80         int     Holding_Buffer;
81     
82         Float_Overlay = (int *) &x;
83         Holding_Buffer = Float_Overlay [0];
84     
85         Float_Overlay [0] = htonl (Holding_Buffer);
86     } else {
87         return;
88     }
89 }
90 #endif
91
92
93 FGNativeGUI::FGNativeGUI() {
94 }
95
96 FGNativeGUI::~FGNativeGUI() {
97 }
98
99
100 // open hailing frequencies
101 bool FGNativeGUI::open() {
102     if ( is_enabled() ) {
103         SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel " 
104                 << "is already in use, ignoring" );
105         return false;
106     }
107
108     SGIOChannel *io = get_io_channel();
109
110     if ( ! io->open( get_direction() ) ) {
111         SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
112         return false;
113     }
114
115     set_enabled( true );
116
117     cur_fdm_state->_set_Sea_level_radius( SG_EQUATORIAL_RADIUS_FT );
118     return true;
119 }
120
121
122 void FGProps2NetGUI( FGNetGUI *net ) {
123     int i;
124
125     // Version sanity checking
126     net->version = FG_NET_GUI_VERSION;
127
128     // Aero parameters
129     net->longitude = cur_fdm_state->get_Longitude();
130     net->latitude = cur_fdm_state->get_Latitude();
131     net->altitude = cur_fdm_state->get_Altitude() * SG_FEET_TO_METER;
132     net->phi = cur_fdm_state->get_Phi();
133     net->theta = cur_fdm_state->get_Theta();
134     net->psi = cur_fdm_state->get_Psi();
135
136     // Velocities
137     net->vcas = cur_fdm_state->get_V_calibrated_kts();
138     net->climb_rate = cur_fdm_state->get_Climb_Rate();
139
140     // Consumables
141     net->num_tanks = FGNetGUI::FG_MAX_TANKS;
142     for ( i = 0; i < net->num_tanks; ++i ) {
143         SGPropertyNode *node = fgGetNode("/consumables/fuel/tank", i, true);
144         net->fuel_quantity[i] = node->getDoubleValue("level-gal_us");
145     }
146
147     // the following really aren't used in this context
148     net->cur_time = globals->get_time_params()->get_cur_time();
149     net->warp = globals->get_warp();
150
151     // Approach
152     net->dist_nm = current_radiostack->get_navcom1()->get_nav_gs_dist();
153     net->course_deviation_deg
154         = current_radiostack->get_navcom1()->get_nav_heading()
155         - current_radiostack->get_navcom1()->get_nav_radial();
156     while ( net->course_deviation_deg >  180.0 ) {
157         net->course_deviation_deg -= 360.0;
158     }
159     while ( net->course_deviation_deg < -180.0 ) {
160         net->course_deviation_deg += 360.0;
161     }
162     if ( fabs(net->course_deviation_deg) > 90.0 )
163         net->course_deviation_deg
164             = ( net->course_deviation_deg<0.0
165                 ? -net->course_deviation_deg - 180.0
166                 : -net->course_deviation_deg + 180.0 );
167     net->gs_deviation_deg
168         = current_radiostack->get_navcom1()->get_nav_gs_needle_deflection()
169         / 5.0;
170
171 #if defined( FG_USE_NETWORK_BYTE_ORDER )
172     // Convert the net buffer to network format
173     net->version = htonl(net->version);
174
175     htond(net->longitude);
176     htond(net->latitude);
177     htonf(net->altitude);
178     htonf(net->phi);
179     htonf(net->theta);
180     htonf(net->psi);
181     htonf(net->vcas);
182     htonf(net->climb_rate);
183
184     for ( i = 0; i < net->num_tanks; ++i ) {
185         htonf(net->fuel_quantity[i]);
186     }
187     net->num_tanks = htonl(net->num_tanks);
188
189     net->cur_time = htonl( net->cur_time );
190     net->warp = htonl( net->warp );
191
192     htonf(net->dist_nm);
193     htonf(net->course_deviation_deg);
194     htonf(net->gs_deviation_deg);
195 #endif
196 }
197
198
199 void FGNetGUI2Props( FGNetGUI *net ) {
200     int i;
201
202 #if defined( FG_USE_NETWORK_BYTE_ORDER )
203     // Convert to the net buffer from network format
204     net->version = ntohl(net->version);
205
206     htond(net->longitude);
207     htond(net->latitude);
208     htonf(net->altitude);
209     htonf(net->phi);
210     htonf(net->theta);
211     htonf(net->psi);
212     htonf(net->vcas);
213     htonf(net->climb_rate);
214
215     net->num_tanks = htonl(net->num_tanks);
216     for ( i = 0; i < net->num_tanks; ++i ) {
217         htonf(net->fuel_quantity[i]);
218     }
219
220     net->cur_time = ntohl(net->cur_time);
221     net->warp = ntohl(net->warp);
222
223     htonf(net->dist_nm);
224     htonf(net->course_deviation_deg);
225     htonf(net->gs_deviation_deg);
226 #endif
227
228     if ( net->version == FG_NET_GUI_VERSION ) {
229         // cout << "pos = " << net->longitude << " " << net->latitude << endl;
230         // cout << "sea level rad = " << cur_fdm_state->get_Sea_level_radius()
231         //      << endl;
232         cur_fdm_state->_updateGeodeticPosition( net->latitude,
233                                                 net->longitude,
234                                                 net->altitude
235                                                   * SG_METER_TO_FEET );
236         cur_fdm_state->_set_Euler_Angles( net->phi,
237                                           net->theta,
238                                           net->psi );
239
240         cur_fdm_state->_set_V_calibrated_kts( net->vcas );
241         cur_fdm_state->_set_Climb_Rate( net->climb_rate );
242
243         for (i = 0; i < net->num_tanks; ++i ) {
244             SGPropertyNode * node
245                 = fgGetNode("/consumables/fuel/tank", i, true);
246             node->setDoubleValue("level-gal_us", net->fuel_quantity[i] );
247         }
248
249         if ( net->cur_time ) {
250             fgSetLong("/sim/time/cur-time-override", net->cur_time);
251         }
252
253         globals->set_warp( net->warp );
254
255         // Approach
256         fgSetDouble( "/radios/dme/distance-nm", net->dist_nm );
257         fgSetDouble( "/radios/nav[0]/heading-needle-deflection",
258                      net->course_deviation_deg );
259         fgSetDouble( "/radios/nav[0]/gs-needle-deflection",
260                      net->gs_deviation_deg );
261     } else {
262         SG_LOG( SG_IO, SG_ALERT,
263                 "Error: version mismatch in FGNetNativeGUI2Props()" );
264         SG_LOG( SG_IO, SG_ALERT,
265                 "\tread " << net->version << " need " << FG_NET_GUI_VERSION );
266         SG_LOG( SG_IO, SG_ALERT,
267                 "\tNeed to upgrade net_fdm.hxx and recompile." );
268     }
269 }
270
271
272 // process work for this port
273 bool FGNativeGUI::process() {
274     SGIOChannel *io = get_io_channel();
275     int length = sizeof(buf);
276
277     if ( get_direction() == SG_IO_OUT ) {
278         // cout << "size of cur_fdm_state = " << length << endl;
279         FGProps2NetGUI( &buf );
280         if ( ! io->write( (char *)(& buf), length ) ) {
281             SG_LOG( SG_IO, SG_ALERT, "Error writing data." );
282             return false;
283         }
284     } else if ( get_direction() == SG_IO_IN ) {
285         if ( io->get_type() == sgFileType ) {
286             if ( io->read( (char *)(& buf), length ) == length ) {
287                 SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
288                 FGNetGUI2Props( &buf );
289             }
290         } else {
291             while ( io->read( (char *)(& buf), length ) == length ) {
292                 SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
293                 FGNetGUI2Props( &buf );
294             }
295         }
296     }
297
298     return true;
299 }
300
301
302 // close the channel
303 bool FGNativeGUI::close() {
304     SGIOChannel *io = get_io_channel();
305
306     set_enabled( false );
307
308     if ( ! io->close() ) {
309         return false;
310     }
311
312     return true;
313 }