2017-04-27 18:26:36 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "profile-widget/tankitem.h"
|
|
|
|
#include "qt-models/diveplotdatamodel.h"
|
|
|
|
#include "profile-widget/divetextitem.h"
|
|
|
|
#include "core/profile.h"
|
2014-08-18 16:47:18 +00:00
|
|
|
#include <QPen>
|
2014-08-15 00:22:27 +00:00
|
|
|
|
|
|
|
TankItem::TankItem(QObject *parent) :
|
2016-03-08 05:23:54 +00:00
|
|
|
QObject(parent),
|
2014-08-15 00:22:27 +00:00
|
|
|
QGraphicsRectItem(),
|
|
|
|
dataModel(0),
|
2014-08-23 14:13:37 +00:00
|
|
|
pInfoEntry(0),
|
|
|
|
pInfoNr(0)
|
2014-08-15 00:22:27 +00:00
|
|
|
{
|
2014-08-15 03:40:47 +00:00
|
|
|
height = 3;
|
|
|
|
QColor red(PERSIANRED1);
|
|
|
|
QColor blue(AIR_BLUE);
|
|
|
|
QColor yellow(NITROX_YELLOW);
|
|
|
|
QColor green(NITROX_GREEN);
|
2014-08-15 13:30:31 +00:00
|
|
|
QLinearGradient nitroxGradient(QPointF(0, 0), QPointF(0, height));
|
2014-08-15 03:40:47 +00:00
|
|
|
nitroxGradient.setColorAt(0.0, green);
|
|
|
|
nitroxGradient.setColorAt(0.49, green);
|
|
|
|
nitroxGradient.setColorAt(0.5, yellow);
|
|
|
|
nitroxGradient.setColorAt(1.0, yellow);
|
|
|
|
nitrox = nitroxGradient;
|
2015-01-05 19:24:34 +00:00
|
|
|
oxygen = green;
|
2014-08-15 13:30:31 +00:00
|
|
|
QLinearGradient trimixGradient(QPointF(0, 0), QPointF(0, height));
|
2014-08-15 03:40:47 +00:00
|
|
|
trimixGradient.setColorAt(0.0, green);
|
|
|
|
trimixGradient.setColorAt(0.49, green);
|
|
|
|
trimixGradient.setColorAt(0.5, red);
|
|
|
|
trimixGradient.setColorAt(1.0, red);
|
|
|
|
trimix = trimixGradient;
|
|
|
|
air = blue;
|
2017-12-28 17:04:09 +00:00
|
|
|
hAxis = Q_NULLPTR;
|
2014-08-23 14:13:37 +00:00
|
|
|
memset(&diveCylinderStore, 0, sizeof(diveCylinderStore));
|
2014-08-15 00:22:27 +00:00
|
|
|
}
|
|
|
|
|
2014-12-18 07:47:53 +00:00
|
|
|
TankItem::~TankItem()
|
|
|
|
{
|
|
|
|
// Should this be clear_dive(diveCylinderStore)?
|
|
|
|
for (int i = 0; i < MAX_CYLINDERS; i++)
|
|
|
|
free((void *)diveCylinderStore.cylinder[i].type.description);
|
|
|
|
}
|
|
|
|
|
2014-08-15 00:22:27 +00:00
|
|
|
void TankItem::setData(DivePlotDataModel *model, struct plot_info *plotInfo, struct dive *d)
|
|
|
|
{
|
2014-08-23 14:13:37 +00:00
|
|
|
free(pInfoEntry);
|
|
|
|
// the plotInfo and dive structures passed in could become invalid before we stop using them,
|
|
|
|
// so copy the data that we need
|
|
|
|
int size = plotInfo->nr * sizeof(plotInfo->entry[0]);
|
|
|
|
pInfoEntry = (struct plot_data *)malloc(size);
|
|
|
|
pInfoNr = plotInfo->nr;
|
|
|
|
memcpy(pInfoEntry, plotInfo->entry, size);
|
|
|
|
copy_cylinders(d, &diveCylinderStore, false);
|
2014-08-15 00:22:27 +00:00
|
|
|
dataModel = model;
|
2015-01-18 21:17:24 +00:00
|
|
|
connect(dataModel, SIGNAL(dataChanged(QModelIndex, QModelIndex)), this, SLOT(modelDataChanged(QModelIndex, QModelIndex)), Qt::UniqueConnection);
|
2014-08-15 00:22:27 +00:00
|
|
|
modelDataChanged();
|
|
|
|
}
|
|
|
|
|
2014-08-15 03:40:47 +00:00
|
|
|
void TankItem::createBar(qreal x, qreal w, struct gasmix *gas)
|
|
|
|
{
|
|
|
|
// pick the right gradient, size, position and text
|
2014-08-15 13:30:31 +00:00
|
|
|
QGraphicsRectItem *rect = new QGraphicsRectItem(x, 0, w, height, this);
|
2014-08-15 03:40:47 +00:00
|
|
|
if (gasmix_is_air(gas))
|
|
|
|
rect->setBrush(air);
|
|
|
|
else if (gas->he.permille)
|
|
|
|
rect->setBrush(trimix);
|
2015-01-05 19:24:34 +00:00
|
|
|
else if (gas->o2.permille == 1000)
|
|
|
|
rect->setBrush(oxygen);
|
2014-08-15 03:40:47 +00:00
|
|
|
else
|
|
|
|
rect->setBrush(nitrox);
|
2014-08-18 16:47:18 +00:00
|
|
|
rect->setPen(QPen(QBrush(), 0.0)); // get rid of the thick line around the rectangle
|
2014-08-15 03:40:47 +00:00
|
|
|
rects.push_back(rect);
|
|
|
|
DiveTextItem *label = new DiveTextItem(rect);
|
|
|
|
label->setText(gasname(gas));
|
|
|
|
label->setBrush(Qt::black);
|
2014-08-15 13:30:31 +00:00
|
|
|
label->setPos(x + 1, 0);
|
2014-08-15 03:40:47 +00:00
|
|
|
label->setAlignment(Qt::AlignBottom | Qt::AlignRight);
|
2017-02-04 09:46:02 +00:00
|
|
|
#ifdef SUBSURFACE_MOBILE
|
|
|
|
label->setPos(x + 1, -2.5);
|
|
|
|
#endif
|
2014-08-15 03:40:47 +00:00
|
|
|
label->setZValue(101);
|
|
|
|
}
|
|
|
|
|
2014-08-15 00:22:27 +00:00
|
|
|
void TankItem::modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
|
|
|
|
{
|
2016-03-08 05:23:54 +00:00
|
|
|
Q_UNUSED(topLeft);
|
|
|
|
Q_UNUSED(bottomRight);
|
2014-08-15 00:22:27 +00:00
|
|
|
// We don't have enougth data to calculate things, quit.
|
2014-08-23 14:13:37 +00:00
|
|
|
if (!dataModel || !pInfoEntry || !pInfoNr)
|
2014-08-15 00:22:27 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// remove the old rectangles
|
|
|
|
foreach (QGraphicsRectItem *r, rects) {
|
|
|
|
delete(r);
|
|
|
|
}
|
|
|
|
rects.clear();
|
|
|
|
|
2014-08-15 03:40:47 +00:00
|
|
|
qreal width, left;
|
Profile support for multiple concurrent pressure sensors
This finally handles multiple cylinder pressures, both overlapping and
consecutive, and it seems to work on the nasty cases I've thrown at it.
Want to just track five different cylinders all at once, without any
pesky gas switch events? Sure, you can do that. It will show five
different gas pressures for your five cylinders, and they will go down
as you breathe down the cylinders.
I obviously don't have any real data for that case, but I do have a test
file with five actual cylinders that all have samples over the whole
course of the dive. The end result looks messy as hell, but what did
you expect?
HOWEVER.
The only way to do this sanely was
- actually make the "struct plot_info" have all the cylinder pressures
(so no "sensor index and pressure" - every cylinder has a pressure for
every plot info entry)
This obviously makes the plot_info much bigger. We used to have
MAX_CYLINDERS be a fairly generous 8, which seems sane. The planning
code made that 8 be 20. That seems questionable. But whatever.
The good news is that the plot-info should hopefully get freed, and
only be allocated one dive at a time, so the fact that it is big and
nasty shouldn't be a scaling issue, though.
- the "populate_pressure_information()" function had to be rewritten
quite a bit. The good news is that it's actually simpler now, although
I would not go so far as to really call it simple. It's still
complicated and suble, but now it explicitly just does one cylinder at
a time.
It *used* to have this insanely complicated "keep track of the pressure
ranges for every cylinder at once". I just couldn't stand that model
and keep my sanity, so it now just tracks one cylinder at a time, and
doesn't have an array of live data, instead the caller will just call
it for each cylinder.
- get rid of some of our hackier stuff, like the code that populates the
plot_info data code with the currently selected cylinder number, and
clears out any other pressures. That obviously does *not* work when you
may not have a single primary cylinder any more.
Now, the above sounds like all good things. Yeah, it mostly is.
BUT.
There's a few big downsides from the above:
- there's no sane way to do this as a series of small changes.
The change to make the plot_info take an array of cylinder pressures
rather than the sensor+pressure model really isn't amenable to "fix up
one use at a time". When you switch over to the new data structure
model, you have to switch over to the new way of populating the
pressure ranges. The two just go hand in hand.
- Some of our code *depended* on the "sensor+pressure" model. I fixed all
the ones I could sanely fix. There was one particular case that I just
couldn't sanely fix, and I didn't care enough about it to do something
insane.
So the only _known_ breakage is the "TankItem" profile widget. That's
the bar at the bottom of the profile that shows which cylinder is in
use right now. You'd think that would be trivial to fix up, and yes it
would be - I could just use the regular model of
firstcyl = explicit_first_cylinder(dive, dc)
.. then iterate over the gas change events to see the others ..
but the problem with the "TankItem" widget is that it does its own
model, and it has thrown away the dive and the dive computer
information. It just doesn't even know. It only knows what cylinders
there are, and the plot_info. And it just used to look at the sensor
number in the plot_info, and be done with that. That number no longer
exists.
- I have tested it, and I think the code is better, but hey, it's a
fairly large patch to some of the more complex code in our code base.
That "interpolate missing pressure fields" code really isn't pretty. It
may be prettier, but..
Anyway, without further ado, here's the patch. No sign-off yet, because I
do think people should look and comment. But I think the patch is fine,
and I'll fix anythign that anybody can find, *except* for that TankItem
thing that I will refuse to touch. That class is ugly. It needs to have
access to the actual dive.
Note how it actually does remove more lines than it adds, and that's
despite added comments etc. The code really is simpler, but there may be
cases in there that need more work.
Known missing pieces that don't currently take advantage of concurrent
cylinder pressure data:
- the momentary SAC rate coloring for dives will need more work
- dive merging (but we expect to generally normally not merge dive
computers, which is the main source of sensor data)
- actually taking advantage of different sensor data from different
dive computers
But most of all: Testing. Lots and lots of testing to find all the
corner cases.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2017-07-27 17:17:05 +00:00
|
|
|
|
2017-09-14 19:09:03 +00:00
|
|
|
// Find correct end of the dive plot for correct end of the tankbar
|
|
|
|
struct plot_data *last_entry = &pInfoEntry[pInfoNr-1];
|
|
|
|
|
2017-09-14 03:29:20 +00:00
|
|
|
// get the information directly from the displayed_dive (the dc always exists)
|
|
|
|
struct divecomputer *dc = get_dive_dc(&displayed_dive, dc_number);
|
|
|
|
|
|
|
|
// start with the first gasmix and at the start of the dive
|
|
|
|
int cyl = explicit_first_cylinder(&displayed_dive, dc);
|
|
|
|
struct gasmix *gasmix = &displayed_dive.cylinder[cyl].gasmix;
|
|
|
|
int startTime = 0;
|
|
|
|
|
|
|
|
// work through all the gas changes and add the rectangle for each gas while it was used
|
|
|
|
struct event *ev = get_next_event(dc->events, "gaschange");
|
2017-10-20 21:25:18 +00:00
|
|
|
while (ev && (int)ev->time.seconds < last_entry->sec) {
|
2017-09-14 03:29:20 +00:00
|
|
|
width = hAxis->posAtValue(ev->time.seconds) - hAxis->posAtValue(startTime);
|
2014-08-15 00:22:27 +00:00
|
|
|
left = hAxis->posAtValue(startTime);
|
2017-09-14 03:29:20 +00:00
|
|
|
createBar(left, width, gasmix);
|
|
|
|
startTime = ev->time.seconds;
|
|
|
|
gasmix = get_gasmix_from_event(&displayed_dive, ev);
|
|
|
|
ev = get_next_event(ev->next, "gaschange");
|
2014-08-15 00:22:27 +00:00
|
|
|
}
|
2017-09-14 19:09:03 +00:00
|
|
|
width = hAxis->posAtValue(last_entry->sec) - hAxis->posAtValue(startTime);
|
2014-08-15 00:22:27 +00:00
|
|
|
left = hAxis->posAtValue(startTime);
|
2017-09-14 03:29:20 +00:00
|
|
|
createBar(left, width, gasmix);
|
2014-08-15 00:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TankItem::setHorizontalAxis(DiveCartesianAxis *horizontal)
|
|
|
|
{
|
|
|
|
hAxis = horizontal;
|
|
|
|
connect(hAxis, SIGNAL(sizeChanged()), this, SLOT(modelDataChanged()));
|
|
|
|
modelDataChanged();
|
|
|
|
}
|