1 // protocol.hxx -- High level protocal class
3 // Written by Curtis Olson, started November 1999.
5 // Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org
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.
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.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #include "Include/compiler.h"
37 #define FG_MAX_MSG_SIZE 16384
39 // forward declaration
61 // string protocol_str;
63 // char buf[FG_MAX_MSG_SIZE];
73 virtual ~FGProtocol();
76 virtual bool process();
79 inline fgProtocolDir get_direction() const { return dir; }
80 inline void set_direction( const string& d ) {
83 } else if ( d == "out" ) {
85 } else if ( d == "bi" ) {
92 inline double get_hz() const { return hz; }
93 inline void set_hz( double t ) { hz = t; }
94 inline int get_count_down() const { return count_down; }
95 inline void set_count_down( int c ) { count_down = c; }
96 inline void dec_count_down( int c ) { count_down -= c; }
98 virtual bool gen_message();
99 virtual bool parse_message();
101 // inline string get_protocol() const { return protocol_str; }
102 // inline void set_protocol( const string& str ) { protocol_str = str; }
104 // inline char *get_buf() { return buf; }
105 // inline int get_length() const { return length; }
106 // inline void set_length( int l ) { length = l; }
108 inline bool is_enabled() const { return enabled; }
109 inline void set_enabled( const bool b ) { enabled = b; }
111 inline FGIOChannel *get_io_channel() const { return io; }
112 inline void set_io_channel( FGIOChannel *c ) { io = c; }
116 typedef vector < FGProtocol * > io_container;
117 typedef io_container::iterator io_iterator;
118 typedef io_container::const_iterator const_io_iterator;
121 #endif // _PROTOCOL_HXX