summaryrefslogtreecommitdiffstats
path: root/qt-ui
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-15 11:54:13 +0900
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-15 11:54:13 +0900
commitc0a6c136f04b8dcca1fb148894148195a1a31d60 (patch)
tree288919052ffd1eaa4040109dae27b9feaac50ff1 /qt-ui
parent5961579cda23c05b1d4bdc8251accfc8132aad4f (diff)
downloadsubsurface-c0a6c136f04b8dcca1fb148894148195a1a31d60.tar.gz
Fix dive planner widget
In commit 0f50b73f9e88 ("Fix planner / add dive handling of DiveHandler Points") some issues were introduced. While it is fine to remove the artificial first point at the surface, the commit broke the special handling for o2 == -1, i.e., the usual case where a default gas needs to be picked. This generalizes the algorithm previously used to also look to the right, now that we are no longer guaranteed that there is a first point to our left. This also cleans up some whitespace damage introduced in the same commit. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r--qt-ui/diveplanner.cpp58
1 files changed, 28 insertions, 30 deletions
diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp
index 09214a625..34c729944 100644
--- a/qt-ui/diveplanner.cpp
+++ b/qt-ui/diveplanner.cpp
@@ -1150,38 +1150,17 @@ int DivePlannerPointsModel::addStop(int milimeters, int minutes, int o2, int he,
{
int row = divepoints.count();
if (minutes == 0 && milimeters == 0 && row != 0){
- /* this is only possible if the user clicked on the 'plus' sign on the DivePoints Table */
- struct divedatapoint& t = divepoints.last();
- milimeters = t.depth;
- minutes = t.time + 600; // 10 minutes.
+ /* this is only possible if the user clicked on the 'plus' sign on the DivePoints Table */
+ struct divedatapoint& t = divepoints.last();
+ milimeters = t.depth;
+ minutes = t.time + 600; // 10 minutes.
} else if (minutes == 0 && milimeters == 0 && row == 0) {
- milimeters = M_OR_FT(5, 15); // 5m / 15ft
- minutes = 600; // 10 min
+ milimeters = M_OR_FT(5, 15); // 5m / 15ft
+ minutes = 600; // 10 min
}
if (o2 != -1)
if (!addGas(o2, he))
qDebug("addGas failed"); // FIXME add error propagation
- /*
- * Dirk, is this really necessary or it's just something that you forgot
- * to remove? this is adding a bit of pain to fix some issues on the planner,
- * so I'm commenting this out untill you have a bit of time to look at it.
- *
- if(row == 0) {
- if (o2 == -1) {
- o2 = O2_IN_AIR;
- (void)addGas(o2, 0); // I know this is the first gas - won't fail
- }
- beginInsertRows(QModelIndex(), row, row);
- divedatapoint point;
- point.depth = 0;
- point.time = 0;
- point.o2 = o2;
- point.he = he;
- point.po2 = ccpoint;
- divepoints.append( point );
- endInsertRows();
- row++;
- } */
// check if there's already a new stop before this one:
for (int i = 0; i < row; i++) {
@@ -1198,9 +1177,28 @@ int DivePlannerPointsModel::addStop(int milimeters, int minutes, int o2, int he,
break;
}
}
- if (row > 1 && o2 == -1) { // this means "take the current gas"
- o2 = divepoints.at(row - 1).o2;
- he = divepoints.at(row - 1).he;
+ if (o2 == -1) {
+ qDebug() << "default Gas";
+ if (row > 0) {
+ qDebug() << "from left";
+ o2 = divepoints.at(row - 1).o2;
+ he = divepoints.at(row - 1).he;
+ } else {
+ // when we add a first data point we need to make sure that there is a
+ // tank for it to use;
+ // first check to the right, then to the left, but if there's nothing,
+ // we simply default to AIR
+ if (row < divepoints.count()) {
+ qDebug() << "from right";
+ o2 = divepoints.at(row).o2;
+ he = divepoints.at(row).he;
+ } else {
+ qDebug() << "have to create tank of AIR" << row << divepoints.count();
+ o2 = O2_IN_AIR;
+ if (!addGas(o2, 0))
+ qDebug("addGas failed"); // FIXME add error propagation
+ }
+ }
}
// add the new stop
beginInsertRows(QModelIndex(), row, row);