2010-07-19 08:20:13 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file GCSControlgadget.cpp
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
|
|
* @{
|
|
|
|
* @addtogroup GCSControlGadgetPlugin GCSControl Gadget Plugin
|
|
|
|
* @{
|
|
|
|
* @brief A gadget to control the UAV, either from the keyboard or a joystick
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* 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 3 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.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
#include "gcscontrolgadget.h"
|
|
|
|
#include "gcscontrolgadgetwidget.h"
|
2010-11-07 23:16:45 +01:00
|
|
|
#include "gcscontrolgadgetconfiguration.h"
|
2010-07-19 08:20:13 +02:00
|
|
|
#include "extensionsystem/pluginmanager.h"
|
|
|
|
#include "uavobjects/uavobjectmanager.h"
|
|
|
|
#include "uavobjects/uavobject.h"
|
2010-11-07 23:16:45 +01:00
|
|
|
#include <QDebug>
|
2010-11-05 15:28:18 +01:00
|
|
|
|
|
|
|
#define JOYSTICK_UPDATE_RATE 50
|
2010-07-19 08:20:13 +02:00
|
|
|
|
2010-11-07 23:16:45 +01:00
|
|
|
GCSControlGadget::GCSControlGadget(QString classId, GCSControlGadgetWidget *widget, QWidget *parent, QObject *plugin) :
|
2010-07-19 08:20:13 +02:00
|
|
|
IUAVGadget(classId, parent),
|
|
|
|
m_widget(widget)
|
|
|
|
{
|
2010-09-27 21:35:25 +02:00
|
|
|
connect(getManualControlCommand(),SIGNAL(objectUpdated(UAVObject*)),this,SLOT(manualControlCommandUpdated(UAVObject*)));
|
|
|
|
connect(widget,SIGNAL(sticksChanged(double,double,double,double)),this,SLOT(sticksChangedLocally(double,double,double,double)));
|
|
|
|
connect(this,SIGNAL(sticksChangedRemotely(double,double,double,double)),widget,SLOT(updateSticks(double,double,double,double)));
|
|
|
|
|
|
|
|
manualControlCommandUpdated(getManualControlCommand());
|
2010-09-29 05:59:03 +02:00
|
|
|
|
2010-11-07 23:16:45 +01:00
|
|
|
joystickTime.start();
|
|
|
|
GCSControlPlugin *pl = dynamic_cast<GCSControlPlugin*>(plugin);
|
|
|
|
connect(pl->sdlGamepad,SIGNAL(gamepads(quint8)),this,SLOT(gamepads(quint8)));
|
|
|
|
connect(pl->sdlGamepad,SIGNAL(buttonState(ButtonNumber,bool)),this,SLOT(buttonState(ButtonNumber,bool)));
|
|
|
|
connect(pl->sdlGamepad,SIGNAL(axesValues(QListInt16)),this,SLOT(axesValues(QListInt16)));
|
2010-09-29 05:59:03 +02:00
|
|
|
|
2010-07-19 08:20:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
GCSControlGadget::~GCSControlGadget()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void GCSControlGadget::loadConfiguration(IUAVGadgetConfiguration* config)
|
|
|
|
{
|
2010-11-07 23:16:45 +01:00
|
|
|
GCSControlGadgetConfiguration *GCSControlConfig = qobject_cast< GCSControlGadgetConfiguration*>(config);
|
|
|
|
|
|
|
|
QList<int> ql = GCSControlConfig->getChannelsMapping();
|
|
|
|
rollChannel = ql.at(0);
|
|
|
|
pitchChannel = ql.at(1);
|
|
|
|
yawChannel = ql.at(2);
|
|
|
|
throttleChannel = ql.at(3);
|
|
|
|
|
|
|
|
controlsMode = GCSControlConfig->getControlsMode();
|
2010-07-19 08:20:13 +02:00
|
|
|
|
2010-11-09 06:50:16 +01:00
|
|
|
int i;
|
|
|
|
for (i=0;i<8;i++)
|
|
|
|
{
|
|
|
|
buttonSettings[i].ActionID=GCSControlConfig->getbuttonSettings(i).ActionID;
|
|
|
|
buttonSettings[i].FunctionID=GCSControlConfig->getbuttonSettings(i).FunctionID;
|
|
|
|
buttonSettings[i].Amount=GCSControlConfig->getbuttonSettings(i).Amount;
|
|
|
|
}
|
|
|
|
|
2010-07-19 08:20:13 +02:00
|
|
|
}
|
2010-09-27 21:35:25 +02:00
|
|
|
|
|
|
|
ManualControlCommand* GCSControlGadget::getManualControlCommand() {
|
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
|
|
|
UAVObjectManager *objManager = pm->getObject<UAVObjectManager>();
|
|
|
|
return dynamic_cast<ManualControlCommand*>( objManager->getObject(QString("ManualControlCommand")) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void GCSControlGadget::manualControlCommandUpdated(UAVObject * obj) {
|
|
|
|
double roll = obj->getField("Roll")->getDouble();
|
|
|
|
double pitch = obj->getField("Pitch")->getDouble();
|
|
|
|
double yaw = obj->getField("Yaw")->getDouble();
|
|
|
|
double throttle = obj->getField("Throttle")->getDouble();
|
2010-11-07 23:16:45 +01:00
|
|
|
// Remap RPYT to left X/Y and right X/Y depending on mode
|
|
|
|
switch (controlsMode) {
|
|
|
|
case 1:
|
|
|
|
// Mode 1: LeftX = Yaw, LeftY = Pitch, RightX = Roll, RightY = Throttle
|
|
|
|
emit sticksChangedRemotely(yaw,pitch,roll,throttle);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
// Mode 2: LeftX = Yaw, LeftY = Throttle, RightX = Roll, RightY = Pitch
|
|
|
|
emit sticksChangedRemotely(yaw,throttle,roll,pitch);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
// Mode 3: LeftX = Roll, LeftY = Pitch, RightX = Yaw, RightY = Throttle
|
|
|
|
emit sticksChangedRemotely(roll,pitch,yaw,throttle);
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
// Mode 4: LeftX = Roll, LeftY = Throttle, RightX = Yaw, RightY = Pitch;
|
|
|
|
emit sticksChangedRemotely(roll,throttle,yaw,pitch);
|
|
|
|
break;
|
|
|
|
}
|
2010-09-27 21:35:25 +02:00
|
|
|
}
|
|
|
|
|
2010-11-07 23:16:45 +01:00
|
|
|
/**
|
|
|
|
Update the manual commands - maps depending on mode
|
|
|
|
*/
|
2010-09-27 21:35:25 +02:00
|
|
|
void GCSControlGadget::sticksChangedLocally(double leftX, double leftY, double rightX, double rightY) {
|
|
|
|
ManualControlCommand * obj = getManualControlCommand();
|
2010-10-03 06:34:09 +02:00
|
|
|
double oldRoll = obj->getField("Roll")->getDouble();
|
|
|
|
double oldPitch = obj->getField("Pitch")->getDouble();
|
|
|
|
double oldYaw = obj->getField("Yaw")->getDouble();
|
|
|
|
double oldThrottle = obj->getField("Throttle")->getDouble();
|
|
|
|
|
2010-11-07 23:16:45 +01:00
|
|
|
double newRoll;
|
|
|
|
double newPitch;
|
|
|
|
double newYaw;
|
|
|
|
double newThrottle;
|
|
|
|
|
|
|
|
// Remap left X/Y and right X/Y to RPYT depending on mode
|
|
|
|
switch (controlsMode) {
|
|
|
|
case 1:
|
|
|
|
// Mode 1: LeftX = Yaw, LeftY = Pitch, RightX = Roll, RightY = Throttle
|
|
|
|
newRoll = rightX;
|
|
|
|
newPitch = leftY;
|
|
|
|
newYaw = leftX;
|
|
|
|
newThrottle = rightY;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
// Mode 2: LeftX = Yaw, LeftY = Throttle, RightX = Roll, RightY = Pitch
|
|
|
|
newRoll = rightX;
|
|
|
|
newPitch = rightY;
|
|
|
|
newYaw = leftX;
|
|
|
|
newThrottle = leftY;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
// Mode 3: LeftX = Roll, LeftY = Pitch, RightX = Yaw, RightY = Throttle
|
|
|
|
newRoll = leftX;
|
|
|
|
newPitch = leftY;
|
|
|
|
newYaw = rightX;
|
|
|
|
newThrottle = rightY;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
// Mode 4: LeftX = Roll, LeftY = Throttle, RightX = Yaw, RightY = Pitch;
|
|
|
|
newRoll = leftX;
|
|
|
|
newPitch = rightY;
|
|
|
|
newYaw = rightX;
|
|
|
|
newThrottle = leftY;
|
|
|
|
break;
|
|
|
|
}
|
2010-10-03 06:34:09 +02:00
|
|
|
|
2010-11-09 06:50:16 +01:00
|
|
|
//check if buttons have control over this axis... if so don't update it
|
|
|
|
int buttonRollControl=0;
|
|
|
|
int buttonPitchControl=0;
|
|
|
|
int buttonYawControl=0;
|
|
|
|
int buttonThrottleControl=0;
|
|
|
|
for (int i=0;i<8;i++)
|
|
|
|
{
|
|
|
|
if ((buttonSettings[i].FunctionID==1)&&((buttonSettings[i].ActionID==1)||(buttonSettings[i].ActionID==2)))buttonRollControl=1;
|
|
|
|
if ((buttonSettings[i].FunctionID==2)&&((buttonSettings[i].ActionID==1)||(buttonSettings[i].ActionID==2)))buttonPitchControl=1;
|
|
|
|
if ((buttonSettings[i].FunctionID==3)&&((buttonSettings[i].ActionID==1)||(buttonSettings[i].ActionID==2)))buttonYawControl=1;
|
|
|
|
if ((buttonSettings[i].FunctionID==4)&&((buttonSettings[i].ActionID==1)||(buttonSettings[i].ActionID==2)))buttonThrottleControl=1;
|
|
|
|
}
|
|
|
|
|
2010-10-03 06:34:09 +02:00
|
|
|
if((newThrottle != oldThrottle) || (newPitch != oldPitch) || (newYaw != oldYaw) || (newRoll != oldRoll)) {
|
2010-11-09 06:50:16 +01:00
|
|
|
if (buttonRollControl==0)obj->getField("Roll")->setDouble(newRoll);
|
|
|
|
if (buttonPitchControl==0)obj->getField("Pitch")->setDouble(newPitch);
|
|
|
|
if (buttonYawControl==0)obj->getField("Yaw")->setDouble(newYaw);
|
|
|
|
if (buttonThrottleControl==0)obj->getField("Throttle")->setDouble(newThrottle);
|
2010-10-03 06:34:09 +02:00
|
|
|
obj->updated();
|
|
|
|
}
|
2010-09-27 21:35:25 +02:00
|
|
|
}
|
2010-09-29 05:59:03 +02:00
|
|
|
|
|
|
|
void GCSControlGadget::gamepads(quint8 count)
|
|
|
|
{
|
2010-11-07 23:16:45 +01:00
|
|
|
// sdlGamepad.setGamepad(0);
|
|
|
|
// sdlGamepad.setTickRate(JOYSTICK_UPDATE_RATE);
|
2010-09-29 05:59:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void GCSControlGadget::buttonState(ButtonNumber number, bool pressed)
|
|
|
|
{
|
2010-11-09 06:50:16 +01:00
|
|
|
int state;
|
|
|
|
if ((buttonSettings[number].ActionID>0)&&(buttonSettings[number].FunctionID>0)&&(pressed))
|
|
|
|
{//this button is configured
|
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
|
|
|
UAVObjectManager *objManager = pm->getObject<UAVObjectManager>();
|
|
|
|
UAVDataObject* obj = dynamic_cast<UAVDataObject*>( objManager->getObject(QString("ManualControlCommand")) );
|
|
|
|
|
2010-12-09 07:54:33 +01:00
|
|
|
switch (buttonSettings[number].ActionID)
|
2010-11-09 06:50:16 +01:00
|
|
|
{
|
2010-12-09 07:54:33 +01:00
|
|
|
case 1://increase
|
|
|
|
switch (buttonSettings[number].FunctionID)
|
|
|
|
{
|
|
|
|
case 1://Roll
|
|
|
|
obj->getField("Roll")->setValue(bound(obj->getField("Roll")->getValue().toDouble()+buttonSettings[number].Amount));
|
|
|
|
break;
|
|
|
|
case 2://Pitch
|
|
|
|
obj->getField("Pitch")->setValue(bound(obj->getField("Pitch")->getValue().toDouble()+buttonSettings[number].Amount));
|
|
|
|
break;
|
|
|
|
case 3://Yaw
|
|
|
|
obj->getField("Yaw")->setValue(wrap(obj->getField("Yaw")->getValue().toDouble()+buttonSettings[number].Amount));
|
|
|
|
break;
|
|
|
|
case 4://Throttle
|
|
|
|
obj->getField("Throttle")->setValue(bound(obj->getField("Throttle")->getValue().toDouble()+buttonSettings[number].Amount));
|
|
|
|
break;
|
2010-11-09 06:50:16 +01:00
|
|
|
}
|
|
|
|
break;
|
2010-12-09 07:54:33 +01:00
|
|
|
case 2://decrease
|
|
|
|
switch (buttonSettings[number].FunctionID)
|
|
|
|
{
|
|
|
|
case 1://Roll
|
|
|
|
obj->getField("Roll")->setValue(bound(obj->getField("Roll")->getValue().toDouble()-buttonSettings[number].Amount));
|
|
|
|
break;
|
|
|
|
case 2://Pitch
|
|
|
|
obj->getField("Pitch")->setValue(bound(obj->getField("Pitch")->getValue().toDouble()-buttonSettings[number].Amount));
|
|
|
|
break;
|
|
|
|
case 3://Yaw
|
|
|
|
obj->getField("Yaw")->setValue(wrap(obj->getField("Yaw")->getValue().toDouble()-buttonSettings[number].Amount));
|
|
|
|
break;
|
|
|
|
case 4://Throttle
|
|
|
|
obj->getField("Throttle")->setValue(bound(obj->getField("Throttle")->getValue().toDouble()-buttonSettings[number].Amount));
|
|
|
|
break;
|
2010-11-09 06:50:16 +01:00
|
|
|
}
|
|
|
|
break;
|
2010-12-09 07:54:33 +01:00
|
|
|
case 3://toggle
|
|
|
|
switch (buttonSettings[number].FunctionID)
|
|
|
|
{
|
|
|
|
case 1://Armed
|
|
|
|
if(obj->getField("Armed")->getValue().toString().compare("True")==0)
|
|
|
|
{
|
|
|
|
obj->getField("Armed")->setValue("False");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
obj->getField("Armed")->setValue("True");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2://GCS Control
|
|
|
|
break;
|
2010-11-09 06:50:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2010-12-09 07:54:33 +01:00
|
|
|
|
|
|
|
|
2010-11-09 06:50:16 +01:00
|
|
|
obj->updated();
|
|
|
|
}
|
|
|
|
//buttonSettings[number].ActionID NIDT
|
|
|
|
//buttonSettings[number].FunctionID -RPYTAC
|
|
|
|
//buttonSettings[number].Amount
|
2010-09-29 05:59:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void GCSControlGadget::axesValues(QListInt16 values)
|
|
|
|
{
|
2010-11-07 23:16:45 +01:00
|
|
|
int chMax = values.length();
|
|
|
|
if (rollChannel > chMax || pitchChannel > chMax ||
|
|
|
|
yawChannel > chMax || throttleChannel > chMax ) {
|
|
|
|
qDebug() << "GCSControl: configuration is inconsistent with current joystick! Aborting update.";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
double rValue = (rollChannel > -1) ? values[rollChannel] : 0;
|
|
|
|
double pValue = (pitchChannel > -1) ? values[pitchChannel] : 0;
|
|
|
|
double yValue = (yawChannel > -1) ? values[yawChannel] : 0;
|
|
|
|
double tValue = (throttleChannel > -1) ? values[throttleChannel] : 0;
|
2010-09-29 05:59:03 +02:00
|
|
|
double max = 32767;
|
2010-11-05 15:28:18 +01:00
|
|
|
if(joystickTime.elapsed() > JOYSTICK_UPDATE_RATE) {
|
|
|
|
joystickTime.restart();
|
2010-11-07 23:16:45 +01:00
|
|
|
// Remap RPYT to left X/Y and right X/Y depending on mode
|
|
|
|
// Mode 1: LeftX = Yaw, LeftY = Pitch, RightX = Roll, RightY = Throttle
|
|
|
|
// Mode 2: LeftX = Yaw, LeftY = THrottle, RightX = Roll, RightY = Pitch
|
|
|
|
// Mode 3: LeftX = Roll, LeftY = Pitch, RightX = Yaw, RightY = Throttle
|
|
|
|
// Mode 4: LeftX = Roll, LeftY = Throttle, RightX = Yaw, RightY = Pitch;
|
|
|
|
switch (controlsMode) {
|
|
|
|
case 1:
|
|
|
|
sticksChangedLocally(yValue/max,-pValue/max,rValue/max,-tValue/max);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
sticksChangedLocally(yValue/max,-tValue/max,rValue/max,-pValue/max);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
sticksChangedLocally(rValue/max,-pValue/max,yValue/max,-tValue/max);
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
sticksChangedLocally(rValue/max,-tValue/max,yValue/max,-pValue/max);
|
|
|
|
break;
|
|
|
|
}
|
2010-11-05 15:28:18 +01:00
|
|
|
}
|
2010-09-29 05:59:03 +02:00
|
|
|
}
|
2010-12-09 05:50:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
double GCSControlGadget::bound(double input)
|
|
|
|
{
|
|
|
|
if (input > 1.0)return 1.0;
|
|
|
|
if (input <-1.0)return -1.0;
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
|
|
|
|
double GCSControlGadget::wrap(double input)
|
|
|
|
{
|
|
|
|
while (input > 1.0)input -= 2.0;
|
|
|
|
while (input <-1.0)input += 2.0;
|
|
|
|
return input;
|
|
|
|
}
|