]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_io.cxx
Fix the nmea and garmin output to a) fake a GSA sentence, b) fix a y2k bug
[flightgear.git] / src / Main / fg_io.cxx
index 997fa36b1760e247aac44c097c724594d7279970..55c84f7527b4d7f793f4b552c2b912266af4b7dc 100644 (file)
@@ -46,6 +46,7 @@
 #  include <Network/jpg-httpd.hxx>
 #endif
 #include <Network/joyclient.hxx>
+#include <Network/jsclient.hxx>
 #include <Network/native.hxx>
 #include <Network/native_ctrls.hxx>
 #include <Network/native_fdm.hxx>
@@ -108,6 +109,11 @@ FGIO::parse_port_config( const string& config )
        if ( protocol == "atc610x" ) {
             FGATC610x *atc610x = new FGATC610x;
            atc610x->set_hz( 30 );
+            if ( tokens.size() > 1 ) {
+                if ( tokens[1] == "no-rudder" ) {
+                    atc610x->set_use_rudder( false );
+                }
+            }
            return atc610x;
        } else if ( protocol == "atlas" ) {
            FGAtlas *atlas = new FGAtlas;
@@ -133,6 +139,9 @@ FGIO::parse_port_config( const string& config )
        } else if ( protocol == "joyclient" ) {
            FGJoyClient *joyclient = new FGJoyClient;
            io = joyclient;
+        } else if ( protocol == "jsclient" ) {
+            FGJsClient *jsclient = new FGJsClient;
+            io = jsclient;
        } else if ( protocol == "native" ) {
            FGNative *native = new FGNative;
            io = native;
@@ -267,17 +276,12 @@ FGIO::init()
 }
 
 
-// process any serial port work
+// process any IO channel work
 void
 FGIO::update( double delta_time_sec )
 {
     // cout << "processing I/O channels" << endl;
-
-    // SGTimeStamp current_time;
-    // current_time.stamp();
-    // static SGTimeStamp start_time = current_time;
-    // double elapsed_time = (current_time - start_time) / 1000000.0;
-    // cout << " Elapsed time = " << elapsed_time << endl;
+    // cout << "  Elapsed time = " << delta_time_sec << endl;
 
     typedef vector< FGProtocol* > container;
     container::iterator i = io_channels.begin();
@@ -287,14 +291,16 @@ FGIO::update( double delta_time_sec )
 
        if ( p->is_enabled() ) {
            p->dec_count_down( delta_time_sec );
-            double dt = 1 / p->get_hz();
-           while ( p->get_count_down() < 0.33 * dt ) {
-               p->process();
+           double dt = 1 / p->get_hz();
+           if ( p->get_count_down() < 0.33 * dt ) {
+             p->process();
+             p->inc_count();
+             while ( p->get_count_down() < 0.33 * dt ) {
                p->inc_count_down( dt );
-                p->inc_count();
+             }
+             // double ave = elapsed_time / p->get_count();
+             // cout << "  ave rate = " << ave << endl;
            }
-            // double ave = elapsed_time / p->get_count();
-            // cout << "  ave rate = " << ave << endl;
        }
     }
 }