]> git.mxchange.org Git - flightgear.git/blob - src/Network/native_ctrls.cxx
Update nasal function name.
[flightgear.git] / src / Network / native_ctrls.cxx
1 // native_ctrls.cxx -- FGFS "Native" controls I/O class
2 //
3 // Written by Curtis Olson, started July 2001.
4 //
5 // Copyright (C) 2001  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., 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/iochannel.hxx>
30 #include <simgear/io/lowlevel.hxx> // endian tests
31
32 #include <FDM/flight.hxx>
33 #include <Main/fg_props.hxx>
34 #include <Scenery/scenery.hxx>  // ground elevation
35
36 #include "native_ctrls.hxx"
37
38 // FreeBSD works better with this included last ... (?)
39 #if defined(WIN32) && !defined(__CYGWIN__)
40 #  include <windows.h>
41 #else
42 #  include <netinet/in.h>       // htonl() ntohl()
43 #endif
44
45
46 FGNativeCtrls::FGNativeCtrls() {
47 }
48
49 FGNativeCtrls::~FGNativeCtrls() {
50 }
51
52
53 // open hailing frequencies
54 bool FGNativeCtrls::open() {
55     if ( is_enabled() ) {
56         SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel " 
57                 << "is already in use, ignoring" );
58         return false;
59     }
60
61     SGIOChannel *io = get_io_channel();
62
63     if ( ! io->open( get_direction() ) ) {
64         SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
65         return false;
66     }
67
68     set_enabled( true );
69
70     return true;
71 }
72
73
74 // The function htond is defined this way due to the way some
75 // processors and OSes treat floating point values.  Some will raise
76 // an exception whenever a "bad" floating point value is loaded into a
77 // floating point register.  Solaris is notorious for this, but then
78 // so is LynxOS on the PowerPC.  By translating the data in place,
79 // there is no need to load a FP register with the "corruped" floating
80 // point value.  By doing the BIG_ENDIAN test, I can optimize the
81 // routine for big-endian processors so it can be as efficient as
82 // possible
83 static void htond (double &x)   
84 {
85     if ( sgIsLittleEndian() ) {
86         int    *Double_Overlay;
87         int     Holding_Buffer;
88     
89         Double_Overlay = (int *) &x;
90         Holding_Buffer = Double_Overlay [0];
91     
92         Double_Overlay [0] = htonl (Double_Overlay [1]);
93         Double_Overlay [1] = htonl (Holding_Buffer);
94     } else {
95         return;
96     }
97 }
98
99
100 // Populate the FGNetCtrls structure from the property tree.
101 void FGProps2NetCtrls( FGNetCtrls *net, bool honor_freezes,
102                        bool net_byte_order )
103 {
104     int i;
105     SGPropertyNode *node;
106     SGPropertyNode *fuelpump;
107     SGPropertyNode *tempnode;
108
109     // fill in values
110     node  = fgGetNode("/controls/flight", true);
111     net->version = FG_NET_CTRLS_VERSION;
112     net->aileron = node->getDoubleValue( "aileron" );
113     net->elevator = node->getDoubleValue( "elevator" );
114     net->rudder = node->getDoubleValue( "rudder" );
115     net->aileron_trim = node->getDoubleValue( "aileron-trim" );
116     net->elevator_trim = node->getDoubleValue( "elevator-trim" );
117     net->rudder_trim = node->getDoubleValue( "rudder-trim" );
118     net->flaps = node->getDoubleValue( "flaps" );
119     net->flaps_power
120         = fgGetDouble( "/systems/electrical/outputs/flaps", 1.0 ) >= 1.0;
121     net->flap_motor_ok = node->getBoolValue( "flaps-serviceable" );
122
123     net->num_engines = FGNetCtrls::FG_MAX_ENGINES;
124     for ( i = 0; i < FGNetCtrls::FG_MAX_ENGINES; ++i ) {
125         // Controls
126         node = fgGetNode("/controls/engines/engine", i );
127         fuelpump = fgGetNode("/systems/electrical/outputs/fuel-pump", i );
128
129         tempnode = node->getChild("starter");
130         if ( tempnode != NULL ) {
131             net->starter_power[i] = ( tempnode->getDoubleValue() >= 1.0 );
132         }
133         tempnode = node->getChild("master-bat");
134         if ( tempnode != NULL ) {
135             net->master_bat[i] = tempnode->getBoolValue();
136         }
137         tempnode = node->getChild("master-alt");
138         if ( tempnode != NULL ) {
139             net->master_alt[i] = tempnode->getBoolValue();
140         }
141
142         net->throttle[i] = node->getDoubleValue( "throttle", 0.0 );
143         net->mixture[i] = node->getDoubleValue( "mixture", 0.0 );
144         net->prop_advance[i] = node->getDoubleValue( "propeller-pitch", 0.0 );
145         net->condition[i] = node->getDoubleValue( "condition", 0.0 );
146         net->magnetos[i] = node->getIntValue( "magnetos", 0 );
147         if ( i == 0 ) {
148           // cout << "Magnetos -> " << node->getIntValue( "magnetos", 0 );
149         }
150         if ( i == 0 ) {
151           // cout << "Starter -> " << node->getIntValue( "starter", false )
152           //      << endl;
153         }
154
155         if ( fuelpump != NULL ) {
156             net->fuel_pump_power[i] = ( fuelpump->getDoubleValue() >= 1.0 );
157         } else {
158             net->fuel_pump_power[i] = 0;
159         }
160
161         // Faults
162         SGPropertyNode *faults = node->getChild( "faults", 0, true );
163         net->engine_ok[i] = faults->getBoolValue( "serviceable", true );
164         net->mag_left_ok[i]
165           = faults->getBoolValue( "left-magneto-serviceable", true );
166         net->mag_right_ok[i]
167           = faults->getBoolValue( "right-magneto-serviceable", true);
168         net->spark_plugs_ok[i]
169           = faults->getBoolValue( "spark-plugs-serviceable", true );
170         net->oil_press_status[i]
171           = faults->getIntValue( "oil-pressure-status", 0 );
172         net->fuel_pump_ok[i]
173           = faults->getBoolValue( "fuel-pump-serviceable", true );
174     }
175     net->num_tanks = FGNetCtrls::FG_MAX_TANKS;
176     for ( i = 0; i < FGNetCtrls::FG_MAX_TANKS; ++i ) {
177         node = fgGetNode("/controls/fuel/tank", i);
178         if ( node->getChild("fuel_selector") != 0 ) {
179             net->fuel_selector[i]
180                 = node->getChild("fuel_selector")->getBoolValue();
181         } else {
182             net->fuel_selector[i] = false;
183         }
184     }
185     node = fgGetNode("/controls/gear", true);
186     net->brake_left = node->getChild("brake-left")->getDoubleValue();
187     net->brake_right = node->getChild("brake-right")->getDoubleValue();
188     net->copilot_brake_left
189         = node->getChild("copilot-brake-left")->getDoubleValue();
190     net->copilot_brake_right
191         = node->getChild("copilot-brake-right")->getDoubleValue();
192     net->brake_parking = node->getChild("brake-parking")->getDoubleValue();
193
194     net->gear_handle = fgGetBool( "controls/gear/gear-down" );
195
196     tempnode = node->getChild("master-avionics");
197     if ( tempnode != NULL ) {
198         net->master_avionics = tempnode->getBoolValue();
199     }
200
201     net->wind_speed_kt = fgGetDouble("/environment/wind-speed-kt");
202     net->wind_dir_deg = fgGetDouble("/environment/wind-from-heading-deg");
203     net->turbulence_norm =
204         fgGetDouble("/environment/turbulence/magnitude-norm");
205
206     net->temp_c = fgGetDouble("/environment/temperature-degc");
207     net->press_inhg = fgGetDouble("/environment/pressure-sea-level-inhg");
208
209     // cur_fdm_state->get_ground_elev_ft() is what we want ... this
210     // reports the altitude of the aircraft.
211     // "/environment/ground-elevation-m" reports the ground elevation
212     // of the current view point which could change substantially if
213     // the user is switching views.
214     net->hground = cur_fdm_state->get_ground_elev_ft() * SG_FEET_TO_METER;
215     net->magvar = fgGetDouble("/environment/magnetic-variation-deg");
216
217     net->icing = fgGetBool("/hazards/icing/wing");
218
219     net->speedup = fgGetInt("/sim/speed-up");
220     net->freeze = 0;
221     if ( honor_freezes ) {
222         if ( fgGetBool("/sim/freeze/master") ) {
223             net->freeze |= 0x01;
224         }
225         if ( fgGetBool("/sim/freeze/position") ) {
226             net->freeze |= 0x02;
227         }
228         if ( fgGetBool("/sim/freeze/fuel") ) {
229             net->freeze |= 0x04;
230         }
231     }
232
233     if ( net_byte_order ) {
234         // convert to network byte order
235         net->version = htons(net->version);
236         htond(net->aileron);
237         htond(net->elevator);
238         htond(net->rudder);
239         htond(net->aileron_trim);
240         htond(net->elevator_trim);
241         htond(net->rudder_trim);
242         htond(net->flaps);
243         for ( i = 0; i < FGNetCtrls::FG_MAX_ENGINES; ++i ) {
244             htond(net->throttle[i]);
245             htond(net->mixture[i]);
246             htond(net->prop_advance[i]);
247             htond(net->condition[i]);
248         }
249         htond(net->brake_left);
250         htond(net->brake_right);
251         htond(net->copilot_brake_left);
252         htond(net->copilot_brake_right);
253         htond(net->brake_parking);
254         htond(net->wind_speed_kt);
255         htond(net->wind_dir_deg);
256         htond(net->turbulence_norm);
257         htond(net->temp_c);
258         htond(net->press_inhg);
259         htond(net->hground);
260         htond(net->magvar);
261     }
262 }
263
264
265 // Update the property tree from the FGNetCtrls structure.
266 void FGNetCtrls2Props( FGNetCtrls *net, bool honor_freezes,
267                        bool net_byte_order )
268 {
269     int i;
270
271     SGPropertyNode * node;
272
273     if ( net_byte_order ) {
274         // convert from network byte order
275         net->version = htons(net->version);
276         htond(net->aileron);
277         htond(net->elevator);
278         htond(net->rudder);
279         htond(net->aileron_trim);
280         htond(net->elevator_trim);
281         htond(net->rudder_trim);
282         htond(net->flaps);
283         for ( i = 0; i < net->num_engines; ++i ) {
284             htond(net->throttle[i]);
285             htond(net->mixture[i]);
286             htond(net->prop_advance[i]);
287             htond(net->condition[i]);
288         }
289         htond(net->brake_left);
290         htond(net->brake_right);
291         htond(net->copilot_brake_left);
292         htond(net->copilot_brake_right);
293         htond(net->brake_parking);
294         htond(net->wind_speed_kt);
295         htond(net->wind_dir_deg);
296         htond(net->turbulence_norm);
297         htond(net->temp_c);
298         htond(net->press_inhg);
299         htond(net->hground);
300         htond(net->magvar);
301     }
302
303     if ( net->version != FG_NET_CTRLS_VERSION ) {
304         SG_LOG( SG_IO, SG_ALERT,
305                 "Version mismatch with raw controls packet format." );
306         SG_LOG( SG_IO, SG_ALERT,
307                 "FlightGear needs version = " << FG_NET_CTRLS_VERSION
308                 << " but is receiving version = "  << net->version );
309     }
310     node = fgGetNode("/controls/flight", true);
311     node->setDoubleValue( "aileron", net->aileron );
312     node->setDoubleValue( "elevator", net->elevator );
313     node->setDoubleValue( "rudder", net->rudder );
314     node->setDoubleValue( "aileron-trim", net->aileron_trim );
315     node->setDoubleValue( "elevator-trim", net->elevator_trim );
316     node->setDoubleValue( "rudder-trim", net->rudder_trim );
317     node->setDoubleValue( "flaps", net->flaps );
318     fgSetBool( "/systems/electrical/outputs/flaps", net->flaps_power );
319     node->setBoolValue( "flaps-serviceable", net->flap_motor_ok );
320
321     for ( i = 0; i < FGNetCtrls::FG_MAX_ENGINES; ++i ) {
322         // Controls
323         node = fgGetNode("/controls/engines/engine", i);
324         node->getChild( "throttle" )->setDoubleValue( net->throttle[i] );
325         node->getChild( "mixture" )->setDoubleValue( net->mixture[i] );
326         node->getChild( "propeller-pitch" )
327             ->setDoubleValue( net->prop_advance[i] );
328         node->getChild( "condition" )
329             ->setDoubleValue( net->condition[i] );
330         node->getChild( "magnetos" )->setDoubleValue( net->magnetos[i] );
331         node->getChild( "starter" )->setDoubleValue( net->starter_power[i] );
332
333         // Faults
334         SGPropertyNode *faults = node->getNode( "faults", true );
335         faults->setBoolValue( "serviceable", net->engine_ok[i] );
336         faults->setBoolValue( "left-magneto-serviceable",
337                               net->mag_left_ok[i] );
338         faults->setBoolValue( "right-magneto-serviceable",
339                               net->mag_right_ok[i]);
340         faults->setBoolValue( "spark-plugs-serviceable",
341                               net->spark_plugs_ok[i] );
342         faults->setIntValue( "oil-pressure-status", net->oil_press_status[i] );
343         faults->setBoolValue( "fuel-pump-serviceable", net->fuel_pump_ok[i] );
344     }
345
346     fgSetBool( "/systems/electrical/outputs/fuel-pump",
347                net->fuel_pump_power[0] );
348
349     for ( i = 0; i < FGNetCtrls::FG_MAX_TANKS; ++i ) {
350         node = fgGetNode( "/controls/fuel/tank", i );
351         node->getChild( "fuel_selector" )
352             ->setBoolValue( net->fuel_selector[i] );
353     }
354     node = fgGetNode( "/controls/gear" );
355     if ( node != NULL ) {
356         node->getChild( "brake-left" )->setDoubleValue( net->brake_left );
357         node->getChild( "brake-right" )->setDoubleValue( net->brake_right );
358         node->getChild( "copilot-brake-left" )
359             ->setDoubleValue( net->copilot_brake_left );
360         node->getChild( "copilot-brake-right" )
361             ->setDoubleValue( net->copilot_brake_right );
362         node->getChild( "brake-parking" )->setDoubleValue( net->brake_parking );
363     }
364
365     node = fgGetNode( "/controls/gear", true );
366     node->setBoolValue( "gear-down", net->gear_handle );
367
368     node = fgGetNode( "/controls/switches", true );
369     node->setBoolValue( "master-bat", net->master_bat );
370     node->setBoolValue( "master-alt", net->master_alt );
371     node->setBoolValue( "master-avionics", net->master_avionics );
372     
373     node = fgGetNode( "/environment", true );
374     node->setDoubleValue( "wind-speed-kt", net->wind_speed_kt );
375     node->setDoubleValue( "wind-from-heading-deg", net->wind_dir_deg );
376     node->setDoubleValue( "turbulence/magnitude-norm", net->turbulence_norm );
377     node->setBoolValue( "magnetic-variation-deg", net->magvar );
378
379     node->setDoubleValue( "/environment/temperature-degc",
380                           net->temp_c );
381     node->setDoubleValue( "/environment/pressure-sea-level-inhg",
382                           net->press_inhg );
383
384     // ground elevation ???
385
386     fgSetDouble("/hazards/icing/wing", net->icing);
387
388     fgSetInt( "/sim/speed-up", net->speedup );
389
390     if ( honor_freezes ) {
391         node = fgGetNode( "/sim/freeze", true );
392         node->setBoolValue( "master", net->freeze & 0x01 );
393         node->setBoolValue( "position", net->freeze & 0x02 );
394         node->setBoolValue( "fuel", net->freeze & 0x04 );
395     }
396 }
397
398
399 // process work for this port
400 bool FGNativeCtrls::process() {
401     SGIOChannel *io = get_io_channel();
402     int length = sizeof(FGNetCtrls);
403
404     if ( get_direction() == SG_IO_OUT ) {
405         // cout << "size of cur_fdm_state = " << length << endl;
406
407         FGProps2NetCtrls( &net_ctrls, true, true );
408
409         if ( ! io->write( (char *)(& net_ctrls), length ) ) {
410             SG_LOG( SG_IO, SG_ALERT, "Error writing data." );
411             return false;
412         }
413     } else if ( get_direction() == SG_IO_IN ) {
414         if ( io->get_type() == sgFileType ) {
415             if ( io->read( (char *)(& net_ctrls), length ) == length ) {
416                 SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
417                 FGNetCtrls2Props( &net_ctrls, true, true );
418             }
419         } else {
420             while ( io->read( (char *)(& net_ctrls), length ) == length ) {
421                 SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
422                 FGNetCtrls2Props( &net_ctrls, true, true );
423             }
424         }
425     }
426
427     return true;
428 }
429
430
431 // close the channel
432 bool FGNativeCtrls::close() {
433     SGIOChannel *io = get_io_channel();
434
435     set_enabled( false );
436
437     if ( ! io->close() ) {
438         return false;
439     }
440
441     return true;
442 }