simplyfied test result evaluation
This commit is contained in:
parent
dbf29d194b
commit
017ff01a83
@ -13,6 +13,7 @@ qt5_wrap_ui(GENUS_UI
|
||||
add_library(${PROJECT_NAME}
|
||||
ResultWidget.cpp
|
||||
ResultModel.cpp
|
||||
PRMap.cpp
|
||||
${GENUS_UI}
|
||||
)
|
||||
|
||||
|
41
source/ResultWidget/PRMap.cpp
Normal file
41
source/ResultWidget/PRMap.cpp
Normal file
@ -0,0 +1,41 @@
|
||||
#include "PRMap.h"
|
||||
|
||||
unsigned int PRMap::lookup(const Age &age, const unsigned int &points)
|
||||
{
|
||||
if (points >= m_PRs.size())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
auto ageIndex = [&]() -> size_t {
|
||||
if (m_ages.empty())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (age < m_ages.front())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (m_ages.back() < age)
|
||||
{
|
||||
return m_ages.size() - 1;
|
||||
}
|
||||
|
||||
for (size_t index = 1; index < m_ages.size(); ++index)
|
||||
{
|
||||
if (age < m_ages.at(index))
|
||||
{
|
||||
return index - 1;
|
||||
}
|
||||
}
|
||||
}();
|
||||
|
||||
if (ageIndex >= m_PRs.at(points).size())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
return m_PRs.at(points).at(ageIndex);
|
||||
}
|
14
source/ResultWidget/PRMap.h
Normal file
14
source/ResultWidget/PRMap.h
Normal file
@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include "../Age.h"
|
||||
#include <vector>
|
||||
|
||||
class PRMap
|
||||
{
|
||||
protected:
|
||||
std::vector<Age> m_ages;
|
||||
std::vector<std::vector<unsigned int>> m_PRs;
|
||||
|
||||
public:
|
||||
unsigned int lookup(const Age &age, const unsigned int &points);
|
||||
};
|
@ -21,71 +21,49 @@ int ResultModel::columnCount(const QModelIndex &parent) const
|
||||
|
||||
QVariant ResultModel::data(const QModelIndex &index, int role) const
|
||||
{
|
||||
if (role == Qt::DisplayRole)
|
||||
if (role == Qt::DisplayRole && index.column() < m_results.size())
|
||||
{
|
||||
switch (index.row())
|
||||
{
|
||||
case 0:
|
||||
if (index.column() < m_results.size())
|
||||
{
|
||||
size_t points = m_results[index.column()].points();
|
||||
auto points = m_results[index.column()].points();
|
||||
if (points != 0)
|
||||
{
|
||||
return static_cast<uint>(points);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 1:
|
||||
switch (index.column())
|
||||
{
|
||||
case 8:
|
||||
auto pr = m_results[index.column()].pr();
|
||||
if (pr >= 84)
|
||||
{
|
||||
auto pR = getPluralPR();
|
||||
if (pR >= 84)
|
||||
{
|
||||
return pR;
|
||||
}
|
||||
return static_cast<uint>(pr);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
switch (index.column())
|
||||
{
|
||||
case 8:
|
||||
auto pr = m_results[index.column()].pr();
|
||||
if (pr < 84 && pr > 16)
|
||||
{
|
||||
auto pR = getPluralPR();
|
||||
if (pR < 84 && pR > 16)
|
||||
{
|
||||
return pR;
|
||||
}
|
||||
return static_cast<uint>(pr);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
switch (index.column())
|
||||
{
|
||||
case 8:
|
||||
auto pr = m_results[index.column()].pr();
|
||||
if (pr <= 16)
|
||||
{
|
||||
auto pR = getPluralPR();
|
||||
if (pR <= 16)
|
||||
{
|
||||
return pR;
|
||||
}
|
||||
return static_cast<uint>(pr);
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
return "-";
|
||||
}
|
||||
@ -140,17 +118,9 @@ void ResultModel::setPluralResult(size_t points)
|
||||
{
|
||||
if (m_results[8].points() != points)
|
||||
{
|
||||
m_results[8] = points;
|
||||
m_results[8].setPoints(points);
|
||||
m_results[8].setPR(PluralPR().lookup(m_age, points));
|
||||
emit dataChanged(index(0, 8), index(4, 8));
|
||||
}
|
||||
}
|
||||
|
||||
unsigned int ResultModel::getPluralPoints() const
|
||||
{
|
||||
return m_results[8].points();
|
||||
}
|
||||
|
||||
unsigned int ResultModel::getPluralPR() const
|
||||
{
|
||||
return PluralPR().lookup(m_age, getPluralPoints());
|
||||
}
|
||||
|
@ -1,20 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#include "../Age.h"
|
||||
#include <vector>
|
||||
#include "PRMap.h"
|
||||
#include <QAbstractTableModel>
|
||||
|
||||
class PluralPR
|
||||
class PluralPR : public PRMap
|
||||
{
|
||||
public:
|
||||
PluralPR()
|
||||
{
|
||||
// clang-format off
|
||||
const std::vector<Age> m_ages = {
|
||||
m_ages = {
|
||||
{ 4, 0 },
|
||||
{ 4, 6 },
|
||||
{ 5, 6 },
|
||||
{ 9, 0 }
|
||||
};
|
||||
|
||||
const std::vector<std::vector<unsigned int>> m_PRs = {
|
||||
m_PRs = {
|
||||
{ 0, 0, 0 },
|
||||
{ 0, 1, 0 },
|
||||
{ 0, 1, 0 },
|
||||
@ -27,46 +30,6 @@ class PluralPR
|
||||
{ 100, 100, 100 }
|
||||
};
|
||||
// clang-format on
|
||||
|
||||
public:
|
||||
unsigned int lookup(const Age &age, const unsigned int &points)
|
||||
{
|
||||
if (points >= m_PRs.size())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
auto ageIndex = [&]() -> size_t {
|
||||
if (m_ages.empty())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (age < m_ages.front())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (m_ages.back() < age)
|
||||
{
|
||||
return m_ages.size() - 1;
|
||||
}
|
||||
|
||||
for (size_t index = 1; index < m_ages.size(); ++index)
|
||||
{
|
||||
if (age < m_ages.at(index))
|
||||
{
|
||||
return index - 1;
|
||||
}
|
||||
}
|
||||
}();
|
||||
|
||||
if (ageIndex >= m_PRs.at(points).size())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
return m_PRs.at(points).at(ageIndex);
|
||||
}
|
||||
};
|
||||
|
||||
@ -74,20 +37,25 @@ class TestResult
|
||||
{
|
||||
private:
|
||||
QString m_name;
|
||||
size_t m_points;
|
||||
size_t m_points = 0;
|
||||
size_t m_pr = 0;
|
||||
|
||||
public:
|
||||
TestResult(const char *name)
|
||||
: m_name(name)
|
||||
, m_points(0)
|
||||
{
|
||||
}
|
||||
|
||||
void operator=(const size_t &points)
|
||||
void setPoints(const size_t &points)
|
||||
{
|
||||
m_points = points;
|
||||
}
|
||||
|
||||
void setPR(const unsigned int &pr)
|
||||
{
|
||||
m_pr = pr;
|
||||
}
|
||||
|
||||
const QString &name() const
|
||||
{
|
||||
return m_name;
|
||||
@ -97,6 +65,11 @@ public:
|
||||
{
|
||||
return m_points;
|
||||
}
|
||||
|
||||
const size_t pr() const
|
||||
{
|
||||
return m_pr;
|
||||
}
|
||||
};
|
||||
|
||||
class ResultModel : public QAbstractTableModel
|
||||
@ -121,8 +94,4 @@ public:
|
||||
|
||||
void setAge(const Age &age);
|
||||
void setPluralResult(size_t points);
|
||||
|
||||
private:
|
||||
unsigned int getPluralPoints() const;
|
||||
unsigned int getPluralPR() const;
|
||||
};
|
||||
|
Reference in New Issue
Block a user