author | unc0rr |
Mon, 13 Apr 2009 12:27:59 +0000 | |
changeset 1985 | 0792e1485d07 |
parent 1874 | 1b145e099b75 |
child 2021 | a591afb43768 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2006-2008 Igor Ulyanov <iulyanov@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#include <QPushButton> |
|
20 |
#include <QBuffer> |
|
21 |
#include <QUuid> |
|
22 |
#include <QBitmap> |
|
23 |
#include <QPainter> |
|
24 |
#include <QLinearGradient> |
|
25 |
#include <QColor> |
|
249 | 26 |
#include <QTextStream> |
677
9d0bcc3c903a
Save some vertical pixels using fewer margin in HWMapContainer
unc0rr
parents:
530
diff
changeset
|
27 |
#include <QApplication> |
1209 | 28 |
#include <QLabel> |
29 |
#include <QListWidget> |
|
30 |
#include <QVBoxLayout> |
|
1224 | 31 |
#include <QIcon> |
249 | 32 |
|
33 |
#include "hwconsts.h" |
|
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
682
diff
changeset
|
34 |
#include "mapContainer.h" |
1209 | 35 |
#include "igbox.h" |
184 | 36 |
|
37 |
HWMapContainer::HWMapContainer(QWidget * parent) : |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
38 |
QWidget(parent), |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
39 |
mainLayout(this), |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
40 |
pMap(0) |
184 | 41 |
{ |
1790 | 42 |
hhSmall.load(":/res/hh_small.png"); |
43 |
hhLimit = 18; |
|
1797 | 44 |
templateFilter = 0; |
1790 | 45 |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
46 |
mainLayout.setContentsMargins(QApplication::style()->pixelMetric(QStyle::PM_LayoutLeftMargin), |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
47 |
1, |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
48 |
QApplication::style()->pixelMetric(QStyle::PM_LayoutRightMargin), |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
49 |
QApplication::style()->pixelMetric(QStyle::PM_LayoutBottomMargin)); |
1790 | 50 |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
51 |
imageButt = new QPushButton(this); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
52 |
imageButt->setObjectName("imageButt"); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
53 |
imageButt->setFixedSize(256 + 6, 128 + 6); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
54 |
imageButt->setFlat(true); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
55 |
imageButt->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);//QSizePolicy::Minimum, QSizePolicy::Minimum); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
56 |
mainLayout.addWidget(imageButt, 0, 0, 1, 2); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
57 |
connect(imageButt, SIGNAL(clicked()), this, SLOT(setRandomSeed())); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
58 |
connect(imageButt, SIGNAL(clicked()), this, SLOT(setRandomTheme())); |
249 | 59 |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
60 |
chooseMap = new QComboBox(this); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
61 |
chooseMap->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
62 |
chooseMap->addItem(QComboBox::tr("generated map...")); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
63 |
for (int i = 0; i < mapList->size(); ++i) { |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
64 |
QString map = (*mapList)[i]; |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
65 |
QFile mapCfgFile( |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
66 |
QString("%1/Maps/%2/map.cfg") |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
67 |
.arg(datadir->absolutePath()) |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
68 |
.arg(map)); |
1790 | 69 |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
70 |
if (mapCfgFile.open(QFile::ReadOnly)) { |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
71 |
QString theme; |
1790 | 72 |
quint32 limit = 0; |
73 |
QList<QVariant> mapInfo; |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
74 |
QTextStream input(&mapCfgFile); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
75 |
input >> theme; |
1790 | 76 |
input >> limit; |
77 |
mapInfo.push_back(theme); |
|
78 |
if (limit) |
|
79 |
mapInfo.push_back(limit); |
|
80 |
else |
|
81 |
mapInfo.push_back(18); |
|
82 |
chooseMap->addItem(map, mapInfo); |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
83 |
mapCfgFile.close(); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
84 |
} |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
85 |
} |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
86 |
|
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
87 |
connect(chooseMap, SIGNAL(currentIndexChanged(int)), this, SLOT(mapChanged(int))); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
88 |
mainLayout.addWidget(chooseMap, 1, 1); |
249 | 89 |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
90 |
QLabel * lblMap = new QLabel(tr("Map"), this); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
91 |
mainLayout.addWidget(lblMap, 1, 0); |
1209 | 92 |
|
1802 | 93 |
lblFilter = new QLabel(tr("Filter"), this); |
94 |
mainLayout.addWidget(lblFilter, 2, 0); |
|
95 |
||
96 |
CB_TemplateFilter = new QComboBox(this); |
|
97 |
CB_TemplateFilter->addItem(tr("All"), 0); |
|
98 |
CB_TemplateFilter->addItem(tr("Small"), 1); |
|
99 |
CB_TemplateFilter->addItem(tr("Medium"), 2); |
|
100 |
CB_TemplateFilter->addItem(tr("Large"), 3); |
|
101 |
CB_TemplateFilter->addItem(tr("Cavern"), 4); |
|
102 |
CB_TemplateFilter->addItem(tr("Wacky"), 5); |
|
103 |
mainLayout.addWidget(CB_TemplateFilter, 2, 1); |
|
104 |
||
105 |
connect(CB_TemplateFilter, SIGNAL(currentIndexChanged(int)), this, SLOT(templateFilterChanged(int))); |
|
106 |
||
1209 | 107 |
gbThemes = new IconedGroupBox(this); |
1248 | 108 |
gbThemes->setTitleTextPadding(60); |
1810 | 109 |
gbThemes->setContentTopPadding(6); |
1209 | 110 |
gbThemes->setTitle(tr("Themes")); |
1248 | 111 |
|
112 |
//gbThemes->setStyleSheet("padding: 0px"); // doesn't work - stylesheet is set with icon |
|
1802 | 113 |
mainLayout.addWidget(gbThemes, 0, 2, 3, 1); |
1210 | 114 |
|
1209 | 115 |
QVBoxLayout * gbTLayout = new QVBoxLayout(gbThemes); |
1228 | 116 |
gbTLayout->setContentsMargins(0, 0, 0 ,0); |
117 |
gbTLayout->setSpacing(0); |
|
1209 | 118 |
lwThemes = new QListWidget(this); |
1210 | 119 |
lwThemes->setMinimumHeight(30); |
1248 | 120 |
lwThemes->setFixedWidth(120); |
1211 | 121 |
for (int i = 0; i < Themes->size(); ++i) { |
122 |
QListWidgetItem * lwi = new QListWidgetItem(); |
|
123 |
lwi->setText(Themes->at(i)); |
|
124 |
lwi->setTextAlignment(Qt::AlignHCenter); |
|
125 |
lwThemes->addItem(lwi); |
|
126 |
} |
|
1215 | 127 |
connect(lwThemes, SIGNAL(currentRowChanged(int)), this, SLOT(themeSelected(int))); |
1802 | 128 |
|
129 |
// override default style to tighten up theme scroller |
|
130 |
lwThemes->setStyleSheet(QString( |
|
131 |
"QListWidget{" |
|
132 |
"border: solid;" |
|
133 |
"border-width: 0px;" |
|
134 |
"border-radius: 0px;" |
|
135 |
"border-color: transparent;" |
|
136 |
"background-color: #0d0544;" |
|
137 |
"color: #ffcc00;" |
|
138 |
"font: bold 14px;" |
|
139 |
"}" |
|
140 |
) |
|
141 |
); |
|
142 |
||
1209 | 143 |
gbTLayout->addWidget(lwThemes); |
144 |
lwThemes->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Minimum); |
|
145 |
||
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
146 |
mainLayout.setSizeConstraint(QLayout::SetFixedSize);//SetMinimumSize |
1215 | 147 |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
148 |
setRandomSeed(); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
149 |
setRandomTheme(); |
184 | 150 |
} |
151 |
||
152 |
void HWMapContainer::setImage(const QImage newImage) |
|
153 |
{ |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
154 |
QPixmap px(256, 128); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
155 |
QPixmap pxres(256, 128); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
156 |
QPainter p(&pxres); |
184 | 157 |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
158 |
px.fill(Qt::yellow); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
159 |
QBitmap bm = QBitmap::fromImage(newImage); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
160 |
px.setMask(bm); |
184 | 161 |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
162 |
QLinearGradient linearGrad(QPoint(128, 0), QPoint(128, 128)); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
163 |
linearGrad.setColorAt(1, QColor(0, 0, 192)); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
164 |
linearGrad.setColorAt(0, QColor(66, 115, 225)); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
165 |
p.fillRect(QRect(0, 0, 256, 128), linearGrad); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
166 |
p.drawPixmap(QPoint(0, 0), px); |
184 | 167 |
|
1790 | 168 |
addInfoToPreview(pxres); |
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
169 |
chooseMap->setCurrentIndex(0); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
170 |
pMap = 0; |
249 | 171 |
} |
172 |
||
1790 | 173 |
void HWMapContainer::setHHLimit(int newHHLimit) |
174 |
{ |
|
175 |
hhLimit = newHHLimit; |
|
176 |
} |
|
177 |
||
249 | 178 |
void HWMapContainer::mapChanged(int index) |
179 |
{ |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
180 |
if(!index) { |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
181 |
changeImage(); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
182 |
gbThemes->show(); |
1802 | 183 |
lblFilter->show(); |
184 |
CB_TemplateFilter->show(); |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
185 |
emit mapChanged("+rnd+"); |
1874 | 186 |
emit themeChanged(chooseMap->itemData(0).toList()[0].toString()); |
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
187 |
} else |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
188 |
{ |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
189 |
loadMap(index); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
190 |
gbThemes->hide(); |
1802 | 191 |
lblFilter->hide(); |
192 |
CB_TemplateFilter->hide(); |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
193 |
emit mapChanged(chooseMap->currentText()); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
194 |
} |
331 | 195 |
} |
196 |
||
197 |
void HWMapContainer::loadMap(int index) |
|
198 |
{ |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
199 |
QPixmap mapImage; |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
200 |
if(!mapImage.load(datadir->absolutePath() + "/Maps/" + chooseMap->currentText() + "/preview.png")) { |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
201 |
changeImage(); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
202 |
chooseMap->setCurrentIndex(0); |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
203 |
return; |
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
204 |
} |
1790 | 205 |
|
206 |
hhLimit = chooseMap->itemData(index).toList()[1].toInt(); |
|
207 |
addInfoToPreview(mapImage); |
|
208 |
} |
|
209 |
||
210 |
// Should this add text to identify map size? |
|
211 |
void HWMapContainer::addInfoToPreview(QPixmap image) |
|
212 |
{ |
|
213 |
QPixmap finalImage = QPixmap(image.size()); |
|
214 |
finalImage.fill(QColor(0, 0, 0, 0)); |
|
215 |
||
216 |
QPainter p(&finalImage); |
|
217 |
p.drawPixmap(image.rect(), image); |
|
218 |
//p.setPen(QColor(0xf4,0x9e,0xe9)); |
|
219 |
p.setPen(QColor(0xff,0xcc,0x00)); |
|
220 |
p.setBrush(QColor(0, 0, 0)); |
|
221 |
p.drawRect(image.rect().width() - hhSmall.rect().width() - 28, 3, 40, 20); |
|
222 |
p.setFont(QFont("MS Shell Dlg", 10)); |
|
223 |
p.drawText(image.rect().width() - hhSmall.rect().width() - 14 - (hhLimit > 9 ? 10 : 0), 18, QString::number(hhLimit)); |
|
224 |
p.drawPixmap(image.rect().width() - hhSmall.rect().width() - 5, 5, hhSmall.rect().width(), hhSmall.rect().height(), hhSmall); |
|
225 |
||
226 |
imageButt->setIcon(finalImage); |
|
227 |
imageButt->setIconSize(image.size()); |
|
184 | 228 |
} |
229 |
||
230 |
void HWMapContainer::changeImage() |
|
231 |
{ |
|
1214 | 232 |
pMap = new HWMap(); |
233 |
connect(pMap, SIGNAL(ImageReceived(const QImage)), this, SLOT(setImage(const QImage))); |
|
1790 | 234 |
connect(pMap, SIGNAL(HHLimitReceived(int)), this, SLOT(setHHLimit(int))); |
1802 | 235 |
pMap->getImage(m_seed.toStdString(), getTemplateFilter()); |
184 | 236 |
} |
237 |
||
1215 | 238 |
void HWMapContainer::themeSelected(int currentRow) |
239 |
{ |
|
1366
eba12c22f8ca
Reorganize mapContainer widget. Fixes a bunch of bugs, improves widget.
unc0rr
parents:
1365
diff
changeset
|
240 |
QString theme = Themes->at(currentRow); |
1874 | 241 |
QList<QVariant> mapInfo; |
242 |
mapInfo.push_back(theme); |
|
243 |
mapInfo.push_back(18); |
|
1790 | 244 |
chooseMap->setItemData(0, mapInfo); |
1224 | 245 |
gbThemes->setIcon(QIcon(QString("%1/Themes/%2/icon.png").arg(datadir->absolutePath()).arg(theme))); |
1215 | 246 |
emit themeChanged(theme); |
247 |
} |
|
248 |
||
184 | 249 |
QString HWMapContainer::getCurrentSeed() const |
250 |
{ |
|
1874 | 251 |
return m_seed; |
184 | 252 |
} |
253 |
||
249 | 254 |
QString HWMapContainer::getCurrentMap() const |
255 |
{ |
|
1874 | 256 |
if(!chooseMap->currentIndex()) return QString(); |
257 |
return chooseMap->currentText(); |
|
249 | 258 |
} |
259 |
||
260 |
QString HWMapContainer::getCurrentTheme() const |
|
261 |
{ |
|
1790 | 262 |
return chooseMap->itemData(chooseMap->currentIndex()).toList()[0].toString(); |
263 |
} |
|
264 |
||
265 |
int HWMapContainer::getCurrentHHLimit() const |
|
266 |
{ |
|
267 |
return hhLimit; |
|
249 | 268 |
} |
269 |
||
1802 | 270 |
quint32 HWMapContainer::getTemplateFilter() const |
271 |
{ |
|
272 |
return CB_TemplateFilter->itemData(CB_TemplateFilter->currentIndex()).toInt(); |
|
273 |
} |
|
274 |
||
184 | 275 |
void HWMapContainer::resizeEvent ( QResizeEvent * event ) |
276 |
{ |
|
277 |
//imageButt->setIconSize(imageButt->size()); |
|
278 |
} |
|
320 | 279 |
|
280 |
void HWMapContainer::setSeed(const QString & seed) |
|
281 |
{ |
|
282 |
m_seed = seed; |
|
283 |
changeImage(); |
|
284 |
} |
|
285 |
||
286 |
void HWMapContainer::setMap(const QString & map) |
|
287 |
{ |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
288 |
if(map == "+rnd+") |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
289 |
{ |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
290 |
changeImage(); |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
291 |
return; |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
292 |
} |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
293 |
|
331 | 294 |
int id = chooseMap->findText(map); |
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
295 |
if(id > 0) { |
331 | 296 |
chooseMap->setCurrentIndex(id); |
297 |
loadMap(id); |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
298 |
if (pMap) |
1365 | 299 |
{ |
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1318
diff
changeset
|
300 |
disconnect(pMap, 0, this, SLOT(setImage(const QImage))); |
1365 | 301 |
pMap = 0; |
302 |
} |
|
331 | 303 |
} |
320 | 304 |
} |
305 |
||
306 |
void HWMapContainer::setTheme(const QString & theme) |
|
307 |
{ |
|
1215 | 308 |
QList<QListWidgetItem *> items = lwThemes->findItems(theme, Qt::MatchExactly); |
309 |
if(items.size()) |
|
310 |
lwThemes->setCurrentItem(items.at(0)); |
|
320 | 311 |
} |
312 |
||
313 |
void HWMapContainer::setRandomSeed() |
|
314 |
{ |
|
1874 | 315 |
m_seed = QUuid::createUuid().toString(); |
316 |
emit seedChanged(m_seed); |
|
317 |
changeImage(); |
|
320 | 318 |
} |
1318 | 319 |
|
320 |
void HWMapContainer::setRandomTheme() |
|
321 |
{ |
|
322 |
if(!Themes->size()) return; |
|
323 |
quint32 themeNum = rand() % Themes->size(); |
|
324 |
lwThemes->setCurrentRow(themeNum); |
|
325 |
} |
|
1797 | 326 |
|
327 |
void HWMapContainer::setTemplateFilter(int filter) |
|
328 |
{ |
|
1802 | 329 |
CB_TemplateFilter->setCurrentIndex(filter); |
1797 | 330 |
} |
1802 | 331 |
|
332 |
void HWMapContainer::templateFilterChanged(int filter) |
|
333 |
{ |
|
1874 | 334 |
changeImage(); |
1802 | 335 |
emit newTemplateFilter(filter); |
336 |
} |
|
337 |