#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->m_gold = medals["ME_GOLD"].toInt(); this->m_silver = medals["ME_SILVER"].toInt(); this->m_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 m_silver and finally m_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))); }