blob: fae9d43fc25e93892eb15b792bf493ecc2372a71 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
* Quackle -- Crossword game artificial intelligence and analysis tool
* Copyright (C) 2005-2014 Jason Katz-Brown and John O'Laughlin.
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef QUACKER_GRAPHICAL_REPORTER_H
#define QUACKER_GRAPHICAL_REPORTER_H
#include <QFile>
#include <QTextStream>
namespace Quackle
{
class ComputerPlayer;
class GamePosition;
class Game;
}
class GraphicalReporter
{
public:
// If generateImages is true, output must be an existing directory.
// If false, output is an HTML file.
GraphicalReporter(const QString &output, bool generateImages);
// makes header and report for all positions
void reportGame(const Quackle::Game &game, Quackle::ComputerPlayer *computerPlayer);
// makes header and puts into the index file
void reportHeader(const Quackle::Game &game);
// makes graphical displays of top n plays of position, dumps to images
// and puts links to them in the index file.
void reportPosition(const Quackle::GamePosition &position, Quackle::ComputerPlayer *computerPlayer);
protected:
QString makeFilename(const QString &filename) const;
// opens the index file (m_output/index.html or m_output if it's a file)
// if it is not already open
void openIndex();
QString m_output;
QFile m_indexFile;
QTextStream m_indexStream;
bool m_generateImages;
};
#endif
|