mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Preserve events when editing dive in planner
The planner does not know about events except gas changes. But if the dive comes from the log, we should preserve the dive computer events. At least those that happend before we started to delete waypoints to let the planner take over. Signed-off-by: Robert C. Helling <helling@atdotde.de>
This commit is contained in:
parent
1690ba7c0c
commit
b50d5b63ad
4 changed files with 48 additions and 8 deletions
|
@ -150,6 +150,7 @@ void DivePlannerPointsModel::loadFromDive(dive *d)
|
|||
addStop(0, d->dc.duration.seconds,cylinderid, last_sp.mbar, true, current_divemode);
|
||||
recalc = oldRec;
|
||||
DiveTypeSelectionModel::instance()->repopulate();
|
||||
preserved_until = d->duration;
|
||||
emitDataChanged();
|
||||
}
|
||||
|
||||
|
@ -844,10 +845,13 @@ void DivePlannerPointsModel::remove(const QModelIndex &index)
|
|||
int i;
|
||||
int rows = rowCount();
|
||||
if (QApplication::keyboardModifiers() & Qt::ControlModifier) {
|
||||
preserved_until.seconds = divepoints.at(index.row()).time;
|
||||
beginRemoveRows(QModelIndex(), index.row(), rows - 1);
|
||||
for (i = rows - 1; i >= index.row(); i--)
|
||||
divepoints.remove(i);
|
||||
} else {
|
||||
if (index.row() == rows -1)
|
||||
preserved_until.seconds = divepoints.at(rows - 1).time;
|
||||
beginRemoveRows(QModelIndex(), index.row(), index.row());
|
||||
divepoints.remove(index.row());
|
||||
}
|
||||
|
@ -916,6 +920,7 @@ void DivePlannerPointsModel::clear()
|
|||
endRemoveRows();
|
||||
}
|
||||
cylinders.clear();
|
||||
preserved_until.seconds = 0;
|
||||
setRecalc(oldRecalc);
|
||||
}
|
||||
|
||||
|
@ -1218,18 +1223,21 @@ void DivePlannerPointsModel::createPlan(bool replanCopy)
|
|||
displayed_dive.divetrip = nullptr; // Should not be necessary, just in case!
|
||||
#if not defined(SUBSURFACE_MOBILE) && not defined(SUBSURFACE_TESTING)
|
||||
Command::addDive(&displayed_dive, autogroup, true);
|
||||
#endif // SUBSURFACE_MOBILE SUBSURFACE_TESTING
|
||||
} else if (replanCopy) {
|
||||
// we were planning an old dive and save as a new dive
|
||||
displayed_dive.id = dive_getUniqID(); // Things will break horribly if we create dives with the same id.
|
||||
#if not defined(SUBSURFACE_MOBILE) && not defined(SUBSURFACE_TESTING)
|
||||
Command::addDive(&displayed_dive, false, false);
|
||||
#endif // SUBSURFACE_MOBILE SUBSURFACE_TESTING
|
||||
} else {
|
||||
// we were planning an old dive and rewrite the plan
|
||||
copy_events_until(current_dive, &displayed_dive, preserved_until.seconds);
|
||||
if (replanCopy) {
|
||||
// we were planning an old dive and save as a new dive
|
||||
displayed_dive.id = dive_getUniqID(); // Things will break horribly if we create dives with the same id.
|
||||
#if not defined(SUBSURFACE_MOBILE) && not defined(SUBSURFACE_TESTING)
|
||||
Command::replanDive(&displayed_dive);
|
||||
Command::addDive(&displayed_dive, false, false);
|
||||
#endif // SUBSURFACE_MOBILE SUBSURFACE_TESTING
|
||||
} else {
|
||||
// we were planning an old dive and rewrite the plan
|
||||
#if not defined(SUBSURFACE_MOBILE) && not defined(SUBSURFACE_TESTING)
|
||||
Command::replanDive(&displayed_dive);
|
||||
#endif // SUBSURFACE_MOBILE SUBSURFACE_TESTING
|
||||
}
|
||||
}
|
||||
|
||||
// Remove and clean the diveplan, so we don't delete
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue