1 // native_ctrls.cxx -- FGFS "Native" controls I/O class
3 // Written by Curtis Olson, started July 2001.
5 // Copyright (C) 2001 Curtis L. Olson - curt@flightgear.org
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.
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.
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.
28 #include <simgear/debug/logstream.hxx>
29 #include <simgear/io/iochannel.hxx>
30 #include <simgear/io/lowlevel.hxx> // endian tests
32 #include <FDM/flight.hxx>
33 #include <Main/fg_props.hxx>
34 #include <Scenery/scenery.hxx> // ground elevation
36 #include "native_ctrls.hxx"
38 // FreeBSD works better with this included last ... (?)
39 #if defined(WIN32) && !defined(__CYGWIN__)
42 # include <netinet/in.h> // htonl() ntohl()
46 FGNativeCtrls::FGNativeCtrls() {
49 FGNativeCtrls::~FGNativeCtrls() {
53 // open hailing frequencies
54 bool FGNativeCtrls::open() {
56 SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel "
57 << "is already in use, ignoring" );
61 SGIOChannel *io = get_io_channel();
63 if ( ! io->open( get_direction() ) ) {
64 SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
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
83 static void htond (double &x)
85 if ( sgIsLittleEndian() ) {
89 Double_Overlay = (int *) &x;
90 Holding_Buffer = Double_Overlay [0];
92 Double_Overlay [0] = htonl (Double_Overlay [1]);
93 Double_Overlay [1] = htonl (Holding_Buffer);
100 // Populate the FGNetCtrls structure from the property tree.
101 void FGProps2NetCtrls( FGNetCtrls *net, bool net_byte_order ) {
104 SGPropertyNode * node = fgGetNode("/controls", true);
107 net->version = FG_NET_CTRLS_VERSION;
108 net->aileron = node->getDoubleValue( "aileron" );
109 net->elevator = node->getDoubleValue( "elevator" );
110 net->elevator_trim = node->getDoubleValue( "elevator-trim" );
111 net->rudder = node->getDoubleValue( "rudder" );
112 net->flaps = node->getDoubleValue( "flaps" );
114 = node->getDoubleValue( "/systems/electrical/outputs/flaps",
116 net->num_engines = FGNetCtrls::FG_MAX_ENGINES;
117 for ( i = 0; i < FGNetCtrls::FG_MAX_ENGINES; ++i ) {
118 net->throttle[i] = node->getDoubleValue( "throttle", 0.0 );
119 net->mixture[i] = node->getDoubleValue( "mixture", 0.0 );
120 net->fuel_pump_power[i]
121 = node->getDoubleValue( "/systems/electrical/outputs/fuel-pump",
123 net->prop_advance[i] = node->getDoubleValue( "propeller-pitch", 0.0 );
124 net->magnetos[i] = node->getIntValue( "magnetos", 0 );
126 // cout << "Magnetos -> " << node->getIntValue( "magnetos", 0 );
128 net->starter_power[i]
129 = node->getDoubleValue( "/systems/electrical/outputs/starter",
132 // cout << " Starter -> " << node->getIntValue( "stater", false )
136 net->num_tanks = FGNetCtrls::FG_MAX_TANKS;
137 for ( i = 0; i < FGNetCtrls::FG_MAX_TANKS; ++i ) {
138 if ( node->getChild("fuel-selector", i) != 0 ) {
139 net->fuel_selector[i]
140 = node->getChild("fuel-selector", i)->getDoubleValue();
142 net->fuel_selector[i] = false;
145 net->num_wheels = FGNetCtrls::FG_MAX_WHEELS;
146 for ( i = 0; i < FGNetCtrls::FG_MAX_WHEELS; ++i ) {
147 if ( node->getChild("brakes", i) != 0 ) {
148 if ( node->getChild("parking-brake")->getDoubleValue() > 0.0 ) {
152 = node->getChild("brakes", i)->getDoubleValue();
159 node = fgGetNode("/controls/switches", true);
160 net->master_bat = node->getChild("master-bat")->getBoolValue();
161 net->master_alt = node->getChild("master-alt")->getBoolValue();
162 net->master_avionics = node->getChild("master-avionics")->getBoolValue();
164 net->wind_speed_kt = fgGetDouble("/environment/wind-speed-kt");
165 net->wind_dir_deg = fgGetDouble("/environment/wind-from-heading-deg");
167 // cur_fdm_state->get_ground_elev_ft() is what we want ... this
168 // reports the altitude of the aircraft.
169 // "/environment/ground-elevation-m" reports the ground elevation
170 // of the current view point which could change substantially if
171 // the user is switching views.
172 net->hground = cur_fdm_state->get_ground_elev_ft() * SG_FEET_TO_METER;
173 net->magvar = fgGetDouble("/environment/magnetic-variation-deg");
174 net->speedup = fgGetInt("/sim/speed-up");
176 if ( fgGetBool("/sim/freeze/master") ) {
179 if ( fgGetBool("/sim/freeze/position") ) {
182 if ( fgGetBool("/sim/freeze/fuel") ) {
186 if ( net_byte_order ) {
187 // convert to network byte order
188 net->version = htonl(net->version);
190 htond(net->elevator);
191 htond(net->elevator_trim);
194 net->flaps_power = htonl(net->flaps_power);
195 for ( i = 0; i < FGNetCtrls::FG_MAX_ENGINES; ++i ) {
196 htond(net->throttle[i]);
197 htond(net->mixture[i]);
198 net->fuel_pump_power[i] = htonl(net->fuel_pump_power[i]);
199 htond(net->prop_advance[i]);
200 net->magnetos[i] = htonl(net->magnetos[i]);
201 net->starter_power[i] = htonl(net->starter_power[i]);
203 net->num_engines = htonl(net->num_engines);
204 for ( i = 0; i < FGNetCtrls::FG_MAX_TANKS; ++i ) {
205 net->fuel_selector[i] = htonl(net->fuel_selector[i]);
207 net->num_tanks = htonl(net->num_tanks);
208 for ( i = 0; i < FGNetCtrls::FG_MAX_WHEELS; ++i ) {
209 htond(net->brake[i]);
211 net->num_wheels = htonl(net->num_wheels);
212 net->gear_handle = htonl(net->gear_handle);
213 net->master_bat = htonl(net->master_bat);
214 net->master_alt = htonl(net->master_alt);
215 net->master_avionics = htonl(net->master_avionics);
216 htond(net->wind_speed_kt);
217 htond(net->wind_dir_deg);
220 net->speedup = htonl(net->speedup);
221 net->freeze = htonl(net->freeze);
226 // Update the property tree from the FGNetCtrls structure.
227 void FGNetCtrls2Props( FGNetCtrls *net, bool net_byte_order ) {
230 SGPropertyNode * node = fgGetNode("/controls", true);
232 if ( net_byte_order ) {
233 // convert from network byte order
234 net->version = htonl(net->version);
236 htond(net->elevator);
237 htond(net->elevator_trim);
240 net->flaps_power = htonl(net->flaps_power);
241 net->num_engines = htonl(net->num_engines);
242 for ( i = 0; i < net->num_engines; ++i ) {
243 net->magnetos[i] = htonl(net->magnetos[i]);
244 net->starter_power[i] = htonl(net->starter_power[i]);
245 htond(net->throttle[i]);
246 htond(net->mixture[i]);
247 net->fuel_pump_power[i] = htonl(net->fuel_pump_power[i]);
248 htond(net->prop_advance[i]);
250 net->num_tanks = htonl(net->num_tanks);
251 for ( i = 0; i < net->num_tanks; ++i ) {
252 net->fuel_selector[i] = htonl(net->fuel_selector[i]);
254 net->num_wheels = htonl(net->num_wheels);
255 for ( i = 0; i < net->num_wheels; ++i ) {
256 htond(net->brake[i]);
258 net->gear_handle = htonl(net->gear_handle);
259 net->master_bat = htonl(net->master_bat);
260 net->master_alt = htonl(net->master_alt);
261 net->master_avionics = htonl(net->master_avionics);
262 htond(net->wind_speed_kt);
263 htond(net->wind_dir_deg);
266 net->speedup = htonl(net->speedup);
267 net->freeze = htonl(net->freeze);
270 if ( net->version != FG_NET_CTRLS_VERSION ) {
271 SG_LOG( SG_IO, SG_ALERT,
272 "Version mismatch with raw controls packet format." );
273 SG_LOG( SG_IO, SG_ALERT,
274 "FlightGear needs version = " << FG_NET_CTRLS_VERSION
275 << " but is receiving version = " << net->version );
278 node->setDoubleValue( "aileron", net->aileron );
279 node->setDoubleValue( "elevator", net->elevator );
280 node->setDoubleValue( "elevator-trim", net->elevator_trim );
281 node->setDoubleValue( "rudder", net->rudder );
282 node->setDoubleValue( "flaps", net->flaps );
284 fgSetBool( "/systems/electrical/outputs/flaps", net->flaps_power );
286 for ( i = 0; i < FGNetCtrls::FG_MAX_ENGINES; ++i ) {
287 node->getChild( "throttle", i )->setDoubleValue( net->throttle[i] );
288 node->getChild( "mixture", i )->setDoubleValue( net->mixture[i] );
289 node->getChild( "propeller-pitch", i )
290 ->setDoubleValue( net->prop_advance[i] );
291 node->getChild( "magnetos", i )->setDoubleValue( net->magnetos[i] );
294 fgSetBool( "/systems/electrical/outputs/fuel-pump",
295 net->fuel_pump_power[0] );
296 fgSetBool( "/systems/electrical/outputs/starter",
297 net->starter_power[0] );
299 for ( i = 0; i < FGNetCtrls::FG_MAX_TANKS; ++i ) {
300 node->getChild( "fuel-selector", i )
301 ->setBoolValue( net->fuel_selector[i] );
303 for ( i = 0; i < FGNetCtrls::FG_MAX_WHEELS; ++i ) {
304 node->getChild( "brakes", i )->setDoubleValue( net->brake[i] );
307 node->setBoolValue( "gear-down", net->gear_handle );
309 node = fgGetNode( "/controls/switches", true );
310 node->setBoolValue( "master-bat", net->master_bat );
311 node->setBoolValue( "master-alt", net->master_alt );
312 node->setBoolValue( "master-avionics", net->master_avionics );
314 node = fgGetNode( "/environment", true );
315 node->setBoolValue( "wind-speed-kt", net->wind_speed_kt );
316 node->setBoolValue( "wind-from-heading-deg", net->wind_dir_deg );
317 node->setBoolValue( "magnetic-variation-deg", net->magvar );
319 // ground elevation ???
321 fgSetInt( "/sim/speed-up", net->speedup );
323 node = fgGetNode( "/sim/freeze", true );
324 node->setBoolValue( "master", net->freeze & 0x01 );
325 node->setBoolValue( "position", net->freeze & 0x02 );
326 node->setBoolValue( "fuel", net->freeze & 0x04 );
330 // process work for this port
331 bool FGNativeCtrls::process() {
332 SGIOChannel *io = get_io_channel();
333 int length = sizeof(FGNetCtrls);
335 if ( get_direction() == SG_IO_OUT ) {
336 // cout << "size of cur_fdm_state = " << length << endl;
338 FGProps2NetCtrls( &net_ctrls );
340 if ( ! io->write( (char *)(& net_ctrls), length ) ) {
341 SG_LOG( SG_IO, SG_ALERT, "Error writing data." );
344 } else if ( get_direction() == SG_IO_IN ) {
345 if ( io->get_type() == sgFileType ) {
346 if ( io->read( (char *)(& net_ctrls), length ) == length ) {
347 SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
348 FGNetCtrls2Props( &net_ctrls );
351 while ( io->read( (char *)(& net_ctrls), length ) == length ) {
352 SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
353 FGNetCtrls2Props( &net_ctrls );
363 bool FGNativeCtrls::close() {
364 SGIOChannel *io = get_io_channel();
366 set_enabled( false );
368 if ( ! io->close() ) {