]> git.mxchange.org Git - flightgear.git/commitdiff
Added httpd protocol so you can interface to a running copy of FlightGear
authorcurt <curt>
Tue, 21 Aug 2001 21:13:55 +0000 (21:13 +0000)
committercurt <curt>
Tue, 21 Aug 2001 21:13:55 +0000 (21:13 +0000)
via a web browser, see README.IO for more details.

src/Main/Makefile.am
src/Main/fg_io.cxx
src/Main/main.cxx
src/Main/options.cxx
src/Network/Makefile.am

index 1e05ae43d35b04926c26c1e84bd4dfe911713e97..74fb3666036bef4116eadc2fbd1add637e30ae37 100644 (file)
@@ -79,7 +79,7 @@ fgfs_LDADD = \
        -lsgmath -lsgbucket -lsgdebug -lsgmagvar -lsgmisc -lsgxml \
        $(SERIAL_LIBS) \
        $(THREAD_LIBS) \
-       -lplibpu -lplibfnt -lplibssg -lplibsg \
+       -lplibpu -lplibfnt -lplibnet -lplibssg -lplibsg \
        -lmk4 -lz \
        $(opengl_LIBS) \
        $(audio_LIBS)
index 9823a63116f1eb3d52a0687686dac26e8b4d06e9..9760f83e6ae925ef2fa1ac9bb00fa4915ca71728 100644 (file)
@@ -23,6 +23,8 @@
 
 #include <simgear/compiler.h>
 
+#include <stdlib.h>             // atoi()
+
 #include STL_STRING
 
 #include <simgear/debug/logstream.hxx>
@@ -36,6 +38,7 @@
 #include <Network/protocol.hxx>
 #include <Network/atlas.hxx>
 #include <Network/garmin.hxx>
+#include <Network/httpd.hxx>
 #include <Network/joyclient.hxx>
 #include <Network/native.hxx>
 #include <Network/native_ctrls.hxx>
@@ -57,6 +60,8 @@ io_container global_io_list;
 // configure a port based on the config string
 static FGProtocol *parse_port_config( const string& config )
 {
+    bool short_circuit = false;
+
     string::size_type begin, end;
 
     begin = 0;
@@ -80,6 +85,12 @@ static FGProtocol *parse_port_config( const string& config )
     } else if ( protocol == "garmin" ) {
        FGGarmin *garmin = new FGGarmin;
        io = garmin;
+    } else if ( protocol == "httpd" ) {
+        // determine port
+        string port = config.substr(begin);
+       FGHttpd *httpd = new FGHttpd( atoi(port.c_str()) );
+       io = httpd;
+        short_circuit = true;
     } else if ( protocol == "joyclient" ) {
        FGJoyClient *joyclient = new FGJoyClient;
        io = joyclient;
@@ -108,90 +119,92 @@ static FGProtocol *parse_port_config( const string& config )
        return NULL;
     }
 
