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"
|
2020-01-02 10:55:27 +00:00
|
|
|
#include "core/settings/qPrefUnit.h"
|
2019-12-14 19:29:16 +00:00
|
|
|
#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;
|
|
|
|
}
|
2020-01-02 10:55:27 +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);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
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()
|
|
|
|
{
|
2020-01-08 11:06:23 +00: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 14:40:21 +00:00
|
|
|
}
|
|
|
|
void plannerShared::set_bottomsac(double value)
|
|
|
|
{
|
2020-01-08 11:06:23 +00:00
|
|
|
#ifdef SUBSURFACE_MOBILE
|
|
|
|
if (qPrefUnits::volume() == units::CUFT)
|
|
|
|
value /= 100; // cuft without decimals (0 - 300)
|
|
|
|
#endif
|
|
|
|
|
2019-12-23 14:40:21 +00:00
|
|
|
// NO conversion, this is done in the planner model.
|
|
|
|
DivePlannerPointsModel::instance()->setBottomSac(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
double plannerShared::decosac()
|
|
|
|
{
|
2020-01-08 11:06:23 +00: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 14:40:21 +00:00
|
|
|
}
|
|
|
|
void plannerShared::set_decosac(double value)
|
|
|
|
{
|
2020-01-08 11:06:23 +00:00
|
|
|
#ifdef SUBSURFACE_MOBILE
|
|
|
|
if (qPrefUnits::volume() == units::CUFT)
|
|
|
|
value /= 100; // cuft without decimals (0 - 300)
|
|
|
|
#endif
|
|
|
|
|
2019-12-23 14:40:21 +00:00
|
|
|
// NO conversion, this is done in the planner model.
|
|
|
|
DivePlannerPointsModel::instance()->setDecoSac(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();
|
|
|
|
}
|