mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-12 20:08:48 +01:00
99 lines
3.2 KiB
C++
99 lines
3.2 KiB
C++
/**
|
|
******************************************************************************
|
|
*
|
|
* @file scopegadget.cpp
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
* @{
|
|
* @addtogroup ScopePlugin Scope Gadget Plugin
|
|
* @{
|
|
* @brief The scope Gadget, graphically plots the states of UAVObjects
|
|
*****************************************************************************/
|
|
/*
|
|
* 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 "scopeplugin.h"
|
|
#include "scopegadget.h"
|
|
#include "scopegadgetconfiguration.h"
|
|
#include "scopegadgetwidget.h"
|
|
|
|
#include <QtGui/qcolor.h>
|
|
|
|
ScopeGadget::ScopeGadget(QString classId, ScopeGadgetWidget *widget, QWidget *parent) :
|
|
IUAVGadget(classId, parent),
|
|
m_widget(widget),
|
|
configLoaded(false)
|
|
{
|
|
|
|
}
|
|
|
|
void ScopeGadget::loadConfiguration(IUAVGadgetConfiguration* config)
|
|
{
|
|
|
|
ScopeGadgetConfiguration *sgConfig = qobject_cast<ScopeGadgetConfiguration*>(config);
|
|
ScopeGadgetWidget* widget = qobject_cast<ScopeGadgetWidget*>(m_widget);
|
|
|
|
widget->setXWindowSize(sgConfig->dataSize());
|
|
widget->setRefreshInterval(sgConfig->refreshInterval());
|
|
|
|
if(sgConfig->plotType() == SequencialPlot )
|
|
widget->setupSequencialPlot();
|
|
else if(sgConfig->plotType() == ChronoPlot)
|
|
widget->setupChronoPlot();
|
|
// else if(sgConfig->plotType() == UAVObjectPlot)
|
|
// widget->setupUAVObjectPlot();
|
|
|
|
foreach (PlotCurveConfiguration* plotCurveConfig, sgConfig->plotCurveConfigs()) {
|
|
|
|
QString uavObject = plotCurveConfig->uavObject;
|
|
QString uavField = plotCurveConfig->uavField;
|
|
int scale = plotCurveConfig->yScalePower;
|
|
int interpolation = plotCurveConfig->yInterpolationSamples;
|
|
QRgb color = plotCurveConfig->color;
|
|
|
|
widget->addCurvePlot(
|
|
uavObject,
|
|
uavField,
|
|
scale,
|
|
interpolation,
|
|
QPen( QBrush(QColor(color),Qt::SolidPattern),
|
|
// (qreal)2,
|
|
(qreal)1,
|
|
Qt::SolidLine,
|
|
Qt::SquareCap,
|
|
Qt::BevelJoin)
|
|
);
|
|
}
|
|
|
|
widget->setLoggingEnabled(sgConfig->getLoggingEnabled());
|
|
widget->setLoggingNewFileOnConnect(sgConfig->getLoggingNewFileOnConnect());
|
|
widget->setLoggingPath(sgConfig->getLoggingPath());
|
|
|
|
widget->csvLoggingStop();
|
|
widget->csvLoggingSetName(sgConfig->name());
|
|
widget->csvLoggingStart();
|
|
|
|
}
|
|
|
|
/**
|
|
Scope gadget destructor: should delete the associated
|
|
scope gadget widget too!
|
|
*/
|
|
ScopeGadget::~ScopeGadget()
|
|
{
|
|
delete m_widget;
|
|
}
|