diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-01-20 09:41:21 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-20 10:01:50 -0800 |
commit | 764aa6c5128b452e36dac9cd5101f65f891f43ec (patch) | |
tree | 49b1e0ad19730e438daa1f799567f4a2f1bdd124 /qt-models | |
parent | de220c2da04f7ea4d4f603a81c8e9c2447d83170 (diff) | |
download | subsurface-764aa6c5128b452e36dac9cd5101f65f891f43ec.tar.gz |
planner: remove DivePlannerPointsModel::startTimeChanged signal
The way the starting time of a new plan was set was bonkers:
1) PlannerWidgets::planDive() invokes DivePlannerPointsModel::
createSimpleDive().
2) createSimpleDive() calls DivePlannerPointsModel::
setupStartTime()
3) setupStartTime() emits a signal startTimeChanged()
4) startTimeChanged is caught by PlannerWidget and sets
the UI field
5) change of the UI field emits a timeChanged() signal which
is connected to DivePlannerPointsModel::setStartTime()
6) setStartTime() sets the time of the plan and displayed_dive
and emits dataChanged()
7) dataChanged() replots the dive()
8) Back in DivePlannerPointsModel::createSimpleDive() the diveplan
start time is overwritten with displayed_dive (the value are
equal owing to 6)
Wow!
But it gets worse:
9) The initial dive plan is set up in createSimpleDive().
Since the profile is drawn in 7) after clearing the displayed_dive
and before constructing the initial plan, the profile is shown
on a dive without samples. It therefore generates a dummy profile.
To make this somewhat less insane, remove the startTimeChanged()
signal in 3), explicitly set the start time of plan and dive to
the one calculated by setupStartTime() and explicitly set the UI
filed in the plannerWidget.
This still indirectly draws the profile via signals in a convoluted
way, but at it straightens out things somewhat. Most importantly,
the profile doesn't have to generate a fake DC.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models')
-rw-r--r-- | qt-models/diveplannermodel.cpp | 7 | ||||
-rw-r--r-- | qt-models/diveplannermodel.h | 1 |
2 files changed, 3 insertions, 5 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp index 0fd7962f3..d94b728ae 100644 --- a/qt-models/diveplannermodel.cpp +++ b/qt-models/diveplannermodel.cpp @@ -58,13 +58,14 @@ void DivePlannerPointsModel::createSimpleDive() setupStartTime(); // initialize the start time in the plan - diveplan.when = displayed_dive.when; + diveplan.when = dateTimeToTimestamp(startTime); + displayed_dive.when = diveplan.when; // Use gas from the first cylinder int cylinderid = 0; // If we're in drop_stone_mode, don't add a first point. - // It will be added implicit. + // It will be added implicitly. if (!prefs.drop_stone_mode) addStop(M_OR_FT(15, 45), 1 * 60, cylinderid, 0, true, UNDEF_COMP_TYPE); @@ -91,7 +92,6 @@ void DivePlannerPointsModel::setupStartTime() startTime = startTime.addSecs(diff + 3600); } } - emit startTimeChanged(startTime); } void DivePlannerPointsModel::loadFromDive(dive *d) @@ -737,7 +737,6 @@ void DivePlannerPointsModel::setStartTime(const QTime &t) emitDataChanged(); } - bool divePointsLessThan(const divedatapoint &p1, const divedatapoint &p2) { return p1.time < p2.time; diff --git a/qt-models/diveplannermodel.h b/qt-models/diveplannermodel.h index 08ed8fd79..0f3a423db 100644 --- a/qt-models/diveplannermodel.h +++ b/qt-models/diveplannermodel.h @@ -116,7 +116,6 @@ signals: void planCreated(); void planCanceled(); void cylinderModelEdited(); - void startTimeChanged(QDateTime); void recreationChanged(bool); void calculatedPlanNotes(QString); void variationsComputed(QString); |