summaryrefslogtreecommitdiffstats
path: root/qt-models
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2017-11-24 14:17:01 +0100
committerGravatar Robert C. Helling <helling@atdotde.de>2017-11-25 20:13:01 +0100
commit088db5e12be569ea85fc2ac34c22413a30090cba (patch)
tree535b7c07ce0652c3d602223699b8e63a4d6ec6a3 /qt-models
parent8e21a65653514d9340ef45c9b9c53dfe5d280350 (diff)
downloadsubsurface-088db5e12be569ea85fc2ac34c22413a30090cba.tar.gz
Hand planner variables to profile
Pass the planner state struct to the profile computation so it can use deco_time and first ceiling to display VPM-B ceiling. Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'qt-models')
-rw-r--r--qt-models/diveplannermodel.cpp1
-rw-r--r--qt-models/diveplannermodel.h1
-rw-r--r--qt-models/diveplotdatamodel.cpp3
3 files changed, 4 insertions, 1 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp
index 153771c08..96b5b9c0a 100644
--- a/qt-models/diveplannermodel.cpp
+++ b/qt-models/diveplannermodel.cpp
@@ -924,6 +924,7 @@ void DivePlannerPointsModel::createTemporaryPlan()
struct deco_state plan_deco_state;
plan(&plan_deco_state, &diveplan, &displayed_dive, DECOTIMESTEP, stoptable, &cache, isPlanner(), false);
//QtConcurrent::run(this, &DivePlannerPointsModel::computeVariations, &ds_after_previous_dives);
+ final_deco_state = plan_deco_state;
emit calculatedPlanNotes();
}
// throw away the cache
diff --git a/qt-models/diveplannermodel.h b/qt-models/diveplannermodel.h
index 0b714e608..5e04c9d79 100644
--- a/qt-models/diveplannermodel.h
+++ b/qt-models/diveplannermodel.h
@@ -56,6 +56,7 @@ public:
int lastEnteredPoint();
void removeDeco();
static bool addingDeco;
+ struct deco_state final_deco_state;
public
slots:
diff --git a/qt-models/diveplotdatamodel.cpp b/qt-models/diveplotdatamodel.cpp
index ac6cf7cd8..a893cb46b 100644
--- a/qt-models/diveplotdatamodel.cpp
+++ b/qt-models/diveplotdatamodel.cpp
@@ -1,5 +1,6 @@
// SPDX-License-Identifier: GPL-2.0
#include "qt-models/diveplotdatamodel.h"
+#include "qt-models/diveplannermodel.h"
#include "core/dive.h"
#include "core/profile.h"
#include "core/divelist.h"
@@ -232,7 +233,7 @@ void DivePlotDataModel::calculateDecompression()
{
struct divecomputer *dc = select_dc(&displayed_dive);
init_decompression(&plot_deco_state, &displayed_dive);
- calculate_deco_information(&plot_deco_state, &displayed_dive, dc, &pInfo, false);
+ calculate_deco_information(&plot_deco_state, &(DivePlannerPointsModel::instance()->final_deco_state), &displayed_dive, dc, &pInfo, false);
dataChanged(index(0, CEILING), index(pInfo.nr - 1, TISSUE_16));
}
#endif