1999-11-19 03:02:49 +00:00
|
|
|
// pve.cxx -- "PVE" protocal class (for Provision Entertainment)
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
2000-07-06 22:13:24 +00:00
|
|
|
#include <stdio.h> // sprintf()
|
2000-09-27 20:16:22 +00:00
|
|
|
|
|
|
|
#include <simgear/constants.h>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
2000-07-11 20:40:12 +00:00
|
|
|
#include <simgear/io/iochannel.hxx>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
1999-11-19 03:02:49 +00:00
|
|
|
#include <FDM/flight.hxx>
|
|
|
|
|
|
|
|
#include "pve.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
FGPVE::FGPVE() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FGPVE::~FGPVE() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-19 23:19:51 +00:00
|
|
|
// "PVE" (ProVision Entertainment) output format (for some sort of
|
|
|
|
// motion platform)
|
|
|
|
//
|
|
|
|
// Outputs a 5-byte data packet defined as follows:
|
|
|
|
//
|
|
|
|
// First bite: ASCII character "P" ( 0x50 or 80 decimal )
|
|
|
|
// Second byte: "roll" value (1-255) 1 being 0* and 255 being 359*
|
|
|
|
// Third byte: "pitch" value (1-255) 1 being 0* and 255 being 359*
|
|
|
|
// Fourth byte: "heave" value (or vertical acceleration?)
|
|
|
|
|
1999-11-19 03:02:49 +00:00
|
|
|
bool FGPVE::gen_message() {
|
|
|
|
// cout << "generating pve message" << endl;
|
|
|
|
FGInterface *f = cur_fdm_state;
|
|
|
|
|
|
|
|
// get roll and pitch, convert to degrees
|
2001-03-24 04:48:44 +00:00
|
|
|
double roll_deg = f->get_Phi() * SGD_RADIANS_TO_DEGREES;
|
1999-11-19 03:02:49 +00:00
|
|
|
while ( roll_deg <= -180.0 ) {
|
|
|
|
roll_deg += 360.0;
|
|
|
|
}
|
|
|
|
while ( roll_deg > 180.0 ) {
|
|
|
|
roll_deg -= 360.0;
|
|
|
|
}
|
|
|
|
|
2001-03-24 04:48:44 +00:00
|
|
|
double pitch_deg = f->get_Theta() * SGD_RADIANS_TO_DEGREES;
|
1999-11-19 03:02:49 +00:00
|
|
|
while ( pitch_deg <= -180.0 ) {
|
|
|
|
pitch_deg += 360.0;
|
|
|
|
}
|
|
|
|
while ( pitch_deg > 180.0 ) {
|
|
|
|
pitch_deg -= 360.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
short int heave = (int)(f->get_W_body() * 128.0);
|
|
|
|
|
|
|
|
// scale roll and pitch to output format (1 - 255)
|
|
|
|
// straight && level == (128, 128)
|
|
|
|
|
|
|
|
short int roll = (int)(roll_deg * 32768 / 180.0);
|
|
|
|
short int pitch = (int)(pitch_deg * 32768 / 180.0);
|
|
|
|
|
|
|
|
unsigned char roll_b1, roll_b2, pitch_b1, pitch_b2, heave_b1, heave_b2;
|
|
|
|
roll_b1 = roll >> 8;
|
|
|
|
roll_b2 = roll & 0x00ff;
|
|
|
|
pitch_b1 = pitch >> 8;
|
|
|
|
pitch_b2 = pitch & 0x00ff;
|
|
|
|
heave_b1 = heave >> 8;
|
|
|
|
heave_b2 = heave & 0x00ff;
|
|
|
|
|
|
|
|
sprintf( buf, "p%c%c%c%c%c%c\n",
|
|
|
|
roll_b1, roll_b2, pitch_b1, pitch_b2, heave_b1, heave_b2 );
|
|
|
|
length = 8;
|
|
|
|
|
|
|
|
// printf( "p [ %u %u ] [ %u %u ] [ %u %u ]\n",
|
|
|
|
// roll_b1, roll_b2, pitch_b1, pitch_b2, heave_b1, heave_b2 );
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_IO, SG_INFO, "roll=" << roll << " pitch=" << pitch <<
|
1999-11-19 03:02:49 +00:00
|
|
|
" heave=" << heave );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// parse RUL message
|
|
|
|
bool FGPVE::parse_message() {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_IO, SG_ALERT, "PVE input not supported" );
|
1999-11-19 03:02:49 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// process work for this port
|
|
|
|
bool FGPVE::process() {
|
2000-07-11 20:40:12 +00:00
|
|
|
SGIOChannel *io = get_io_channel();
|
1999-11-19 03:02:49 +00:00
|
|
|
|
2000-07-11 20:40:12 +00:00
|
|
|
if ( get_direction() == SG_IO_OUT ) {
|
1999-11-19 03:02:49 +00:00
|
|
|
gen_message();
|
|
|
|
if ( ! io->write( buf, length ) ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_IO, SG_ALERT, "Error writing data." );
|
1999-11-19 03:02:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2000-07-11 20:40:12 +00:00
|
|
|
} else if ( get_direction() == SG_IO_IN ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_IO, SG_ALERT, "in direction not supported for RUL." );
|
1999-11-19 03:02:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|