2003-11-12 10:06:18 +00:00
|
|
|
// jsclient.cxx -- simple UDP networked joystick client
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003 by Manuel Bessler and Stephen Lowry
|
|
|
|
//
|
|
|
|
// based on joyclient.cxx by Curtis Olson
|
|
|
|
// Copyright (C) 2000 Curtis L. Olson - curt@flightgear.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$
|
|
|
|
|
|
|
|
|
|
|
|
#include <simgear/debug/logstream.hxx>
|
|
|
|
#include <simgear/io/iochannel.hxx>
|
|
|
|
|
|
|
|
#include <Aircraft/aircraft.hxx>
|
2003-11-14 10:11:00 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2003-11-12 10:06:18 +00:00
|
|
|
|
|
|
|
#include "jsclient.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
FGJsClient::FGJsClient() {
|
2003-11-14 10:11:00 +00:00
|
|
|
active = fgHasNode("/jsclient"); // if exist, assume bindings are defined
|
|
|
|
SG_LOG( SG_IO, SG_INFO, "/jsclient exists, activating JsClient remote joystick support");
|
|
|
|
|
|
|
|
for( int i = 0; i < 4; ++i )
|
|
|
|
{
|
|
|
|
axisdef[i] = fgGetNode("/jsclient/axis", i);
|
|
|
|
if( axisdef[i] != NULL )
|
|
|
|
{
|
|
|
|
axisdefstr[i] = axisdef[i]->getStringValue();
|
|
|
|
SG_LOG( SG_IO, SG_INFO, "jsclient axis[" << i << "] mapped to property " << axisdefstr[i]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
axisdefstr[i] = "";
|
|
|
|
}
|
2003-11-12 10:06:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FGJsClient::~FGJsClient() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// open hailing frequencies
|
|
|
|
bool FGJsClient::open() {
|
|
|
|
if ( is_enabled() ) {
|
|
|
|
SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel "
|
|
|
|
<< "is already in use, ignoring" );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SGIOChannel *io = get_io_channel();
|
|
|
|
|
|
|
|
if ( ! io->open( get_direction() ) ) {
|
|
|
|
SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_enabled( true );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// process work for this port
|
|
|
|
bool FGJsClient::process() {
|
|
|
|
SGIOChannel *io = get_io_channel();
|
|
|
|
int length = 4+4+4+4+4+4;
|
|
|
|
|
2003-11-14 10:11:00 +00:00
|
|
|
// if( ! active )
|
|
|
|
// return true;
|
2003-11-12 10:06:18 +00:00
|
|
|
if ( get_direction() == SG_IO_OUT ) {
|
|
|
|
SG_LOG( SG_IO, SG_ALERT, "JsClient protocol is read only" );
|
|
|
|
return false;
|
|
|
|
} else if ( get_direction() == SG_IO_IN ) {
|
|
|
|
SG_LOG( SG_IO, SG_DEBUG, "Searching for data." );
|
|
|
|
if ( io->get_type() == sgFileType ) {
|
|
|
|
if ( io->read( (char *)(& buf), length ) == length ) {
|
|
|
|
SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
|
|
|
|
long int *msg;
|
|
|
|
msg = (long int *)buf;
|
2003-11-14 10:11:00 +00:00
|
|
|
for( int i = 0; i < 4; ++i )
|
|
|
|
{
|
|
|
|
axis[i] = ((double)msg[i] / 2147483647.0);
|
|
|
|
if ( fabs(axis[i]) < 0.05 )
|
|
|
|
axis[i] = 0.0;
|
|
|
|
if( axisdefstr[i].length() != 0 )
|
|
|
|
fgSetFloat(axisdefstr[i].c_str(), axis[i]);
|
2003-11-12 10:06:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while ( io->read( (char *)(& buf), length ) == length ) {
|
|
|
|
SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
|
|
|
|
long int *msg;
|
|
|
|
msg = (long int *)buf;
|
|
|
|
SG_LOG( SG_IO, SG_DEBUG, "ax0 = " << msg[0] << " ax1 = "
|
|
|
|
<< msg[1] << "ax2 = " << msg[2] << "ax3 = " << msg[3]);
|
2003-11-14 10:11:00 +00:00
|
|
|
for( int i = 0; i < 4; ++i )
|
|
|
|
{
|
|
|
|
axis[i] = ((double)msg[i] / 2147483647.0);
|
|
|
|
if ( fabs(axis[i]) < 0.05 )
|
|
|
|
axis[i] = 0.0;
|
|
|
|
if( axisdefstr[i].length() != 0 )
|
|
|
|
fgSetFloat(axisdefstr[i].c_str(), axis[i]);
|
2003-11-12 10:06:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// close the channel
|
|
|
|
bool FGJsClient::close() {
|
|
|
|
SGIOChannel *io = get_io_channel();
|
|
|
|
|
|
|
|
set_enabled( false );
|
|
|
|
|
|
|
|
if ( ! io->close() ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|