1 // pve.cxx -- "PVE" protocal class (for Provision Entertainment)
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.
24 #include <stdio.h> // sprintf()
26 #include <simgear/constants.h>
27 #include <simgear/debug/logstream.hxx>
28 #include <simgear/io/iochannel.hxx>
30 #include <FDM/flight.hxx>
43 // "PVE" (ProVision Entertainment) output format (for some sort of
46 // Outputs a 5-byte data packet defined as follows:
48 // First bite: ASCII character "P" ( 0x50 or 80 decimal )
49 // Second byte: "roll" value (1-255) 1 being 0* and 255 being 359*
50 // Third byte: "pitch" value (1-255) 1 being 0* and 255 being 359*
51 // Fourth byte: "heave" value (or vertical acceleration?)
53 bool FGPVE::gen_message() {
54 // cout << "generating pve message" << endl;
55 FGInterface *f = cur_fdm_state;
57 // get roll and pitch, convert to degrees
58 double roll_deg = f->get_Phi() * SGD_RADIANS_TO_DEGREES;
59 while ( roll_deg <= -180.0 ) {
62 while ( roll_deg > 180.0 ) {
66 double pitch_deg = f->get_Theta() * SGD_RADIANS_TO_DEGREES;
67 while ( pitch_deg <= -180.0 ) {
70 while ( pitch_deg > 180.0 ) {
74 short int heave = (int)(f->get_W_body() * 128.0);
76 // scale roll and pitch to output format (1 - 255)
77 // straight && level == (128, 128)
79 short int roll = (int)(roll_deg * 32768 / 180.0);
80 short int pitch = (int)(pitch_deg * 32768 / 180.0);
82 unsigned char roll_b1, roll_b2, pitch_b1, pitch_b2, heave_b1, heave_b2;
84 roll_b2 = roll & 0x00ff;
85 pitch_b1 = pitch >> 8;
86 pitch_b2 = pitch & 0x00ff;
87 heave_b1 = heave >> 8;
88 heave_b2 = heave & 0x00ff;
90 sprintf( buf, "p%c%c%c%c%c%c\n",
91 roll_b1, roll_b2, pitch_b1, pitch_b2, heave_b1, heave_b2 );
94 // printf( "p [ %u %u ] [ %u %u ] [ %u %u ]\n",
95 // roll_b1, roll_b2, pitch_b1, pitch_b2, heave_b1, heave_b2 );
97 SG_LOG( SG_IO, SG_INFO, "roll=" << roll << " pitch=" << pitch <<
105 bool FGPVE::parse_message() {
106 SG_LOG( SG_IO, SG_ALERT, "PVE input not supported" );
112 // process work for this port
113 bool FGPVE::process() {
114 SGIOChannel *io = get_io_channel();
116 if ( get_direction() == SG_IO_OUT ) {
118 if ( ! io->write( buf, length ) ) {
119 SG_LOG( SG_IO, SG_ALERT, "Error writing data." );
122 } else if ( get_direction() == SG_IO_IN ) {
123 SG_LOG( SG_IO, SG_ALERT, "in direction not supported for RUL." );