2000-05-30 17:01:09 +00:00
|
|
|
// ray.hxx -- "RayWoodworth" chair protocol via CIO-DDA06/Jr driver
|
|
|
|
//
|
|
|
|
// Written by Alexander Perry, May 2000
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000 Alexander Perry, alex.perry@ieee.org
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _FG_RAY_HXX
|
|
|
|
#define _FG_RAY_HXX
|
|
|
|
|
|
|
|
|
2000-07-06 22:13:24 +00:00
|
|
|
#include <stdio.h> // FILE
|
|
|
|
|
2000-05-30 17:01:09 +00:00
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
|
|
|
#include STL_STRING
|
|
|
|
|
|
|
|
#include "protocol.hxx"
|
|
|
|
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_USING_STD(string);
|
2000-05-30 17:01:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FGRAY : public FGProtocol {
|
|
|
|
|
|
|
|
char buf[ 20 ];
|
|
|
|
int length;
|
|
|
|
|
|
|
|
double chair_heading;
|
|
|
|
double chair_rising;
|
|
|
|
double chair_height;
|
|
|
|
double chair_vertical[2];
|
2000-06-15 22:31:40 +00:00
|
|
|
FILE *chair_FILE;
|
2000-05-30 17:01:09 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FGRAY();
|
|
|
|
~FGRAY();
|
|
|
|
|
|
|
|
bool gen_message();
|
|
|
|
bool parse_message();
|
|
|
|
|
|
|
|
// process work for this port
|
|
|
|
bool process();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _FG_RAY_HXX
|