mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
planner: correct rating calculations.
Test show that the ratings calculations were off by +/- 1, due to rounding errors. Found due to test cases in tests (other commits) The calculations are copied 1-1 from diveplanner.cpp, but are used slightly different in plannerShared.cpp Correct calculations, by securing the calculation is done with float precision and the rounded with lrint(). Signed-off-by: Jan Iversen <jan@casacondor.com>
This commit is contained in:
parent
2d353a756b
commit
b6b514ea86
1 changed files with 11 additions and 11 deletions
|
@ -12,52 +12,52 @@ plannerShared *plannerShared::instance()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Used to convert between meter/feet and keep the qPref variables independent
|
// 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)
|
#define TO_MM_BY_SEC ((prefs.units.length == units::METERS) ? 1000.0 / 60.0 : feet_to_mm(1) / 60.0)
|
||||||
|
|
||||||
// Converted meter/feet qPrefDivePlanner values
|
// Converted meter/feet qPrefDivePlanner values
|
||||||
int plannerShared::ascratelast6m()
|
int plannerShared::ascratelast6m()
|
||||||
{
|
{
|
||||||
return lrint(prefs.ascratelast6m / TO_MM_BY_SEC);
|
return lrint((float)prefs.ascratelast6m / TO_MM_BY_SEC);
|
||||||
}
|
}
|
||||||
void plannerShared::set_ascratelast6m(int value)
|
void plannerShared::set_ascratelast6m(int value)
|
||||||
{
|
{
|
||||||
qPrefDivePlanner::set_ascratelast6m(value * TO_MM_BY_SEC);
|
qPrefDivePlanner::set_ascratelast6m(lrint((float)value * TO_MM_BY_SEC));
|
||||||
}
|
}
|
||||||
|
|
||||||
int plannerShared::ascratestops()
|
int plannerShared::ascratestops()
|
||||||
{
|
{
|
||||||
return lrint(prefs.ascratestops / TO_MM_BY_SEC);
|
return lrint((float)prefs.ascratestops / TO_MM_BY_SEC);
|
||||||
}
|
}
|
||||||
void plannerShared::set_ascratestops(int value)
|
void plannerShared::set_ascratestops(int value)
|
||||||
{
|
{
|
||||||
qPrefDivePlanner::set_ascratestops(value * TO_MM_BY_SEC);
|
qPrefDivePlanner::set_ascratestops(lrint((float)value * TO_MM_BY_SEC));
|
||||||
}
|
}
|
||||||
|
|
||||||
int plannerShared::ascrate50()
|
int plannerShared::ascrate50()
|
||||||
{
|
{
|
||||||
return lrint(prefs.ascrate50 / TO_MM_BY_SEC);
|
return lrint((float)prefs.ascrate50 / TO_MM_BY_SEC);
|
||||||
}
|
}
|
||||||
void plannerShared::set_ascrate50(int value)
|
void plannerShared::set_ascrate50(int value)
|
||||||
{
|
{
|
||||||
qPrefDivePlanner::set_ascrate50(value * TO_MM_BY_SEC);
|
qPrefDivePlanner::set_ascrate50(lrint((float)value * TO_MM_BY_SEC));
|
||||||
}
|
}
|
||||||
|
|
||||||
int plannerShared::ascrate75()
|
int plannerShared::ascrate75()
|
||||||
{
|
{
|
||||||
return lrint(prefs.ascrate75 / TO_MM_BY_SEC);
|
return lrint((float)prefs.ascrate75 / TO_MM_BY_SEC);
|
||||||
}
|
}
|
||||||
void plannerShared::set_ascrate75(int value)
|
void plannerShared::set_ascrate75(int value)
|
||||||
{
|
{
|
||||||
qPrefDivePlanner::set_ascrate75(value * TO_MM_BY_SEC);
|
qPrefDivePlanner::set_ascrate75(lrint((float)value * TO_MM_BY_SEC));
|
||||||
}
|
}
|
||||||
|
|
||||||
int plannerShared::descrate()
|
int plannerShared::descrate()
|
||||||
{
|
{
|
||||||
return lrint(prefs.descrate / TO_MM_BY_SEC);
|
return lrint((float)prefs.descrate / TO_MM_BY_SEC);
|
||||||
}
|
}
|
||||||
void plannerShared::set_descrate(int value)
|
void plannerShared::set_descrate(int value)
|
||||||
{
|
{
|
||||||
qPrefDivePlanner::set_descrate(value * TO_MM_BY_SEC);
|
qPrefDivePlanner::set_descrate(lrint((float)value * TO_MM_BY_SEC));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Planning values
|
// Planning values
|
||||||
|
|
Loading…
Add table
Reference in a new issue