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-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
|
|
|
|
#define TO_MM_BY_SEC ((prefs.units.length == units::METERS) ? 1000.0 / 60.0 : feet_to_mm(1.0) / 60.0)
|
|
|
|
|
|
|
|
// Converted meter/feet qPrefDivePlanner values
|
|
|
|
int plannerShared::ascratelast6m()
|
|
|
|
{
|
|
|
|
return lrint(prefs.ascratelast6m / TO_MM_BY_SEC);
|
|
|
|
}
|
|
|
|
void plannerShared::set_ascratelast6m(int value)
|
|
|
|
{
|
|
|
|
qPrefDivePlanner::set_ascratelast6m(value * TO_MM_BY_SEC);
|
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::ascratestops()
|
|
|
|
{
|
|
|
|
return lrint(prefs.ascratestops / TO_MM_BY_SEC);
|
|
|
|
}
|
|
|
|
void plannerShared::set_ascratestops(int value)
|
|
|
|
{
|
|
|
|
qPrefDivePlanner::set_ascratestops(value * TO_MM_BY_SEC);
|
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::ascrate50()
|
|
|
|
{
|
|
|
|
return lrint(prefs.ascrate50 / TO_MM_BY_SEC);
|
|
|
|
}
|
|
|
|
void plannerShared::set_ascrate50(int value)
|
|
|
|
{
|
|
|
|
qPrefDivePlanner::set_ascrate50(value * TO_MM_BY_SEC);
|
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::ascrate75()
|
|
|
|
{
|
|
|
|
return lrint(prefs.ascrate75 / TO_MM_BY_SEC);
|
|
|
|
}
|
|
|
|
void plannerShared::set_ascrate75(int value)
|
|
|
|
{
|
|
|
|
qPrefDivePlanner::set_ascrate75(value * TO_MM_BY_SEC);
|
|
|
|
}
|
|
|
|
|
|
|
|
int plannerShared::descrate()
|
|
|
|
{
|
|
|
|
return lrint(prefs.descrate / TO_MM_BY_SEC);
|
|
|
|
}
|
|
|
|
void plannerShared::set_descrate(int value)
|
|
|
|
{
|
|
|
|
qPrefDivePlanner::set_descrate(value * TO_MM_BY_SEC);
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|