-    // determine medium
-    end = config.find(",", begin);
-    if ( end == string::npos ) {
-       return NULL;            // dummy
-    }
+    if ( ! short_circuit ) {
+        // determine medium
+        end = config.find(",", begin);
+        if ( end == string::npos ) {
+            return NULL;               // dummy
+        }
     
-    string medium = config.substr(begin, end - begin);
-    begin = end + 1;
-    SG_LOG( SG_IO, SG_INFO, "  medium = " << medium );
-
-    // determine direction
-    end = config.find(",", begin);
-    if ( end == string::npos ) {
-       return NULL;            // dummy
-    }
+        string medium = config.substr(begin, end - begin);
+        begin = end + 1;
+        SG_LOG( SG_IO, SG_INFO, "  medium = " << medium );
+
+        // determine direction
+        end = config.find(",", begin);
+        if ( end == string::npos ) {
+            return NULL;               // dummy
+        }
     
-    string direction = config.substr(begin, end - begin);
-    begin = end + 1;
-    io->set_direction( direction );
-    SG_LOG( SG_IO, SG_INFO, "  direction = " << direction );
-
-    // determine hertz
-    end = config.find(",", begin);
-    if ( end == string::npos ) {
-       return NULL;            // dummy
-    }
+        string direction = config.substr(begin, end - begin);
+        begin = end + 1;
+        io->set_direction( direction );
+        SG_LOG( SG_IO, SG_INFO, "  direction = " << direction );
+
+        // determine hertz
+        end = config.find(",", begin);
+        if ( end == string::npos ) {
+            return NULL;               // dummy
+        }
     
-    string hertz_str = config.substr(begin, end - begin);
-    begin = end + 1;
-    double hertz = atof( hertz_str.c_str() );
-    io->set_hz( hertz );
-    SG_LOG( SG_IO, SG_INFO, "  hertz = " << hertz );
-
-    if ( medium == "serial" ) {
-       // device name
-       end = config.find(",", begin);
-       if ( end == string::npos ) {
-           return NULL;
-       }
+        string hertz_str = config.substr(begin, end - begin);
+        begin = end + 1;
+        double hertz = atof( hertz_str.c_str() );
+        io->set_hz( hertz );
+        SG_LOG( SG_IO, SG_INFO, "  hertz = " << hertz );
+
+        if ( medium == "serial" ) {
+            // device name
+            end = config.find(",", begin);
+            if ( end == string::npos ) {
+                return NULL;
+            }
     
-       string device = config.substr(begin, end - begin);
-       begin = end + 1;
-       SG_LOG( SG_IO, SG_INFO, "  device = " << device );
-
-       // baud
-       string baud = config.substr(begin);
-       SG_LOG( SG_IO, SG_INFO, "  baud = " << baud );
-
-       SGSerial *ch = new SGSerial( device, baud );
-       io->set_io_channel( ch );
-    } else if ( medium == "file" ) {
-       // file name
-       string file = config.substr(begin);
-       SG_LOG( SG_IO, SG_INFO, "  file name = " << file );
-
-       SGFile *ch = new SGFile( file );
-       io->set_io_channel( ch );
-    } else if ( medium == "socket" ) {
-       // hostname
-       end = config.find(",", begin);
-       if ( end == string::npos ) {
-           return NULL;
-       }
+            string device = config.substr(begin, end - begin);
+            begin = end + 1;
+            SG_LOG( SG_IO, SG_INFO, "  device = " << device );
+
+            // baud
+            string baud = config.substr(begin);
+            SG_LOG( SG_IO, SG_INFO, "  baud = " << baud );
+
+            SGSerial *ch = new SGSerial( device, baud );
+            io->set_io_channel( ch );
+        } else if ( medium == "file" ) {
+            // file name
+            string file = config.substr(begin);
+            SG_LOG( SG_IO, SG_INFO, "  file name = " << file );
+
+            SGFile *ch = new SGFile( file );
+            io->set_io_channel( ch );
+        } else if ( medium == "socket" ) {
+            // hostname
+            end = config.find(",", begin);
+            if ( end == string::npos ) {
+                return NULL;
+            }
     
-       string hostname = config.substr(begin, end - begin);
-       begin = end + 1;
-       SG_LOG( SG_IO, SG_INFO, "  hostname = " << hostname );
-
-       // port string
-       end = config.find(",", begin);
-       if ( end == string::npos ) {
-           return NULL;
-       }
+            string hostname = config.substr(begin, end - begin);
+            begin = end + 1;
+            SG_LOG( SG_IO, SG_INFO, "  hostname = " << hostname );
+
+            // port string
+            end = config.find(",", begin);
+            if ( end == string::npos ) {
+                return NULL;
+            }
     
-       string port = config.substr(begin, end - begin);
-       begin = end + 1;
-       SG_LOG( SG_IO, SG_INFO, "  port string = " << port );
-
-       // socket style
-       string style_str = config.substr(begin);
-       SG_LOG( SG_IO, SG_INFO, "  style string = " << style_str );
-       
-       SGSocket *ch = new SGSocket( hostname, port, style_str );
-       io->set_io_channel( ch );
+            string port = config.substr(begin, end - begin);
+            begin = end + 1;
+            SG_LOG( SG_IO, SG_INFO, "  port string = " << port );
+
+            // socket style
+            string style_str = config.substr(begin);
+            SG_LOG( SG_IO, SG_INFO, "  style string = " << style_str );
+            
+            SGSocket *ch = new SGSocket( hostname, port, style_str );
+            io->set_io_channel( ch );
+        }
     }
 
     return io;
index 8ce5fa6bcbb714918b4a74acb3149169d6519dc0..d120c8f58d5d7ecf63f478416aa63d1d6a1aeffe 100644 (file)
@@ -60,6 +60,7 @@
 // #  include <GL/glext.h>
 // #endif
 
+#include <plib/netChat.h>
 #include <plib/pu.h>
 #include <plib/ssg.h>
 
@@ -1517,7 +1518,10 @@ int mainLoop( int argc, char **argv ) {
                "GLUT event handler initialization failed ..." );
        exit(-1);
     }
