]> git.mxchange.org Git - flightgear.git/blob - src/Network/protocol.cxx
NavDisplay - custom symbol support enabled.
[flightgear.git] / src / Network / protocol.cxx
1 // protocol.cxx -- High level protocol 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     dir(SG_IO_NONE),
35     enabled(false),
36     io(NULL)
37 {
38 }
39
40
41 FGProtocol::~FGProtocol() {
42     delete io;
43 }
44
45
46 // standard I/O channel open routine
47 bool FGProtocol::open() {
48     if ( is_enabled() ) {
49         SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel " 
50                 << "is already in use, ignoring" );
51         return false;
52     }
53
54     SGIOChannel *io = get_io_channel();
55
56     if ( ! io->open( get_direction() ) ) {
57         SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
58         return false;
59     }
60
61     set_enabled( true );
62
63     return true;
64 }
65
66
67 // dummy process routine
68 bool FGProtocol::process() {
69     SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::process()" );
70     return false;
71 }
72
73
74 // dummy close routine
75 bool FGProtocol::close() {
76     SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::close()" );
77     return false;
78 }
79
80
81 // standard I/O channel close routine
82 bool FGProtocol::gen_message() {
83     SGIOChannel *io = get_io_channel();
84
85     set_enabled( false );
86
87     if ( ! io->close() ) {
88         return false;
89     }
90
91     return true;
92 }
93
94
95 // dummy close routine
96 bool FGProtocol::parse_message() {
97     SG_LOG( SG_IO, SG_INFO, "dummy FGProtocol::close()" );
98     return false;
99 }
100
101
102 void FGProtocol::set_direction( const string& d ) {
103     if ( d == "in" ) {
104         dir = SG_IO_IN;
105     } else if ( d == "out" ) {
106         dir = SG_IO_OUT;
107     } else if ( d == "bi" ) {
108         dir = SG_IO_BI;
109     } else {
110         dir = SG_IO_NONE;
111     }
112 }