1999-11-19 03:02:49 +00:00
|
|
|
// rul.hxx -- "RUL" protocal class (for some sort of motion platform
|
|
|
|
// some guy was building)
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started November 1999.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 1999 Curtis L. Olson - http://www.flightgear.org/~curt
|
1999-11-19 03:02:49 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
1999-11-19 03:02:49 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _FG_RUL_HXX
|
|
|
|
#define _FG_RUL_HXX
|
|
|
|
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/compiler.h>
|
1999-11-19 03:02:49 +00:00
|
|
|
|
2008-07-25 18:38:29 +00:00
|
|
|
#include <string>
|
1999-11-19 03:02:49 +00:00
|
|
|
|
|
|
|
#include "protocol.hxx"
|
|
|
|
|
2008-07-27 16:25:13 +00:00
|
|
|
using std::string;
|
1999-11-19 03:02:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FGRUL : public FGProtocol {
|
|
|
|
|
|
|
|
char buf[ 10 ];
|
|
|
|
int length;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FGRUL();
|
|
|
|
~FGRUL();
|
|
|
|
|
|
|
|
bool gen_message();
|
|
|
|
bool parse_message();
|
|
|
|
|
|
|
|
// process work for this port
|
|
|
|
bool process();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _FG_RUL_HXX
|
|
|
|
|
|
|
|
|