Added conversion from rating to enum for filtering purposes.

This commit is contained in:
VladiMihaylenko 2018-03-30 18:07:08 +03:00 committed by mpimenov
parent 26e51002ad
commit 9a7f424bb1
2 changed files with 26 additions and 0 deletions

View file

@ -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, ());

View file

@ -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