]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_io.cxx
Add the AIModel based air traffic subsystem from Durk Talsma.
[flightgear.git] / src / Main / fg_io.cxx
index 397ec166dacd59667d97afab2e0c8effb953aebb..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>
 #include <Network/pve.hxx>
 #include <Network/ray.hxx>
 #include <Network/rul.hxx>
+#include <Network/generic.hxx>
+
+#ifdef FG_MPLAYER_AS
+#include <Network/multiplay.hxx>
+#endif
 
 #include "globals.hxx"
 #include "fg_io.hxx"
@@ -103,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;
@@ -128,16 +139,19 @@ 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;
-       } else if ( protocol == "native_ctrls" ) {
+       } else if ( protocol == "native-ctrls" ) {
            FGNativeCtrls *native_ctrls = new FGNativeCtrls;
            io = native_ctrls;
-       } else if ( protocol == "native_fdm" ) {
+       } else if ( protocol == "native-fdm" ) {
            FGNativeFDM *native_fdm = new FGNativeFDM;
            io = native_fdm;
-       } else if ( protocol == "native_gui" ) {
+       } else if ( protocol == "native-gui" ) {
            FGNativeGUI *net_gui = new FGNativeGUI;
            io = net_gui;
        } else if ( protocol == "nmea" ) {
@@ -155,6 +169,20 @@ FGIO::parse_port_config( const string& config )
        } else if ( protocol == "rul" ) {
            FGRUL *rul = new FGRUL;
            io = rul;
+        } else if ( protocol == "generic" ) {
+            FGGeneric *generic = new FGGeneric( tokens[6] );
+            io = generic;
+
+#ifdef FG_MPLAYER_AS
+       } else if ( protocol == "multiplay" ) {\
+           //Determine dir, rate, host & port
+           string dir = tokens[1];
+           string rate = tokens[2];
+           string host = tokens[3];
+           string port = tokens[4];
+           return new FGMultiplay(dir, atoi(rate.c_str()), host, atoi(port.c_str()));
+#endif
+
        } else {
            return NULL;
        }
@@ -204,7 +232,7 @@ FGIO::parse_port_config( const string& config )
        SG_LOG( SG_IO, SG_INFO, "  hostname = " << hostname );
        SG_LOG( SG_IO, SG_INFO, "  port = " << port );
        SG_LOG( SG_IO, SG_INFO, "  style = " << style );
-            
+
        io->set_io_channel( new SGSocket( hostname, port, style ) );
     }
 
@@ -217,7 +245,7 @@ FGIO::parse_port_config( const string& config )
 void
 FGIO::init()
 {
-    // SG_LOG( SG_IO, SG_INFO, "I/O Channel initialization, " << 
+    // SG_LOG( SG_IO, SG_INFO, "I/O Channel initialization, " <<
     //         globals->get_channel_options_list()->size() << " requests." );
 
     FGProtocol *p;
@@ -248,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();
@@ -268,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;
        }
     }
 }