forked from organicmaps/organicmaps
Added conversion from rating to enum for filtering purposes.
This commit is contained in:
parent
26e51002ad
commit
9a7f424bb1
2 changed files with 26 additions and 0 deletions
|
@ -301,6 +301,22 @@ namespace
|
|||
std::string const kEmptyRatingSymbol = "-";
|
||||
} // namespace
|
||||
|
||||
FilterRating GetFilterRating(float const rawRating)
|
||||
{
|
||||
CHECK_LESS_OR_EQUAL(rawRating, kTopRatingBound, ());
|
||||
CHECK_GREATER_OR_EQUAL(rawRating, 0, ());
|
||||
|
||||
auto const rounded = static_cast<int>(rawRating);
|
||||
if (rounded < 7)
|
||||
return FilterRating::Any;
|
||||
if (rounded < 8)
|
||||
return FilterRating::Good;
|
||||
if (rounded < 9)
|
||||
return FilterRating::VeryGood;
|
||||
|
||||
return FilterRating::Excellent;
|
||||
}
|
||||
|
||||
Impress GetImpress(float const rawRating)
|
||||
{
|
||||
CHECK_LESS_OR_EQUAL(rawRating, kTopRatingBound, ());
|
||||
|
|
|
@ -304,6 +304,14 @@ private:
|
|||
|
||||
namespace rating
|
||||
{
|
||||
enum class FilterRating
|
||||
{
|
||||
Any,
|
||||
Good,
|
||||
VeryGood,
|
||||
Excellent
|
||||
};
|
||||
|
||||
enum Impress
|
||||
{
|
||||
None,
|
||||
|
@ -314,6 +322,8 @@ enum Impress
|
|||
Excellent
|
||||
};
|
||||
|
||||
FilterRating GetFilterRating(float const rawRating);
|
||||
|
||||
Impress GetImpress(float const rawRating);
|
||||
std::string GetRatingFormatted(float const rawRating);
|
||||
} // namespace rating
|
||||
|
|
Loading…
Add table
Reference in a new issue