blob: 4eca811ae1d5b7cd1602bf05098bb7ea5ba0c63b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#include "MedalWinner.h"
/**
* Replaces/sets the won medals of a competitor.
*
* @param medals The won medals with their amount.
* @return True, if successful.
*/
bool MedalWinner::setMedals(const QJsonObject &medals) {
if (!medals.contains("ME_GOLD")
|| !medals.contains("ME_SILVER")
|| !medals.contains("ME_BRONZE")) {
throw invalid_argument("Medal object of competitor is incomplete.");
}
this->gold = medals["ME_GOLD"].toInt();
this->silver = medals["ME_SILVER"].toInt();
this->bronze = medals["ME_BRONZE"].toInt();
return true;
}
/**
* Static compare method, which can compare the amount of medals of two MedalWinners.
* Gold has the highest priority, then silver and finally bronze.
*
* @param lComp First competitor to compare.
* @param rComp Second competitor to compare.
* @return True, if the second competitor got more or higher medals.
*/
bool MedalWinner::compare(MedalWinner lComp, MedalWinner rComp) {
// create difference between medal amounts
int gold = lComp.getGold() - rComp.getGold();
int silver = lComp.getSilver() - rComp.getSilver();
int bronze = lComp.getBronze() - rComp.getBronze();
// compare medal differences
return gold < 0 || (gold == 0 && (silver < 0 || (silver == 0 && bronze < 0)));
}
|