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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
/*
This file is part of Leela Zero.
Copyright (C) 2017-2018 Seth Troisi
Leela Zero is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Leela Zero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Leela Zero. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Results.h"
#include "../autogtp/Game.h"
#include "SPRT.h"
#include <QString>
#include <iostream>
void Results::addGameResult(Sprt::GameResult result, int side) {
m_gamesPlayed++;
if (result == Sprt::GameResult::Win) {
if (side == Game::BLACK)
m_blackWins++;
else
m_whiteWins++;
} else {
if (side == Game::BLACK)
m_blackLosses++;
else
m_whiteLosses++;
}
}
std::string winPercentColumn(int wins, int games) {
auto line = QString::asprintf(" %4d %5.2f%%", wins,
100.0f * (wins / (float)games));
return line.toStdString();
}
void Results::printResults(const QString& firstNetName,
const QString& secondNetName) const {
/*
Produces reports in this format.
ABCD1234 v DEFG5678 (176 games)
wins black white
ABDC1234 65 36.93% 37 42.53% 28 31.46%
DEFG5678 111 63.07% 61 68.54% 50 57.47%
98 55.68% 78 44.32%
*/
auto first_name = firstNetName.leftJustified(8, ' ', true)\
.toStdString();
auto second_name = secondNetName.leftJustified(8, ' ', true)\
.toStdString();
// Results for player one
auto p1_wins = m_blackWins + m_whiteWins;
auto p1_losses = m_blackLosses + m_whiteLosses;
// Results for black vs white
auto black_wins = m_blackWins + m_whiteLosses;
auto white_wins = m_whiteWins + m_blackLosses;
// Formatted title line
auto title_line = QString::asprintf("%13s %-11s %-11s %s\n",
"", "wins", "black", "white");
std::cout
<< first_name << " v " << second_name
<< " ( " << m_gamesPlayed << " games)" << std::endl;
std::cout << title_line.toStdString();
std::cout
<< first_name
<< winPercentColumn(p1_wins, m_gamesPlayed)
<< winPercentColumn(m_blackWins, black_wins)
<< winPercentColumn(m_whiteWins, white_wins) << std::endl;
std::cout
<< second_name
<< winPercentColumn(p1_losses, m_gamesPlayed)
<< winPercentColumn(m_whiteLosses, black_wins)
<< winPercentColumn(m_blackLosses, white_wins) << std::endl;
std::cout
<< std::string(20, ' ')
<< winPercentColumn(black_wins, m_gamesPlayed)
<< winPercentColumn(white_wins, m_gamesPlayed) << std::endl;
}
QTextStream& operator<<(QTextStream& stream, const Results& r) {
stream << r.m_gamesPlayed << ' ';
stream << r.m_blackWins << ' ' << r.m_blackLosses << ' ';
stream << r.m_whiteWins << ' ' << r.m_whiteLosses << endl;
return stream;
}
QTextStream& operator>>(QTextStream& stream, Results& r) {
stream >> r.m_gamesPlayed;
stream >> r.m_blackWins;
stream >> r.m_blackLosses;
stream >> r.m_whiteWins;
stream >> r.m_whiteLosses;
return stream;
}
|