+
+    // Initialize plib net interface
+    netInit( &argc, argv );
+
     // Initialize ssg (from plib).  Needs to come before we do any
     // other ssg stuff, but after opengl/glut has been initialized.
     ssgInit();
index 36ec8d48c2bdf8b0eb9af8d773c013ee833e02ad..822a1a1a17a1ca8336e97956c7a65ec21a1f86ec 100644 (file)
@@ -456,7 +456,7 @@ parse_fov( const string& arg ) {
 //  filename = file system file name
 
 static bool 
-parse_channel( const string& type, const string& channel_str ) {
+add_channel( const string& type, const string& channel_str ) {
     // cout << "Channel string = " << channel_str << endl;
 
     globals->get_channel_options_list()->push_back( type + "," + channel_str );
@@ -789,25 +789,27 @@ parse_option (const string& arg)
     } else if ( arg == "--hud-culled" ) {
         fgSetString("/sim/hud/frame-stat-type", "culled");
     } else if ( arg.find( "--atlas=" ) == 0 ) {
-       parse_channel( "atlas", arg.substr(8) );
+       add_channel( "atlas", arg.substr(8) );
+    } else if ( arg.find( "--httpd=" ) == 0 ) {
+       add_channel( "httpd", arg.substr(8) );
     } else if ( arg.find( "--native=" ) == 0 ) {
-       parse_channel( "native", arg.substr(9) );
+       add_channel( "native", arg.substr(9) );
     } else if ( arg.find( "--native-ctrls=" ) == 0 ) {
-       parse_channel( "native_ctrls", arg.substr(15) );
+       add_channel( "native_ctrls", arg.substr(15) );
     } else if ( arg.find( "--garmin=" ) == 0 ) {
-       parse_channel( "garmin", arg.substr(9) );
+       add_channel( "garmin", arg.substr(9) );
     } else if ( arg.find( "--nmea=" ) == 0 ) {
-       parse_channel( "nmea", arg.substr(7) );
+       add_channel( "nmea", arg.substr(7) );
     } else if ( arg.find( "--props=" ) == 0 ) {
-       parse_channel( "props", arg.substr(8) );
+       add_channel( "props", arg.substr(8) );
     } else if ( arg.find( "--pve=" ) == 0 ) {
-       parse_channel( "pve", arg.substr(6) );
+       add_channel( "pve", arg.substr(6) );
     } else if ( arg.find( "--ray=" ) == 0 ) {
-       parse_channel( "ray", arg.substr(6) );
+       add_channel( "ray", arg.substr(6) );
     } else if ( arg.find( "--rul=" ) == 0 ) {
-       parse_channel( "rul", arg.substr(6) );
+       add_channel( "rul", arg.substr(6) );
     } else if ( arg.find( "--joyclient=" ) == 0 ) {
-       parse_channel( "joyclient", arg.substr(12) );
+       add_channel( "joyclient", arg.substr(12) );
 #ifdef FG_NETWORK_OLK
     } else if ( arg == "--disable-network-olk" ) {
         fgSetBool("/sim/networking/olk", false);
index 5fbf6db4fea23dea0d473f66f9232c142ed3c78a..c0f6ce2c100aa46d0e90a6d28846d66b7d82520a 100644 (file)
@@ -4,6 +4,7 @@ libNetwork_a_SOURCES = \
        protocol.cxx protocol.hxx \
        atlas.cxx atlas.hxx \
        garmin.cxx garmin.hxx \
+        httpd.cxx httpd.hxx \
        joyclient.cxx joyclient.hxx \
        native.cxx native.hxx \
        native_ctrls.cxx native_ctrls.hxx \