]> git.mxchange.org Git - flightgear.git/blob - src/Network/protocol.cxx
Create TimeManager subsystem, and collect the time related code out of main.cxx and...
[flightgear.git] / src / Network / protocol.cxx
1 // protocol.cxx -- High level protocal class
2 //
3 // Written by Curtis Olson, started November 1999.
4 //
5 // Copyright (C) 1999  Curtis L. Olson - http://www.flightgear.org/~curt
6 //
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.
11 //
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.
16 //
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #include <simgear/debug/logstream.hxx>
25 #include <simgear/io/iochannel.hxx>
26
27 #include "protocol.hxx"
28
29
30 FGProtocol::FGProtocol() :
31     hz(0.0),
32     count_down(0.0),
33     count(0),
34     enabled(false)
35 {
36 }
37
38
39 FGProtocol::~FGProtocol() {
40 }
41
42
43 // standard I/O channel open routine
44 bool FGProtocol::open() {
45     if ( is_enabled() ) {
46         SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel " 
47                 << "is already in use, ignoring" );
48         return false;
49     }
50
51     SGIOChannel *io = get_io_channel();
52
53     if ( ! io->open( get_direction() ) ) {
54         SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
55         return false;
56     }
57
58     set_enabled( true );
59
60     return true;
61 }
62
63
64 // dummy process routine
65 bool FGProtocol::process() {
66     SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::process()" );
67     return false;
68 }
69
70
71 // dummy close routine
72 bool FGProtocol::close() {
73     SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::close()" );
74     return false;
75 }
76
77
78 // standard I/O channel close routine
79 bool FGProtocol::gen_message() {
80     SGIOChannel *io = get_io_channel();
81
82     set_enabled( false );
83
84     if ( ! io->close() ) {
85         return false;
86     }
87
88     return true;
89 }
90
91
92 // dummy close routine
93 bool FGProtocol::parse_message() {
94     SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::close()" );
95     return false;
96 }
97
98
99 void FGProtocol::set_direction( const string& d ) {
100     if ( d == "in" ) {
101         dir = SG_IO_IN;
102     } else if ( d == "out" ) {
103         dir = SG_IO_OUT;
104     } else if ( d == "bi" ) {
105         dir = SG_IO_BI;
106     } else {
107         dir = SG_IO_NONE;
108     }
109 }