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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
/*
* Quackle -- Crossword game artificial intelligence and analysis tool
* Copyright (C) 2005-2019 Jason Katz-Brown, John O'Laughlin, and John Fultz.
*
* 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/>.
*/
#include <math.h>
#include <QtWidgets>
#include <bag.h>
#include <game.h>
#include <quackleio/util.h>
#include "bagdisplay.h"
#include "geometry.h"
BagDisplay::BagDisplay(QWidget *parent)
: View(parent)
{
QVBoxLayout *layout = new QVBoxLayout(this);
Geometry::setupInnerLayout(layout);
m_textEdit = new QTextEdit;
m_textEdit->setReadOnly(true);
m_textEdit->setFontFamily("Courier");
m_textEdit->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
m_label = new QLabel;
m_label->setWordWrap(true);
m_label->setBuddy(m_textEdit);
layout->addWidget(m_label);
layout->addWidget(m_textEdit);
layout->setStretchFactor(m_textEdit, 10);
showTiles(Quackle::LongLetterString());
}
BagDisplay::~BagDisplay()
{
}
void BagDisplay::positionChanged(const Quackle::GamePosition *position)
{
showTiles(position->unseenBag().tiles());
// Birthday
for (const auto& it : position->players())
{
if (it.name() == "zorbonauts")
{
m_label->setText(tr("The bag is collapsed in a transparent dead jellyfish-like heap on the table while flies buzz round"));
break;
}
}
}
void BagDisplay::showTiles(const Quackle::LongLetterString &tiles)
{
if (tiles.empty())
{
m_label->setText(tr("&Bag is collapsed in a wrinkled heap on the table"));
return;
}
QMap<Quackle::Letter, int> counts;
QString text;
for (Quackle::LongLetterString::const_iterator it = tiles.begin(); it != tiles.end(); ++it)
{
if (counts.contains(*it))
counts[*it] += 1;
else
counts.insert(*it, 1);
}
QFontMetrics metrics(m_textEdit->currentFont());
int maxLineWidth = 0;
for (QMap<Quackle::Letter, int>::iterator it = counts.begin(); it != counts.end(); ++it)
{
const int count = it.value();
QString line;
const QString qstring = QuackleIO::Util::letterToQString(it.key());
const QString sanitizedQString = QuackleIO::Util::sanitizeUserVisibleLetterString(qstring);
const bool separateWithSpaces = qstring != sanitizedQString;
for (int i = 0; i < count; ++i)
{
if (separateWithSpaces && i > 0) line += " ";
line += sanitizedQString;
}
#if (QT_VERSION >= QT_VERSION_CHECK(5, 11, 0))
// Kill Qt 5.13 deprecation warning without breaking pre-5.11 builds
const int lineWidth = metrics.horizontalAdvance(line);
#else
const int lineWidth = metrics.width(line);
#endif
if (lineWidth > maxLineWidth)
maxLineWidth = lineWidth;
text += line;
text += "\n";
}
m_label->setText(tr("%1 unseen tiles").arg(tiles.length()));
m_textEdit->setPlainText(text);
const int minimumMaxLineWidth = 16;
if (maxLineWidth < minimumMaxLineWidth)
maxLineWidth = minimumMaxLineWidth;
const int maximumWidth = maxLineWidth + m_textEdit->frameWidth() * 2 + (m_textEdit->verticalScrollBar()->isVisible()? m_textEdit->verticalScrollBar()->width() : 0) + 10;
m_textEdit->setMaximumSize(maximumWidth, 26 * 100);
m_textEdit->resize(m_textEdit->maximumSize());
}
|