mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 16:39:57 +00:00
.. the background was set from the ride plot background. we now have a separate configuration option for this.
148 lines
3.7 KiB
C++
148 lines
3.7 KiB
C++
/*
|
|
* Copyright (c) 2010 Mark Liversedge (liversedge@gmail.com)
|
|
*
|
|
* 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., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
|
|
#include "SpinScanPlotWindow.h"
|
|
#include "Context.h"
|
|
|
|
SpinScanPlotWindow::SpinScanPlotWindow(Context *context) :
|
|
GcWindow(context), context(context), active(false)
|
|
{
|
|
setContentsMargins(0,0,0,0);
|
|
setProperty("color", GColor(CTRAINPLOTBACKGROUND));
|
|
|
|
// setup controls
|
|
QWidget *c = new QWidget;
|
|
QVBoxLayout *cl = new QVBoxLayout(c);
|
|
QHBoxLayout *style = new QHBoxLayout();
|
|
cl->addLayout(style);
|
|
cl->addStretch();
|
|
|
|
QLabel *label = new QLabel("Style", this);
|
|
mode = new QComboBox(this);
|
|
mode->addItem("Bar");
|
|
mode->addItem("Polar");
|
|
|
|
style->addWidget(label);
|
|
style->addWidget(mode);
|
|
style->addStretch();
|
|
|
|
setControls(c);
|
|
|
|
// init to zero
|
|
history[0] = set1;
|
|
history[1] = set2;
|
|
history[2] = set3;
|
|
history[3] = set4;
|
|
history[4] = set5;
|
|
history[5] = set6;
|
|
history[6] = set7;
|
|
history[7] = set8;
|
|
history[8] = set8;
|
|
history[9] = set9;
|
|
history[10] = set11;
|
|
history[11] = set12;
|
|
history[12] = set13;
|
|
history[13] = set14;
|
|
history[14] = set15;
|
|
history[15] = set16;
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
stack = new QStackedWidget(this);
|
|
|
|
rtPlot = new SpinScanPlot(this, spinData);
|
|
plPlot = new SpinScanPolarPlot(this, spinData);
|
|
|
|
stack->addWidget(rtPlot);
|
|
stack->addWidget(plPlot);
|
|
|
|
layout->addWidget(stack);
|
|
|
|
// when we change styles..
|
|
connect(mode, SIGNAL(currentIndexChanged(int)), this, SLOT(styleChanged()));
|
|
|
|
// get updates..
|
|
connect(context, SIGNAL(telemetryUpdate(RealtimeData)), this, SLOT(telemetryUpdate(RealtimeData)));
|
|
connect(context, SIGNAL(start()), this, SLOT(start()));
|
|
connect(context, SIGNAL(stop()), this, SLOT(stop()));
|
|
|
|
// set to zero
|
|
stop(); // resets the array
|
|
}
|
|
|
|
void
|
|
SpinScanPlotWindow::setStyle(int x)
|
|
{
|
|
if (active == true) return;
|
|
|
|
active = true;
|
|
mode->setCurrentIndex(x);
|
|
stack->setCurrentIndex(x);
|
|
active = false;
|
|
}
|
|
|
|
void
|
|
SpinScanPlotWindow::styleChanged()
|
|
{
|
|
int index = mode->currentIndex();
|
|
if (index < 0 || index > 1) return;
|
|
stack->setCurrentIndex(index);
|
|
}
|
|
|
|
void
|
|
SpinScanPlotWindow::start()
|
|
{
|
|
//resetValues();
|
|
// init to zero
|
|
for (int i=0; i<16; i++) memset(history[i], 0, 24);
|
|
for (int i=0; i<24; i++) rtot[i] = 0;
|
|
memset(spinData, 0, 24);
|
|
current=0;
|
|
}
|
|
|
|
void
|
|
SpinScanPlotWindow::stop()
|
|
{
|
|
//resetValues();
|
|
// init to zero
|
|
for (int i=0; i<16; i++) memset(history[i], 0, 24);
|
|
for (int i=0; i<24; i++) rtot[i] = 0;
|
|
memset(spinData, 0, 24);
|
|
current=0;
|
|
}
|
|
|
|
void
|
|
SpinScanPlotWindow::pause()
|
|
{
|
|
}
|
|
|
|
void
|
|
SpinScanPlotWindow::telemetryUpdate(RealtimeData rtData)
|
|
{
|
|
for (int i=0; i<24; i++) {
|
|
rtot[i] += rtData.spinScan[i];
|
|
rtot[i] -= history[current][i];
|
|
spinData[i] = rtot[i]/16;
|
|
}
|
|
memcpy(history[current++], rtData.spinScan, 24);
|
|
if (current==16) current=0;
|
|
|
|
plPlot->replot(); // redraw
|
|
rtPlot->replot(); // redraw
|
|
}
|