| 
									
										
										
										
											2019-12-08 19:30:39 +01:00
										 |  |  | // SPDX-License-Identifier: GPL-2.0
 | 
					
						
							|  |  |  | #include "plannershared.h"
 | 
					
						
							| 
									
										
										
										
											2019-12-12 20:01:38 +01:00
										 |  |  | #include "core/settings/qPrefDivePlanner.h"
 | 
					
						
							| 
									
										
										
										
											2019-12-14 20:29:16 +01:00
										 |  |  | #include "core/settings/qPrefTechnicalDetails.h"
 | 
					
						
							| 
									
										
										
										
											2020-01-02 11:55:27 +01:00
										 |  |  | #include "core/settings/qPrefUnit.h"
 | 
					
						
							| 
									
										
										
										
											2019-12-14 20:29:16 +01:00
										 |  |  | #include "qt-models/diveplannermodel.h"
 | 
					
						
							| 
									
										
										
										
											2019-12-23 17:23:24 +01:00
										 |  |  | #include "qt-models/cylindermodel.h"
 | 
					
						
							| 
									
										
										
										
											2019-12-08 19:30:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 20:29:16 +01:00
										 |  |  | // Planning values
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | deco_mode PlannerShared::planner_deco_mode() | 
					
						
							| 
									
										
										
										
											2019-12-14 20:29:16 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	return qPrefDivePlanner::planner_deco_mode(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_planner_deco_mode(deco_mode value) | 
					
						
							| 
									
										
										
										
											2019-12-14 20:29:16 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->setDecoMode(value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | int PlannerShared::reserve_gas() | 
					
						
							| 
									
										
										
										
											2019-12-14 20:29:16 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	return qPrefDivePlanner::reserve_gas(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_reserve_gas(int value) | 
					
						
							| 
									
										
										
										
											2019-12-14 20:29:16 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->setReserveGas(value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | bool PlannerShared::dobailout() | 
					
						
							| 
									
										
										
										
											2019-12-24 11:22:48 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	return qPrefDivePlanner::dobailout(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_dobailout(bool value) | 
					
						
							| 
									
										
										
										
											2019-12-24 11:22:48 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	qPrefDivePlanner::set_dobailout(value); | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->emitDataChanged(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-12-23 12:24:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | bool PlannerShared::doo2breaks() | 
					
						
							| 
									
										
										
										
											2019-12-23 13:04:19 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	return qPrefDivePlanner::doo2breaks(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_doo2breaks(bool value) | 
					
						
							| 
									
										
										
										
											2019-12-23 13:04:19 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	qPrefDivePlanner::set_doo2breaks(value); | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->emitDataChanged(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-12-23 13:15:07 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | int PlannerShared::min_switch_duration() | 
					
						
							| 
									
										
										
										
											2019-12-23 13:15:07 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	return qPrefDivePlanner::min_switch_duration() / 60; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_min_switch_duration(int value) | 
					
						
							| 
									
										
										
										
											2019-12-23 13:15:07 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	// NO conversion, this is done in the planner model.
 | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->setMinSwitchDuration(value); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-12-23 15:40:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | int PlannerShared::surface_segment() | 
					
						
							| 
									
										
										
										
											2020-01-10 22:51:28 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	return qPrefDivePlanner::surface_segment() / 60; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_surface_segment(int value) | 
					
						
							| 
									
										
										
										
											2020-01-10 22:51:28 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	// NO conversion, this is done in the planner model.
 | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->setSurfaceSegment(value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | double PlannerShared::bottomsac() | 
					
						
							| 
									
										
										
										
											2019-12-23 15:40:21 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-01-08 12:06:23 +01:00
										 |  |  | 	return (qPrefUnits::volume() == units::LITER) ? | 
					
						
							|  |  |  | 				qPrefDivePlanner::bottomsac() / 1000.0 : | 
					
						
							|  |  |  | 				ml_to_cuft(qPrefDivePlanner::bottomsac() | 
					
						
							|  |  |  | #ifdef SUBSURFACE_MOBILE
 | 
					
						
							|  |  |  | 					* 100 // cuft without decimals (0 - 300)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 				); | 
					
						
							| 
									
										
										
										
											2019-12-23 15:40:21 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_bottomsac(double value) | 
					
						
							| 
									
										
										
										
											2019-12-23 15:40:21 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	// NO conversion, this is done in the planner model.
 | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->setBottomSac(value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | double PlannerShared::decosac() | 
					
						
							| 
									
										
										
										
											2019-12-23 15:40:21 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-01-25 13:02:59 +01:00
										 |  |  | // 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
 | 
					
						
							| 
									
										
										
										
											2020-01-08 12:06:23 +01:00
										 |  |  | 	return (qPrefUnits::volume() == units::LITER) ? | 
					
						
							|  |  |  | 				qPrefDivePlanner::decosac() / 1000.0 : | 
					
						
							|  |  |  | 				ml_to_cuft(qPrefDivePlanner::decosac() | 
					
						
							|  |  |  | #ifdef SUBSURFACE_MOBILE
 | 
					
						
							|  |  |  | 					* 100 // cuft without decimals (0 - 300)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 				); | 
					
						
							| 
									
										
										
										
											2019-12-23 15:40:21 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_decosac(double value) | 
					
						
							| 
									
										
										
										
											2019-12-23 15:40:21 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	// NO conversion, this is done in the planner model.
 | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->setDecoSac(value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | double PlannerShared::sacfactor() | 
					
						
							| 
									
										
										
										
											2019-12-23 15:40:21 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-01-25 13:02:59 +01:00
										 |  |  | // 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
 | 
					
						
							| 
									
										
										
										
											2020-01-21 16:16:10 +01:00
										 |  |  | 	return qPrefDivePlanner::sacfactor() / | 
					
						
							|  |  |  | #ifdef SUBSURFACE_MOBILE
 | 
					
						
							|  |  |  | 			10.0; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 			100.0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-12-23 15:40:21 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_sacfactor(double value) | 
					
						
							| 
									
										
										
										
											2019-12-23 15:40:21 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	// NO conversion, this is done in the planner model.
 | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->setSacFactor(value); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-12-23 17:23:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | bool PlannerShared::o2narcotic() | 
					
						
							| 
									
										
										
										
											2019-12-23 17:23:24 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	return qPrefDivePlanner::o2narcotic(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_o2narcotic(bool value) | 
					
						
							| 
									
										
										
										
											2019-12-23 17:23:24 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	qPrefDivePlanner::set_o2narcotic(value); | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->emitDataChanged(); | 
					
						
							| 
									
										
										
										
											2020-07-11 13:15:21 +02:00
										 |  |  | 	DivePlannerPointsModel::instance()->cylindersModel()->emitDataChanged(); | 
					
						
							| 
									
										
										
										
											2019-12-23 17:23:24 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | double PlannerShared::bottompo2() | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	return (qPrefDivePlanner::bottompo2() / 1000.0); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_bottompo2(double value) | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	qPrefDivePlanner::set_bottompo2((int) (value * 1000.0)); | 
					
						
							| 
									
										
										
										
											2020-02-03 18:59:12 +01:00
										 |  |  | 	DivePlannerPointsModel::instance()->cylindersModel()->updateBestMixes(); | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | double PlannerShared::decopo2() | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-12-30 15:48:49 +01:00
										 |  |  | 	return qPrefDivePlanner::decopo2() / 1000.0; | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_decopo2(double value) | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	pressure_t olddecopo2; | 
					
						
							|  |  |  | 	olddecopo2.mbar = prefs.decopo2; | 
					
						
							|  |  |  | 	qPrefDivePlanner::instance()->set_decopo2((int) (value * 1000.0)); | 
					
						
							| 
									
										
										
										
											2020-02-03 18:59:12 +01:00
										 |  |  | 	DivePlannerPointsModel::instance()->cylindersModel()->updateDecoDepths(olddecopo2); | 
					
						
							|  |  |  | 	DivePlannerPointsModel::instance()->cylindersModel()->updateBestMixes(); | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | int PlannerShared::bestmixend() | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	return lrint(get_depth_units(prefs.bestmixend.mm, NULL, NULL)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:08:35 +01:00
										 |  |  | void PlannerShared::set_bestmixend(int value) | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	qPrefDivePlanner::set_bestmixend(units_to_depth(value).mm); | 
					
						
							| 
									
										
										
										
											2020-02-03 18:59:12 +01:00
										 |  |  | 	DivePlannerPointsModel::instance()->cylindersModel()->updateBestMixes(); | 
					
						
							| 
									
										
										
										
											2019-12-23 17:25:46 +01:00
										 |  |  | } |