summaryrefslogtreecommitdiffstats
path: root/backend-shared/plannershared.cpp
blob: 606dbb9d2c74912a55039bad4d8b0236f412f405 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// SPDX-License-Identifier: GPL-2.0
#include "plannershared.h"
#include "core/settings/qPrefDivePlanner.h"
#include "core/settings/qPrefTechnicalDetails.h"
#include "core/settings/qPrefUnit.h"
#include "qt-models/diveplannermodel.h"
#include "qt-models/cylindermodel.h"

// Planning values
deco_mode PlannerShared::planner_deco_mode()
{
	return qPrefDivePlanner::planner_deco_mode();
}
void PlannerShared::set_planner_deco_mode(deco_mode value)
{
	DivePlannerPointsModel::instance()->setDecoMode(value);
}

int PlannerShared::reserve_gas()
{
	return qPrefDivePlanner::reserve_gas();
}
void PlannerShared::set_reserve_gas(int value)
{
	DivePlannerPointsModel::instance()->setReserveGas(value);
}

bool PlannerShared::dobailout()
{
	return qPrefDivePlanner::dobailout();
}
void PlannerShared::set_dobailout(bool value)
{
	qPrefDivePlanner::set_dobailout(value);
	DivePlannerPointsModel::instance()->emitDataChanged();
}

bool PlannerShared::doo2breaks()
{
	return qPrefDivePlanner::doo2breaks();
}
void PlannerShared::set_doo2breaks(bool value)
{
	qPrefDivePlanner::set_doo2breaks(value);
	DivePlannerPointsModel::instance()->emitDataChanged();
}

int PlannerShared::min_switch_duration()
{
	return qPrefDivePlanner::min_switch_duration() / 60;
}
void PlannerShared::set_min_switch_duration(int value)
{
	// NO conversion, this is done in the planner model.
	DivePlannerPointsModel::instance()->setMinSwitchDuration(value);
}

int PlannerShared::surface_segment()
{
	return qPrefDivePlanner::surface_segment() / 60;
}
void PlannerShared::set_surface_segment(int value)
{
	// NO conversion, this is done in the planner model.
	DivePlannerPointsModel::instance()->setSurfaceSegment(value);
}

double PlannerShared::bottomsac()
{
	return (qPrefUnits::volume() == units::LITER) ?
				qPrefDivePlanner::bottomsac() / 1000.0 :
				ml_to_cuft(qPrefDivePlanner::bottomsac()
#ifdef SUBSURFACE_MOBILE
					* 100 // cuft without decimals (0 - 300)
#endif
				);
}
void PlannerShared::set_bottomsac(double value)
{
	// NO conversion, this is done in the planner model.
	DivePlannerPointsModel::instance()->setBottomSac(value);
}

double PlannerShared::decosac()
{
// Mobile and desktop use the same values when using units::LITER,
// however when using units::CUFT desktop want 0.00 - 3.00 while
// mobile wants 0 - 300, therefore multiply by 100 for mobile
	return (qPrefUnits::volume() == units::LITER) ?
				qPrefDivePlanner::decosac() / 1000.0 :
				ml_to_cuft(qPrefDivePlanner::decosac()
#ifdef SUBSURFACE_MOBILE
					* 100 // cuft without decimals (0 - 300)
#endif
				);
}
void PlannerShared::set_decosac(double value)
{
	// NO conversion, this is done in the planner model.
	DivePlannerPointsModel::instance()->setDecoSac(value);
}

double PlannerShared::sacfactor()
{
// mobile want 0 - 100 which are shown with 1 decimal as 0.0 - 10.0
// whereas desktop wants 0.0 - 10.0
// as a consequence divide by 10 or 100
	return qPrefDivePlanner::sacfactor() /
#ifdef SUBSURFACE_MOBILE
			10.0;
#else
			100.0;
#endif
}
void PlannerShared::set_sacfactor(double value)
{
	// NO conversion, this is done in the planner model.
	DivePlannerPointsModel::instance()->setSacFactor(value);
}

bool PlannerShared::o2narcotic()
{
	return qPrefDivePlanner::o2narcotic();
}
void PlannerShared::set_o2narcotic(bool value)
{
	qPrefDivePlanner::set_o2narcotic(value);
	DivePlannerPointsModel::instance()->emitDataChanged();
	CylindersModelFiltered::instance()->model()->updateBestMixes();
}

double PlannerShared::bottompo2()
{
	return (qPrefDivePlanner::bottompo2() / 1000.0);
}
void PlannerShared::set_bottompo2(double value)
{
	qPrefDivePlanner::set_bottompo2((int) (value * 1000.0));
	CylindersModelFiltered::instance()->model()->updateBestMixes();
}

double PlannerShared::decopo2()
{
	return qPrefDivePlanner::decopo2() / 1000.0;
}
void PlannerShared::set_decopo2(double value)
{
	pressure_t olddecopo2;
	olddecopo2.mbar = prefs.decopo2;
	qPrefDivePlanner::instance()->set_decopo2((int) (value * 1000.0));
	CylindersModelFiltered::instance()->model()->updateDecoDepths(olddecopo2);
	CylindersModelFiltered::instance()->model()->updateBestMixes();
}

int PlannerShared::bestmixend()
{
	return lrint(get_depth_units(prefs.bestmixend.mm, NULL, NULL));
}
void PlannerShared::set_bestmixend(int value)
{
	qPrefDivePlanner::set_bestmixend(units_to_depth(value).mm);
	CylindersModelFiltered::instance()->model()->updateBestMixes();
}