2019-12-08 18:30:39 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include "plannershared.h"
|
2019-12-12 19:01:38 +00:00
|
|
|
#include "core/settings/qPrefDivePlanner.h"
|
2019-12-14 19:29:16 +00:00
|
|
|
#include "core/settings/qPrefTechnicalDetails.h"
|
|
|
|
#include "qt-models/diveplannermodel.h"
|
2019-12-23 16:23:24 +00:00
|
|
|
#include "qt-models/cylindermodel.h"
|
2019-12-08 18:30:39 +00:00
|
|
|
|
|
|
|
plannerShared *plannerShared::instance()
|
|
|
|
{
|
|
|
|
static plannerShared *self = new plannerShared;
|
|
|
|
return self;
|
|
|
|
}
|
2019-12-12 19:01:38 +00:00
|
|
|
|
|
|
|
// Used to convert between meter/feet and keep the qPref variables independent
|
2019-12-25 09:45:20 +00:00
|
|
|
#define TO_MM_BY_SEC ((prefs.units.length == units::METERS) ? 1000.0 / 60.0 : feet_to_mm(1) / 60.0)
|
2019-12-12 19:01:38 +00:00
|
|
|
|
|
|
|
// Converted meter/feet qPrefDivePlanner values
|
|
|
|
int plannerShared::ascratelast6m()
|
|
|
|
{
|
2019-12-25 09:45:20 +00:00
|
|
|
return lrint((float)prefs.ascratelast6m / TO_MM_BY_SEC);
|
2019-12-12 19:01:38 +00:00
|
|
|
}
|
|
|
|
void plannerShared::set_ascratelast6m(int value)
|
|
|
|
{
|
2019-12-25 09:45:20 +00:00
|
|
|
qPrefDivePlanner::set_ascratelast6m(lrint((float)value * TO_MM_BY_SEC));
|
2019-12-12 19:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::ascratestops()
|
|
|
|
{
|
2019-12-25 09:45:20 +00:00
|
|
|
return lrint((float)prefs.ascratestops / TO_MM_BY_SEC);
|
2019-12-12 19:01:38 +00:00
|
|
|
}
|
|
|
|
void plannerShared::set_ascratestops(int value)
|
|
|
|
{
|
2019-12-25 09:45:20 +00:00
|
|
|
qPrefDivePlanner::set_ascratestops(lrint((float)value * TO_MM_BY_SEC));
|
2019-12-12 19:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::ascrate50()
|
|
|
|
{
|
2019-12-25 09:45:20 +00:00
|
|
|
return lrint((float)prefs.ascrate50 / TO_MM_BY_SEC);
|
2019-12-12 19:01:38 +00:00
|
|
|
}
|
|
|
|
void plannerShared::set_ascrate50(int value)
|
|
|
|
{
|
2019-12-25 09:45:20 +00:00
|
|
|
qPrefDivePlanner::set_ascrate50(lrint((float)value * TO_MM_BY_SEC));
|
2019-12-12 19:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::ascrate75()
|
|
|
|
{
|
2019-12-25 09:45:20 +00:00
|
|
|
return lrint((float)prefs.ascrate75 / TO_MM_BY_SEC);
|
2019-12-12 19:01:38 +00:00
|
|
|
}
|
|
|
|
void plannerShared::set_ascrate75(int value)
|
|
|
|
{
|
2019-12-25 09:45:20 +00:00
|
|
|
qPrefDivePlanner::set_ascrate75(lrint((float)value * TO_MM_BY_SEC));
|
2019-12-12 19:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::descrate()
|
|
|
|
{
|
2019-12-25 09:45:20 +00:00
|
|
|
return lrint((float)prefs.descrate / TO_MM_BY_SEC);
|
2019-12-12 19:01:38 +00:00
|
|
|
}
|
|
|
|
void plannerShared::set_descrate(int value)
|
|
|
|
{
|
2019-12-25 09:45:20 +00:00
|
|
|
qPrefDivePlanner::set_descrate(lrint((float)value * TO_MM_BY_SEC));
|
2019-12-12 19:01:38 +00:00
|
|
|
}
|
|
|
|
|
2019-12-14 19:29:16 +00:00
|
|
|
// 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::safetystop()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::safetystop();
|
|
|
|
}
|
|
|
|
void plannerShared::set_safetystop(bool value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setSafetyStop(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::gflow()
|
|
|
|
{
|
|
|
|
return qPrefTechnicalDetails::gflow();
|
|
|
|
}
|
|
|
|
void plannerShared::set_gflow(int value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setGFLow(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::gfhigh()
|
|
|
|
{
|
|
|
|
return qPrefTechnicalDetails::gflow();
|
|
|
|
}
|
|
|
|
void plannerShared::set_gfhigh(int value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setGFHigh(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::vpmb_conservatism()
|
|
|
|
{
|
|
|
|
return qPrefTechnicalDetails::vpmb_conservatism();
|
|
|
|
}
|
|
|
|
void plannerShared::set_vpmb_conservatism(int value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setVpmbConservatism(value);
|
|
|
|
}
|
2019-12-24 10:22:48 +00:00
|
|
|
|
|
|
|
bool plannerShared::dobailout()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::dobailout();
|
|
|
|
}
|
|
|
|
void plannerShared::set_dobailout(bool value)
|
|
|
|
{
|
|
|
|
qPrefDivePlanner::set_dobailout(value);
|
|
|
|
DivePlannerPointsModel::instance()->emitDataChanged();
|
|
|
|
}
|
2019-12-23 11:24:43 +00:00
|
|
|
|
|
|
|
bool plannerShared::drop_stone_mode()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::drop_stone_mode();
|
|
|
|
}
|
|
|
|
void plannerShared::set_drop_stone_mode(bool value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setDropStoneMode(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool plannerShared::last_stop()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::last_stop();
|
|
|
|
}
|
|
|
|
void plannerShared::set_last_stop(bool value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setLastStop6m(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool plannerShared::switch_at_req_stop()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::switch_at_req_stop();
|
|
|
|
}
|
|
|
|
void plannerShared::set_switch_at_req_stop(bool value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setSwitchAtReqStop(value);
|
|
|
|
}
|
2019-12-23 12:04:19 +00:00
|
|
|
|
|
|
|
bool plannerShared::doo2breaks()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::doo2breaks();
|
|
|
|
}
|
|
|
|
void plannerShared::set_doo2breaks(bool value)
|
|
|
|
{
|
|
|
|
qPrefDivePlanner::set_doo2breaks(value);
|
|
|
|
DivePlannerPointsModel::instance()->emitDataChanged();
|
|
|
|
}
|
2019-12-23 12:15:07 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2019-12-23 14:40:21 +00:00
|
|
|
|
|
|
|
double plannerShared::bottomsac()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::bottomsac() / 1000.0;
|
|
|
|
}
|
|
|
|
void plannerShared::set_bottomsac(double value)
|
|
|
|
{
|
|
|
|
// NO conversion, this is done in the planner model.
|
|
|
|
DivePlannerPointsModel::instance()->setBottomSac(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
double plannerShared::decosac()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::decosac() / 1000.0;
|
|
|
|
}
|
|
|
|
void plannerShared::set_decosac(double value)
|
|
|
|
{
|
|
|
|
// NO conversion, this is done in the planner model.
|
|
|
|
DivePlannerPointsModel::instance()->setDecoSac(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::problemsolvingtime()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::problemsolvingtime();
|
|
|
|
}
|
|
|
|
void plannerShared::set_problemsolvingtime(int value)
|
|
|
|
{
|
|
|
|
// NO conversion, this is done in the planner model.
|
|
|
|
DivePlannerPointsModel::instance()->setProblemSolvingTime(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
double plannerShared::sacfactor()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::sacfactor() / 100.0;
|
|
|
|
}
|
|
|
|
void plannerShared::set_sacfactor(double value)
|
|
|
|
{
|
|
|
|
// NO conversion, this is done in the planner model.
|
|
|
|
DivePlannerPointsModel::instance()->setSacFactor(value);
|
|
|
|
}
|
2019-12-23 16:23:24 +00:00
|
|
|
|
|
|
|
bool plannerShared::o2narcotic()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::o2narcotic();
|
|
|
|
}
|
|
|
|
void plannerShared::set_o2narcotic(bool value)
|
|
|
|
{
|
|
|
|
qPrefDivePlanner::set_o2narcotic(value);
|
|
|
|
DivePlannerPointsModel::instance()->emitDataChanged();
|
|
|
|
CylindersModel::instance()->updateBestMixes();
|
|
|
|
}
|
2019-12-23 16:25:46 +00:00
|
|
|
|
|
|
|
double plannerShared::bottompo2()
|
|
|
|
{
|
|
|
|
return (qPrefDivePlanner::bottompo2() / 1000.0);
|
|
|
|
}
|
|
|
|
void plannerShared::set_bottompo2(double value)
|
|
|
|
{
|
|
|
|
// NO conversion, this is done in the planner model.
|
|
|
|
qPrefDivePlanner::set_bottompo2((int) (value * 1000.0));
|
|
|
|
CylindersModel::instance()->updateBestMixes();
|
|
|
|
}
|
|
|
|
|
|
|
|
double plannerShared::decopo2()
|
|
|
|
{
|
2019-12-30 14:48:49 +00:00
|
|
|
return qPrefDivePlanner::decopo2() / 1000.0;
|
2019-12-23 16:25:46 +00:00
|
|
|
}
|
|
|
|
void plannerShared::set_decopo2(double value)
|
|
|
|
{
|
|
|
|
pressure_t olddecopo2;
|
|
|
|
olddecopo2.mbar = prefs.decopo2;
|
|
|
|
qPrefDivePlanner::instance()->set_decopo2((int) (value * 1000.0));
|
|
|
|
CylindersModel::instance()->updateDecoDepths(olddecopo2);
|
|
|
|
CylindersModel::instance()->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);
|
|
|
|
CylindersModel::instance()->updateBestMixes();
|
|
|
|
}
|
2019-12-23 17:16:55 +00:00
|
|
|
|
|
|
|
bool plannerShared::display_runtime()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::display_runtime();
|
|
|
|
}
|
|
|
|
void plannerShared::set_display_runtime(bool value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setDisplayRuntime(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool plannerShared::display_duration()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::display_duration();
|
|
|
|
}
|
|
|
|
void plannerShared::set_display_duration(bool value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setDisplayDuration(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool plannerShared::display_transitions()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::display_transitions();
|
|
|
|
}
|
|
|
|
void plannerShared::set_display_transitions(bool value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setDisplayTransitions(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool plannerShared::verbatim_plan()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::verbatim_plan();
|
|
|
|
}
|
|
|
|
void plannerShared::set_verbatim_plan(bool value)
|
|
|
|
{
|
2019-12-29 19:15:30 +00:00
|
|
|
DivePlannerPointsModel::instance()->setVerbatim(value);
|
2019-12-23 17:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool plannerShared::display_variations()
|
|
|
|
{
|
|
|
|
return qPrefDivePlanner::display_variations();
|
|
|
|
}
|
|
|
|
void plannerShared::set_display_variations(bool value)
|
|
|
|
{
|
|
|
|
DivePlannerPointsModel::instance()->setDisplayVariations(value);
|
|
|
|
}
|