]> git.mxchange.org Git - flightgear.git/blob - src/FDM/ExternalNet.cxx
For flaps power, fuel pump, and starter, send power state rather than switch
[flightgear.git] / src / FDM / ExternalNet.cxx
1 // ExternalNet.hxx -- an net interface to an external flight dynamics model
2 //
3 // Written by Curtis Olson, started November 2001.
4 //
5 // Copyright (C) 2001  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 #include <simgear/debug/logstream.hxx>
24 #include <simgear/io/lowlevel.hxx> // endian tests
25
26 #include <Main/fg_props.hxx>
27
28 #include "ExternalNet.hxx"
29
30
31 // FreeBSD works better with this included last ... (?)
32 #if defined(WIN32) && !defined(__CYGWIN__)
33 #  include <windows.h>
34 #else
35 #  include <netinet/in.h>       // htonl() ntohl()
36 #endif
37
38
39 // The function htond is defined this way due to the way some
40 // processors and OSes treat floating point values.  Some will raise
41 // an exception whenever a "bad" floating point value is loaded into a
42 // floating point register.  Solaris is notorious for this, but then
43 // so is LynxOS on the PowerPC.  By translating the data in place,
44 // there is no need to load a FP register with the "corruped" floating
45 // point value.  By doing the BIG_ENDIAN test, I can optimize the
46 // routine for big-endian processors so it can be as efficient as
47 // possible
48 static void htond (double &x)   
49 {
50     if ( sgIsLittleEndian() ) {
51         int    *Double_Overlay;
52         int     Holding_Buffer;
53     
54         Double_Overlay = (int *) &x;
55         Holding_Buffer = Double_Overlay [0];
56     
57         Double_Overlay [0] = htonl (Double_Overlay [1]);
58         Double_Overlay [1] = htonl (Holding_Buffer);
59     } else {
60         return;
61     }
62 }
63
64
65 static void global2raw( FGRawCtrls *raw ) {
66     int i;
67
68     // fill in values
69     SGPropertyNode * node = fgGetNode("/controls", true);
70     raw->version = FG_RAW_CTRLS_VERSION;
71     raw->aileron = node->getDoubleValue( "aileron" );
72     raw->elevator = node->getDoubleValue( "elevator" );
73     raw->elevator_trim = node->getDoubleValue( "elevator-trim" );
74     raw->rudder = node->getDoubleValue( "rudder" );
75     raw->flaps = node->getDoubleValue( "flaps" );
76     raw->flaps_power
77             = node->getDoubleValue( "/systems/electrical/outputs/flaps",
78                                     1.0 ) >= 1.0;
79     raw->num_engines = FGRawCtrls::FG_MAX_ENGINES;
80     for ( i = 0; i < FGRawCtrls::FG_MAX_ENGINES; ++i ) {
81         raw->throttle[i] = node->getDoubleValue( "throttle", 0.0 );
82         raw->mixture[i] = node->getDoubleValue( "mixture", 0.0 );
83         raw->fuel_pump_power[i]
84             = node->getDoubleValue( "/systems/electrical/outputs/fuel-pump",
85                                     1.0 ) >= 1.0;
86         raw->prop_advance[i] = node->getDoubleValue( "propeller-pitch", 0.0 );
87         raw->magnetos[i] = node->getIntValue( "magnetos", 0 );
88         if ( i == 0 ) {
89           // cout << "Magnetos -> " << node->getIntValue( "magnetos", 0 );
90         }
91         raw->starter_power[i]
92             = node->getDoubleValue( "/systems/electrical/outputs/starter",
93                                     1.0 ) >= 1.0;
94         if ( i == 0 ) {
95           // cout << " Starter -> " << node->getIntValue( "stater", false )
96           //      << endl;
97         }
98     }
99     raw->num_tanks = FGRawCtrls::FG_MAX_TANKS;
100     for ( i = 0; i < FGRawCtrls::FG_MAX_TANKS; ++i ) {
101         if ( node->getChild("fuel-selector", i) != 0 ) {
102             raw->fuel_selector[i]
103                 = node->getChild("fuel-selector", i)->getDoubleValue();
104         } else {
105             raw->fuel_selector[i] = false;
106         }
107     }
108     raw->num_wheels = FGRawCtrls::FG_MAX_WHEELS;
109     for ( i = 0; i < FGRawCtrls::FG_MAX_WHEELS; ++i ) {
110         if ( node->getChild("brakes", i) != 0 ) {
111             raw->brake[i]
112                 = node->getChild("brakes", i)->getDoubleValue();
113         } else {
114             raw->brake[i] = 0.0;
115         }
116     }
117
118     node = fgGetNode("/controls/switches", true);
119     raw->master_bat = node->getChild("master-bat")->getBoolValue();
120     raw->master_alt = node->getChild("master-alt")->getBoolValue();
121     raw->master_avionics = node->getChild("master-avionics")->getBoolValue();
122
123     raw->hground = fgGetDouble( "/environment/ground-elevation-m" );
124     raw->magvar = fgGetDouble("/environment/magnetic-variation-deg");
125     raw->speedup = fgGetInt("/sim/speed-up");
126
127     // convert to network byte order
128     raw->version = htonl(raw->version);
129     htond(raw->aileron);
130     htond(raw->elevator);
131     htond(raw->elevator_trim);
132     htond(raw->rudder);
133     htond(raw->flaps);
134     raw->flaps_power = htonl(raw->flaps_power);
135     for ( i = 0; i < FGRawCtrls::FG_MAX_ENGINES; ++i ) {
136         htond(raw->throttle[i]);
137         htond(raw->mixture[i]);
138         raw->fuel_pump_power[i] = htonl(raw->fuel_pump_power[i]);
139         htond(raw->prop_advance[i]);
140         raw->magnetos[i] = htonl(raw->magnetos[i]);
141         raw->starter_power[i] = htonl(raw->starter_power[i]);
142     }
143     raw->num_engines = htonl(raw->num_engines);
144     for ( i = 0; i < FGRawCtrls::FG_MAX_TANKS; ++i ) {
145         raw->fuel_selector[i] = htonl(raw->fuel_selector[i]);
146     }
147     raw->num_tanks = htonl(raw->num_tanks);
148     for ( i = 0; i < FGRawCtrls::FG_MAX_WHEELS; ++i ) {
149         htond(raw->brake[i]);
150     }
151     raw->num_wheels = htonl(raw->num_wheels);
152     raw->gear_handle = htonl(raw->gear_handle);
153     raw->master_bat = htonl(raw->master_bat);
154     raw->master_alt = htonl(raw->master_alt);
155     raw->master_avionics = htonl(raw->master_avionics);
156     htond(raw->hground);
157     htond(raw->magvar);
158     raw->speedup = htonl(raw->speedup);
159 }
160
161
162 static void net2global( FGNetFDM *net ) {
163     int i;
164
165     // Convert to the net buffer from network format
166     net->version = ntohl(net->version);
167
168     htond(net->longitude);
169     htond(net->latitude);
170     htond(net->altitude);
171     htond(net->phi);
172     htond(net->theta);
173     htond(net->psi);
174
175     htond(net->phidot);
176     htond(net->thetadot);
177     htond(net->psidot);
178     htond(net->vcas);
179     htond(net->climb_rate);
180
181     htond(net->A_X_pilot);
182     htond(net->A_Y_pilot);
183     htond(net->A_Z_pilot);
184
185     net->num_engines = htonl(net->num_engines);
186     for ( i = 0; i < net->num_engines; ++i ) {
187         htonl(net->eng_state[i]);
188         htond(net->rpm[i]);
189         htond(net->fuel_flow[i]);
190         htond(net->EGT[i]);
191         htond(net->oil_temp[i]);
192         htond(net->oil_px[i]);
193     }
194
195     net->num_tanks = htonl(net->num_tanks);
196     for ( i = 0; i < net->num_tanks; ++i ) {
197         htond(net->fuel_quantity[i]);
198     }
199
200     net->num_wheels = htonl(net->num_wheels);
201     // I don't need to convert the Wow flags, since they are one byte in size
202     htond(net->flap_deflection);
203
204     net->cur_time = ntohl(net->cur_time);
205     net->warp = ntohl(net->warp);
206     htond(net->visibility);
207
208     if ( net->version == FG_NET_FDM_VERSION ) {
209         // cout << "pos = " << net->longitude << " " << net->latitude << endl;
210         // cout << "sea level rad = " << cur_fdm_state->get_Sea_level_radius()
211         //      << endl;
212         cur_fdm_state->_updateGeodeticPosition( net->latitude,
213                                                 net->longitude,
214                                                 net->altitude
215                                                   * SG_METER_TO_FEET );
216         cur_fdm_state->_set_Euler_Angles( net->phi,
217                                           net->theta,
218                                           net->psi );
219         cur_fdm_state->_set_Euler_Rates( net->phidot,
220                                          net->thetadot,
221                                          net->psidot );
222         cur_fdm_state->_set_V_calibrated_kts( net->vcas );
223         cur_fdm_state->_set_Climb_Rate( net->climb_rate );
224         cur_fdm_state->_set_Accels_Pilot_Body( net->A_X_pilot,
225                                                net->A_Y_pilot,
226                                                net->A_Z_pilot );
227
228         for ( i = 0; i < net->num_engines; ++i ) {
229             SGPropertyNode *node = fgGetNode( "engines/engine", i, true );
230             
231             // node->setBoolValue("running", t->isRunning());
232             // node->setBoolValue("cranking", t->isCranking());
233             
234             // cout << net->eng_state[i] << endl;
235             if ( net->eng_state[i] == 0 ) {
236                 node->setBoolValue( "cranking", false );
237                 node->setBoolValue( "running", false );
238             } else if ( net->eng_state[i] == 1 ) {
239                 node->setBoolValue( "cranking", true );
240                 node->setBoolValue( "running", false );
241             } else if ( net->eng_state[i] == 2 ) {
242                 node->setBoolValue( "cranking", false );
243                 node->setBoolValue( "running", true );
244             }
245
246             node->setDoubleValue( "rpm", net->rpm[i] );
247             node->setDoubleValue( "fuel-flow-gph", net->fuel_flow[i] );
248             node->setDoubleValue( "egt-degf", net->EGT[i] );
249             node->setDoubleValue( "oil-temperature-degf", net->oil_temp[i] );
250             node->setDoubleValue( "oil-pressure-psi", net->oil_px[i] );         
251         }
252
253         for (i = 0; i < net->num_tanks; ++i ) {
254             SGPropertyNode * node
255                 = fgGetNode("/consumables/fuel/tank", i, true);
256             node->setDoubleValue("level-gal_us", net->fuel_quantity[i] );
257         }
258
259         for (i = 0; i < net->num_wheels; ++i ) {
260             SGPropertyNode * node
261                 = fgGetNode("/gear/gear", i, true);
262             node->setDoubleValue("wow", net->wow[i] );
263         }
264
265         fgSetDouble("/surface-positions/flap-pos-norm", net->flap_deflection);
266         SGPropertyNode * node = fgGetNode("/controls", true);
267         fgSetDouble("/surface-positions/elevator-pos-norm", 
268                     node->getDoubleValue( "elevator" ));
269         fgSetDouble("/surface-positions/rudder-pos-norm", 
270                     node->getDoubleValue( "rudder" ));
271         fgSetDouble("/surface-positions/left-aileron-pos-norm", 
272                     node->getDoubleValue( "aileron" ));
273         fgSetDouble("/surface-positions/right-aileron-pos-norm", 
274                     -node->getDoubleValue( "aileron" ));
275
276         /* these are ignored for now  ... */
277         /*
278         if ( net->cur_time ) {
279             fgSetLong("/sim/time/cur-time-override", net->cur_time);
280         }
281
282         globals->set_warp( net->warp );
283         last_warp = net->warp;
284         */
285     } else {
286         SG_LOG( SG_IO, SG_ALERT, "Error: version mismatch in net2global()" );
287         SG_LOG( SG_IO, SG_ALERT,
288                 "\tread " << net->version << " need " << FG_NET_FDM_VERSION );
289         SG_LOG( SG_IO, SG_ALERT,
290                 "\tsomeone needs to upgrade net_fdm.hxx and recompile." );
291     }
292 }
293
294
295 FGExternalNet::FGExternalNet( double dt, string host, int dop, int dip, int cp )
296 {
297 //     set_delta_t( dt );
298
299     valid = true;
300
301     data_in_port = dip;
302     data_out_port = dop;
303     cmd_port = cp;
304     fdm_host = host;
305
306     /////////////////////////////////////////////////////////
307     // Setup client udp connection (sends data to remote fdm)
308
309     if ( ! data_client.open( false ) ) {
310         SG_LOG( SG_FLIGHT, SG_ALERT, "Error opening client data channel" );
311         valid = false;
312     }
313
314     // fire and forget
315     data_client.setBlocking( false );
316
317     if ( data_client.connect( fdm_host.c_str(), data_out_port ) == -1 ) {
318         printf("error connecting to %s:%d\n", fdm_host.c_str(), data_out_port);
319         valid = false;
320     }
321
322     /////////////////////////////////////////////////////////
323     // Setup server udp connection (for receiving data)
324
325     if ( ! data_server.open( false ) ) {
326         SG_LOG( SG_FLIGHT, SG_ALERT, "Error opening client server channel" );
327         valid = false;
328     }
329
330     // disable blocking
331     data_server.setBlocking( false );
332
333     // allowed to read from a broadcast addr
334     // data_server.setBroadcast( true );
335
336     // if we bind to fdm_host = "" then we accept messages from
337     // anyone.
338     if ( data_server.bind( "", data_in_port ) == -1 ) {
339         printf("error binding to port %d\n", data_in_port);
340         valid = false;
341     }
342 }
343
344
345 FGExternalNet::~FGExternalNet() {
346     data_client.close();
347     data_server.close();
348 }
349
350
351 // Initialize the ExternalNet flight model, dt is the time increment
352 // for each subsequent iteration through the EOM
353 void FGExternalNet::init() {
354     // cout << "FGExternalNet::init()" << endl;
355
356     // Explicitly call the superclass's
357     // init method first.
358     common_init();
359
360     double lon = fgGetDouble( "/position/longitude-deg" );
361     double lat = fgGetDouble( "/position/latitude-deg" );
362     double ground = fgGetDouble( "/environment/ground-elevation-m" );
363     double heading = fgGetDouble("/orientation/heading-deg");
364
365     char cmd[256];
366
367     sprintf( cmd, "/longitude-deg?value=%.8f", lon );
368     new HTTPClient( fdm_host.c_str(), cmd_port, cmd );
369 //     cout << "before loop()" << endl;
370     netChannel::loop(0);
371 //     cout << "here" << endl;
372
373     sprintf( cmd, "/latitude-deg?value=%.8f", lat );
374     new HTTPClient( fdm_host.c_str(), cmd_port, cmd );
375     netChannel::loop(0);
376
377     sprintf( cmd, "/ground-m?value=%.8f", ground );
378     new HTTPClient( fdm_host.c_str(), cmd_port, cmd );
379     netChannel::loop(0);
380
381     sprintf( cmd, "/heading-deg?value=%.8f", heading );
382     new HTTPClient( fdm_host.c_str(), cmd_port, cmd );
383     netChannel::loop(0);
384
385     SG_LOG( SG_IO, SG_INFO, "before sending reset command." );
386
387     sprintf( cmd, "/reset?value=ground" );
388     new HTTPClient( fdm_host.c_str(), cmd_port, cmd );
389     netChannel::loop(0);
390
391     SG_LOG( SG_IO, SG_INFO, "Remote FDM init() finished." );
392 }
393
394
395 // Run an iteration of the EOM.
396 void FGExternalNet::update( double dt ) {
397     int length;
398     int result;
399
400     if (is_suspended())
401       return;
402
403     // Send control positions to remote fdm
404     length = sizeof(ctrls);
405     global2raw( &ctrls );
406     if ( data_client.send( (char *)(& ctrls), length, 0 ) != length ) {
407         SG_LOG( SG_IO, SG_DEBUG, "Error writing data." );
408     } else {
409         SG_LOG( SG_IO, SG_DEBUG, "wrote control data." );
410     }
411
412     // Read next set of FDM data (blocking enabled to maintain 'sync')
413     length = sizeof(fdm);
414     while ( (result = data_server.recv( (char *)(& fdm), length, 0)) >= 0 ) {
415         SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
416         net2global( &fdm );
417     }
418 }