]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/native.cxx
SG_ namespace
[flightgear.git] / src / Network / native.cxx
index b66d33b7a83d6a8c0ea21a69a57c880ee20532d3..e673f6438f8782e85a5e4acfa1de41f239b221ef 100644 (file)
 
 
 #include <simgear/debug/logstream.hxx>
-#include <simgear/math/fg_geodesy.hxx>
+#include <simgear/io/iochannel.hxx>
 
-#include <Time/fg_time.hxx>
-
-#include "iochannel.hxx"
 #include "native.hxx"
 
 
@@ -45,7 +42,7 @@ bool FGNative::open() {
        return false;
     }
 
-    FGIOChannel *io = get_io_channel();
+    SGIOChannel *io = get_io_channel();
 
     if ( ! io->open( get_direction() ) ) {
        FG_LOG( FG_IO, FG_ALERT, "Error opening channel communication layer." );
@@ -60,20 +57,27 @@ bool FGNative::open() {
 
 // process work for this port
 bool FGNative::process() {
-    FGIOChannel *io = get_io_channel();
+    SGIOChannel *io = get_io_channel();
     int length = sizeof(*cur_fdm_state);
 
-    if ( get_direction() == out ) {
+    if ( get_direction() == SG_IO_OUT ) {
        // cout << "size of cur_fdm_state = " << length << endl;
        buf = *cur_fdm_state;
        if ( ! io->write( (char *)(& buf), length ) ) {
            FG_LOG( FG_IO, FG_ALERT, "Error writing data." );
            return false;
        }
-    } else if ( get_direction() == in ) {
-       while ( io->read( (char *)(& buf), length ) == length ) {
-           FG_LOG( FG_IO, FG_ALERT, "Success reading data." );
-           *cur_fdm_state = buf;
+    } else if ( get_direction() == SG_IO_IN ) {
+       if ( io->get_type() == sgFileType ) {
+           if ( io->read( (char *)(& buf), length ) == length ) {
+               FG_LOG( FG_IO, FG_DEBUG, "Success reading data." );
+               *cur_fdm_state = buf;
+           }
+       } else {
+           while ( io->read( (char *)(& buf), length ) == length ) {
+               FG_LOG( FG_IO, FG_DEBUG, "Success reading data." );
+               *cur_fdm_state = buf;
+           }
        }
     }
 
@@ -83,7 +87,7 @@ bool FGNative::process() {
 
 // close the channel
 bool FGNative::close() {
-    FGIOChannel *io = get_io_channel();
+    SGIOChannel *io = get_io_channel();
 
     set_enabled( false );