author | dag10 |
Sat, 09 Feb 2013 15:26:10 -0500 | |
changeset 8475 | f605bc59c603 |
parent 8467 | dc53b4b66fa0 |
child 8619 | 253750e192e7 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
6700 | 3 |
* Copyright (c) 2006-2012 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> |
1209 | 27 |
#include <QLabel> |
5289
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5252
diff
changeset
|
28 |
#include <QListView> |
1209 | 29 |
#include <QVBoxLayout> |
1224 | 30 |
#include <QIcon> |
4519 | 31 |
#include <QLineEdit> |
5289
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5252
diff
changeset
|
32 |
#include <QStringListModel> |
8377 | 33 |
#include <QListWidget> |
34 |
#include <QListWidgetItem> |
|
35 |
#include <QDebug> |
|
36 |
#include <QFile> |
|
37 |
#include <QFileDialog> |
|
38 |
#include <QInputDialog> |
|
39 |
#include <QMessageBox> |
|
249 | 40 |
|
41 |
#include "hwconsts.h" |
|
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
682
diff
changeset
|
42 |
#include "mapContainer.h" |
8377 | 43 |
#include "themeprompt.h" |
44 |
#include "seedprompt.h" |
|
1209 | 45 |
#include "igbox.h" |
5252 | 46 |
#include "HWApplication.h" |
7258 | 47 |
#include "ThemeModel.h" |
184 | 48 |
|
8377 | 49 |
|
50 |
||
184 | 51 |
HWMapContainer::HWMapContainer(QWidget * parent) : |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
52 |
QWidget(parent), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
53 |
mainLayout(this), |
3133 | 54 |
pMap(0), |
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
55 |
mapgen(MAPGEN_REGULAR), |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
56 |
m_previewSize(256, 128) |
184 | 57 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
58 |
hhSmall.load(":/res/hh_small.png"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
59 |
hhLimit = 18; |
1797 | 60 |
templateFilter = 0; |
8377 | 61 |
m_master = true; |
2377 | 62 |
|
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
63 |
linearGrad = QLinearGradient(QPoint(128, 0), QPoint(128, 128)); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
64 |
linearGrad.setColorAt(1, QColor(0, 0, 192)); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
65 |
linearGrad.setColorAt(0, QColor(66, 115, 225)); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
66 |
|
5252 | 67 |
mainLayout.setContentsMargins(HWApplication::style()->pixelMetric(QStyle::PM_LayoutLeftMargin), |
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8401
diff
changeset
|
68 |
10, |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
69 |
HWApplication::style()->pixelMetric(QStyle::PM_LayoutRightMargin), |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
70 |
HWApplication::style()->pixelMetric(QStyle::PM_LayoutBottomMargin)); |
2377 | 71 |
|
8377 | 72 |
m_staticMapModel = DataManager::instance().staticMapModel(); |
73 |
m_missionMapModel = DataManager::instance().missionMapModel(); |
|
74 |
m_themeModel = DataManager::instance().themeModel(); |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
75 |
|
8377 | 76 |
/* Layouts */ |
249 | 77 |
|
8377 | 78 |
QHBoxLayout * typeLayout = new QHBoxLayout(); |
79 |
QHBoxLayout * seedLayout = new QHBoxLayout(); |
|
80 |
QHBoxLayout * twoColumnLayout = new QHBoxLayout(); |
|
81 |
QVBoxLayout * leftLayout = new QVBoxLayout(); |
|
82 |
QVBoxLayout * rightLayout = new QVBoxLayout(); |
|
83 |
twoColumnLayout->addLayout(leftLayout, 0); |
|
84 |
twoColumnLayout->addStretch(1); |
|
85 |
twoColumnLayout->addLayout(rightLayout, 0); |
|
86 |
QVBoxLayout * drawnControls = new QVBoxLayout(); |
|
87 |
leftLayout->addLayout(typeLayout, 0); |
|
88 |
rightLayout->addLayout(seedLayout, 0); |
|
89 |
||
90 |
/* Map type combobox */ |
|
4487 | 91 |
|
8377 | 92 |
typeLayout->setSpacing(10); |
93 |
typeLayout->addWidget(new QLabel(tr("Map type:")), 0); |
|
94 |
cType = new QComboBox(this); |
|
95 |
typeLayout->addWidget(cType, 1); |
|
96 |
cType->insertItem(0, tr("Image map"), MapModel::StaticMap); |
|
97 |
cType->insertItem(1, tr("Mission map"), MapModel::MissionMap); |
|
98 |
cType->insertItem(2, tr("Hand-drawn"), MapModel::HandDrawnMap); |
|
99 |
cType->insertItem(3, tr("Randomly generated"), MapModel::GeneratedMap); |
|
100 |
cType->insertItem(4, tr("Random maze"), MapModel::GeneratedMaze); |
|
101 |
connect(cType, SIGNAL(currentIndexChanged(int)), this, SLOT(mapTypeChanged(int))); |
|
102 |
m_childWidgets << cType; |
|
249 | 103 |
|
8377 | 104 |
/* Randomize button */ |
1802 | 105 |
|
8377 | 106 |
seedLayout->addStretch(1); |
107 |
const QIcon& lp = QIcon(":/res/dice.png"); |
|
108 |
QSize sz = lp.actualSize(QSize(65535, 65535)); |
|
109 |
btnRandomize = new QPushButton(); |
|
110 |
btnRandomize->setText(tr("Random")); |
|
111 |
btnRandomize->setIcon(lp); |
|
112 |
btnRandomize->setFixedHeight(30); |
|
113 |
btnRandomize->setIconSize(sz); |
|
114 |
btnRandomize->setFlat(true); |
|
115 |
btnRandomize->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
116 |
connect(btnRandomize, SIGNAL(clicked()), this, SLOT(setRandomMap())); |
|
117 |
m_childWidgets << btnRandomize; |
|
118 |
btnRandomize->setStyleSheet("padding: 5px;"); |
|
119 |
btnRandomize->setFixedHeight(cType->height()); |
|
120 |
seedLayout->addWidget(btnRandomize, 1); |
|
1802 | 121 |
|
8377 | 122 |
/* Seed button */ |
123 |
btnSeed = new QPushButton(parentWidget()->parentWidget()); |
|
124 |
btnSeed->setText(tr("Seed")); |
|
125 |
btnSeed->setStyleSheet("padding: 5px;"); |
|
126 |
btnSeed->setFixedHeight(cType->height()); |
|
127 |
connect(btnSeed, SIGNAL(clicked()), this, SLOT(showSeedPrompt())); |
|
128 |
seedLayout->addWidget(btnSeed, 0); |
|
1802 | 129 |
|
8377 | 130 |
/* Map preview label */ |
131 |
||
132 |
QLabel * lblMapPreviewText = new QLabel(this); |
|
133 |
lblMapPreviewText->setText(tr("Map preview:")); |
|
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8401
diff
changeset
|
134 |
leftLayout->addWidget(lblMapPreviewText, 0); |
8377 | 135 |
|
136 |
/* Map Preview */ |
|
4562 | 137 |
|
8467 | 138 |
mapPreview = new QPushButton(this); |
8377 | 139 |
mapPreview->setObjectName("mapPreview"); |
140 |
mapPreview->setFixedSize(256, 128); |
|
8467 | 141 |
mapPreview->setContentsMargins(0, 0, 0, 0); |
8377 | 142 |
leftLayout->addWidget(mapPreview, 0); |
8467 | 143 |
connect(mapPreview, SIGNAL(clicked()), this, SLOT(previewClicked())); |
8377 | 144 |
|
145 |
/* Bottom-Left layout */ |
|
3133 | 146 |
|
8377 | 147 |
QVBoxLayout * bottomLeftLayout = new QVBoxLayout(); |
148 |
leftLayout->addLayout(bottomLeftLayout, 1); |
|
149 |
||
150 |
/* Map list label */ |
|
151 |
||
152 |
lblMapList = new QLabel(); |
|
153 |
rightLayout->addWidget(lblMapList, 0); |
|
154 |
||
155 |
/* Static maps list */ |
|
1248 | 156 |
|
8377 | 157 |
staticMapList = new QListView; |
158 |
staticMapList->setModel(m_staticMapModel); |
|
159 |
rightLayout->addWidget(staticMapList, 1); |
|
160 |
staticMapList->setEditTriggers(QAbstractItemView::NoEditTriggers); |
|
161 |
m_childWidgets << staticMapList; |
|
162 |
QItemSelectionModel * staticSelectionModel = staticMapList->selectionModel(); |
|
163 |
connect(staticSelectionModel, |
|
164 |
SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), |
|
165 |
this, |
|
166 |
SLOT(staticMapChanged(const QModelIndex &, const QModelIndex &))); |
|
5289
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5252
diff
changeset
|
167 |
|
8377 | 168 |
/* Mission maps list */ |
1802 | 169 |
|
8377 | 170 |
missionMapList = new QListView; |
171 |
missionMapList->setModel(m_missionMapModel); |
|
172 |
missionMapList->setEditTriggers(QAbstractItemView::NoEditTriggers); |
|
173 |
rightLayout->addWidget(missionMapList, 1); |
|
174 |
m_childWidgets << missionMapList; |
|
175 |
QItemSelectionModel * missionSelectionModel = missionMapList->selectionModel(); |
|
176 |
connect(missionSelectionModel, |
|
177 |
SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), |
|
178 |
this, |
|
179 |
SLOT(missionMapChanged(const QModelIndex &, const QModelIndex &))); |
|
180 |
||
181 |
/* Map load and edit buttons */ |
|
182 |
||
183 |
drawnControls->addStretch(1); |
|
2377 | 184 |
|
8377 | 185 |
btnLoadMap = new QPushButton(tr("Load map drawing")); |
186 |
btnLoadMap->setStyleSheet("padding: 20px;"); |
|
187 |
drawnControls->addWidget(btnLoadMap, 0); |
|
188 |
m_childWidgets << btnLoadMap; |
|
189 |
connect(btnLoadMap, SIGNAL(clicked()), this, SLOT(loadDrawing())); |
|
190 |
||
191 |
btnEditMap = new QPushButton(tr("Edit map drawing")); |
|
192 |
btnEditMap->setStyleSheet("padding: 20px;"); |
|
193 |
drawnControls->addWidget(btnEditMap, 0); |
|
194 |
m_childWidgets << btnEditMap; |
|
195 |
connect(btnEditMap, SIGNAL(clicked()), this, SIGNAL(drawMapRequested())); |
|
196 |
||
197 |
drawnControls->addStretch(1); |
|
198 |
||
199 |
rightLayout->addLayout(drawnControls); |
|
200 |
||
201 |
/* Generator style list */ |
|
2377 | 202 |
|
8377 | 203 |
generationStyles = new QListWidget(); |
204 |
new QListWidgetItem(tr("All"), generationStyles); |
|
205 |
new QListWidgetItem(tr("Small"), generationStyles); |
|
206 |
new QListWidgetItem(tr("Medium"), generationStyles); |
|
207 |
new QListWidgetItem(tr("Large"), generationStyles); |
|
208 |
new QListWidgetItem(tr("Cavern"), generationStyles); |
|
209 |
new QListWidgetItem(tr("Wacky"), generationStyles); |
|
210 |
connect(generationStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setTemplateFilter(int))); |
|
211 |
m_childWidgets << generationStyles; |
|
212 |
rightLayout->addWidget(generationStyles, 1); |
|
213 |
||
214 |
/* Maze style list */ |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
215 |
|
8377 | 216 |
mazeStyles = new QListWidget(); |
217 |
new QListWidgetItem(tr("Small tunnels"), mazeStyles); |
|
218 |
new QListWidgetItem(tr("Medium tunnels"), mazeStyles); |
|
219 |
new QListWidgetItem(tr("Largetunnels"), mazeStyles); |
|
220 |
new QListWidgetItem(tr("Small islands"), mazeStyles); |
|
221 |
new QListWidgetItem(tr("Medium islands"), mazeStyles); |
|
222 |
new QListWidgetItem(tr("Large islands"), mazeStyles); |
|
223 |
connect(mazeStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setMazeSize(int))); |
|
224 |
m_childWidgets << mazeStyles; |
|
225 |
rightLayout->addWidget(mazeStyles, 1); |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
226 |
|
8377 | 227 |
/* Mission description */ |
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
228 |
|
8377 | 229 |
lblDesc = new QLabel(); |
230 |
lblDesc->setWordWrap(true); |
|
231 |
lblDesc->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
232 |
lblDesc->setAlignment(Qt::AlignTop | Qt::AlignLeft); |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
233 |
lblDesc->setStyleSheet("font: 10px;"); |
8467 | 234 |
bottomLeftLayout->addWidget(lblDesc, 100); |
8377 | 235 |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
236 |
/* Add stretch above theme button */ |
8377 | 237 |
|
238 |
bottomLeftLayout->addStretch(1); |
|
239 |
||
240 |
/* Theme chooser */ |
|
1215 | 241 |
|
8377 | 242 |
btnTheme = new QPushButton(); |
243 |
connect(btnTheme, SIGNAL(clicked()), this, SLOT(showThemePrompt())); |
|
244 |
m_childWidgets << btnTheme; |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
245 |
bottomLeftLayout->addWidget(btnTheme, 0); |
4699 | 246 |
|
8377 | 247 |
/* Add everything to main layout */ |
248 |
||
249 |
mainLayout.addLayout(twoColumnLayout, 0); |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
250 |
|
8377 | 251 |
/* Set defaults */ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
252 |
|
8377 | 253 |
setRandomSeed(); |
254 |
setMazeSize(0); |
|
255 |
setTemplateFilter(0); |
|
256 |
staticMapChanged(m_staticMapModel->index(0, 0)); |
|
257 |
missionMapChanged(m_missionMapModel->index(0, 0)); |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
258 |
changeMapType(MapModel::GeneratedMap); |
8475
f605bc59c603
Initial theme selection is now random. Theme prompt now has a search input and no longer uses FlowLayout. (Resolves issue 520)
dag10
parents:
8467
diff
changeset
|
259 |
setRandomTheme(); |
184 | 260 |
} |
261 |
||
262 |
void HWMapContainer::setImage(const QImage newImage) |
|
263 |
{ |
|
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
264 |
QPixmap px(m_previewSize); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
265 |
QPixmap pxres(px.size()); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
266 |
QPainter p(&pxres); |
184 | 267 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
268 |
px.fill(Qt::yellow); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
269 |
QBitmap bm = QBitmap::fromImage(newImage); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
270 |
px.setMask(bm); |
184 | 271 |
|
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
272 |
p.fillRect(pxres.rect(), linearGrad); |
8467 | 273 |
p.drawPixmap(0, 0, px); |
184 | 274 |
|
1790 | 275 |
addInfoToPreview(pxres); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
276 |
pMap = 0; |
8377 | 277 |
|
278 |
cType->setEnabled(isMaster()); |
|
249 | 279 |
} |
280 |
||
1790 | 281 |
void HWMapContainer::setHHLimit(int newHHLimit) |
282 |
{ |
|
283 |
hhLimit = newHHLimit; |
|
284 |
} |
|
285 |
||
286 |
// Should this add text to identify map size? |
|
287 |
void HWMapContainer::addInfoToPreview(QPixmap image) |
|
288 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
289 |
QPixmap finalImage = QPixmap(image.size()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
290 |
finalImage.fill(QColor(0, 0, 0, 0)); |
2377 | 291 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
292 |
QPainter p(&finalImage); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
293 |
p.drawPixmap(image.rect(), image); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
294 |
//p.setPen(QColor(0xf4,0x9e,0xe9)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
295 |
p.setPen(QColor(0xff,0xcc,0x00)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
296 |
p.setBrush(QColor(0, 0, 0)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
297 |
p.drawRect(image.rect().width() - hhSmall.rect().width() - 28, 3, 40, 20); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
298 |
p.setFont(QFont("MS Shell Dlg", 10)); |
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
299 |
QString text = (hhLimit > 0) ? QString::number(hhLimit) : "?"; |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
300 |
p.drawText(image.rect().width() - hhSmall.rect().width() - 14 - (hhLimit > 9 ? 10 : 0), 18, text); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
301 |
p.drawPixmap(image.rect().width() - hhSmall.rect().width() - 5, 5, hhSmall.rect().width(), hhSmall.rect().height(), hhSmall); |
1790 | 302 |
|
8467 | 303 |
// Shrink, crop, and center preview image |
304 |
QPixmap centered(QSize(m_previewSize.width() - 6, m_previewSize.height() - 6)); |
|
305 |
QPainter pc(¢ered); |
|
306 |
pc.fillRect(centered.rect(), linearGrad); |
|
307 |
pc.drawPixmap(-3, -3, finalImage); |
|
308 |
||
309 |
mapPreview->setIcon(QIcon(centered)); |
|
310 |
mapPreview->setIconSize(centered.size()); |
|
184 | 311 |
} |
312 |
||
4562 | 313 |
void HWMapContainer::askForGeneratedPreview() |
184 | 314 |
{ |
8070
66bc20d089fc
Okay, remove previous request only if it has same parent
unc0rr
parents:
8049
diff
changeset
|
315 |
pMap = new HWMap(this); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
316 |
connect(pMap, SIGNAL(ImageReceived(const QImage)), this, SLOT(setImage(const QImage))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
317 |
connect(pMap, SIGNAL(HHLimitReceived(int)), this, SLOT(setHHLimit(int))); |
7008
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
318 |
connect(pMap, SIGNAL(destroyed(QObject *)), this, SLOT(onPreviewMapDestroyed(QObject *))); |
4562 | 319 |
pMap->getImage(m_seed, |
320 |
getTemplateFilter(), |
|
321 |
get_mapgen(), |
|
4941 | 322 |
getMazeSize(), |
4562 | 323 |
getDrawnMapData() |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
324 |
); |
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
325 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
326 |
setHHLimit(0); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
327 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
328 |
const QPixmap waitIcon(":/res/iconTime.png"); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
329 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
330 |
QPixmap waitImage(m_previewSize); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
331 |
QPainter p(&waitImage); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
332 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
333 |
p.fillRect(waitImage.rect(), linearGrad); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
334 |
int x = (waitImage.width() - waitIcon.width()) / 2; |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
335 |
int y = (waitImage.height() - waitIcon.height()) / 2; |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
336 |
p.drawPixmap(QPoint(x, y), waitIcon); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
337 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
338 |
addInfoToPreview(waitImage); |
184 | 339 |
|
8377 | 340 |
cType->setEnabled(false); |
1215 | 341 |
} |
342 |
||
8467 | 343 |
void HWMapContainer::previewClicked() |
344 |
{ |
|
345 |
switch (m_mapInfo.type) |
|
346 |
{ |
|
347 |
case MapModel::HandDrawnMap: |
|
348 |
emit drawMapRequested(); |
|
349 |
break; |
|
350 |
default: |
|
351 |
setRandomMap(); |
|
352 |
break; |
|
353 |
} |
|
354 |
} |
|
355 |
||
184 | 356 |
QString HWMapContainer::getCurrentSeed() const |
357 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
358 |
return m_seed; |
184 | 359 |
} |
360 |
||
249 | 361 |
QString HWMapContainer::getCurrentMap() const |
362 |
{ |
|
8377 | 363 |
switch (m_mapInfo.type) |
364 |
{ |
|
365 |
case MapModel::StaticMap: |
|
366 |
case MapModel::MissionMap: |
|
367 |
return m_curMap; |
|
368 |
default: |
|
369 |
return QString(); |
|
370 |
} |
|
249 | 371 |
} |
372 |
||
373 |
QString HWMapContainer::getCurrentTheme() const |
|
374 |
{ |
|
6940
211aca8c1f4f
decouple current theme from map theme (fixes theme confusion bugs of last commit)
sheepluva
parents:
6939
diff
changeset
|
375 |
return(m_theme); |
3008 | 376 |
} |
377 |
||
378 |
bool HWMapContainer::getCurrentIsMission() const |
|
379 |
{ |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
380 |
return(m_mapInfo.type == MapModel::MissionMap); |
1790 | 381 |
} |
382 |
||
383 |
int HWMapContainer::getCurrentHHLimit() const |
|
384 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
385 |
return hhLimit; |
249 | 386 |
} |
387 |
||
4513
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
388 |
QString HWMapContainer::getCurrentScheme() const |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
389 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
390 |
return(m_mapInfo.scheme); |
4513
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
391 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
392 |
|
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
393 |
QString HWMapContainer::getCurrentWeapons() const |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
394 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
395 |
return(m_mapInfo.weapons); |
4513
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
396 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
397 |
|
1802 | 398 |
quint32 HWMapContainer::getTemplateFilter() const |
399 |
{ |
|
8377 | 400 |
return generationStyles->currentRow(); |
1802 | 401 |
} |
402 |
||
184 | 403 |
void HWMapContainer::resizeEvent ( QResizeEvent * event ) |
404 |
{ |
|
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4557
diff
changeset
|
405 |
Q_UNUSED(event); |
184 | 406 |
} |
320 | 407 |
|
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
408 |
void HWMapContainer::intSetSeed(const QString & seed) |
320 | 409 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
410 |
m_seed = seed; |
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
411 |
} |
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
412 |
|
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
413 |
void HWMapContainer::setSeed(const QString & seed) |
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
414 |
{ |
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
415 |
intSetSeed(seed); |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
416 |
if ((m_mapInfo.type == MapModel::GeneratedMap) || (m_mapInfo.type == MapModel::GeneratedMaze)) |
4562 | 417 |
updatePreview(); |
320 | 418 |
} |
419 |
||
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
420 |
void HWMapContainer::intSetMap(const QString & map) |
320 | 421 |
{ |
8377 | 422 |
if (map == "+rnd+") |
423 |
{ |
|
424 |
changeMapType(MapModel::GeneratedMap); |
|
425 |
} |
|
426 |
else if (map == "+maze+") |
|
427 |
{ |
|
428 |
changeMapType(MapModel::GeneratedMaze); |
|
429 |
} |
|
430 |
else if (map == "+drawn+") |
|
431 |
{ |
|
432 |
changeMapType(MapModel::HandDrawnMap); |
|
433 |
} |
|
434 |
else if (m_staticMapModel->mapExists(map)) |
|
435 |
{ |
|
436 |
changeMapType(MapModel::StaticMap, m_staticMapModel->index(m_staticMapModel->findMap(map), 0)); |
|
437 |
} |
|
438 |
else if (m_missionMapModel->mapExists(map)) |
|
439 |
{ |
|
440 |
changeMapType(MapModel::MissionMap, m_missionMapModel->index(m_missionMapModel->findMap(map), 0)); |
|
441 |
} else |
|
442 |
{ |
|
443 |
qDebug() << "HWMapContainer::intSetMap: Map doesn't exist: " << map; |
|
444 |
} |
|
320 | 445 |
} |
446 |
||
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
447 |
void HWMapContainer::setMap(const QString & map) |
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
448 |
{ |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
449 |
if ((m_mapInfo.type == MapModel::Invalid) || (map != m_mapInfo.name)) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
450 |
intSetMap(map); |
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
451 |
} |
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
452 |
|
320 | 453 |
void HWMapContainer::setTheme(const QString & theme) |
454 |
{ |
|
8475
f605bc59c603
Initial theme selection is now random. Theme prompt now has a search input and no longer uses FlowLayout. (Resolves issue 520)
dag10
parents:
8467
diff
changeset
|
455 |
QModelIndexList mdl = m_themeModel->match(m_themeModel->index(0), ThemeModel::ActualNameRole, theme); |
5289
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5252
diff
changeset
|
456 |
|
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5252
diff
changeset
|
457 |
if(mdl.size()) |
8377 | 458 |
updateTheme(mdl.at(0)); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
459 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
460 |
intSetIconlessTheme(theme); |
320 | 461 |
} |
4562 | 462 |
|
4337 | 463 |
void HWMapContainer::setRandomMap() |
464 |
{ |
|
4419 | 465 |
setRandomSeed(); |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
466 |
switch(m_mapInfo.type) |
4337 | 467 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
468 |
case MapModel::GeneratedMap: |
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
469 |
case MapModel::GeneratedMaze: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
470 |
setRandomTheme(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
471 |
break; |
8377 | 472 |
case MapModel::MissionMap: |
473 |
missionMapChanged(m_missionMapModel->index(rand() % m_missionMapModel->rowCount(), 0)); |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
474 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
475 |
case MapModel::StaticMap: |
8377 | 476 |
staticMapChanged(m_staticMapModel->index(rand() % m_staticMapModel->rowCount(), 0)); |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
477 |
break; |
8377 | 478 |
default: |
479 |
break; |
|
4337 | 480 |
} |
481 |
} |
|
482 |
||
320 | 483 |
void HWMapContainer::setRandomSeed() |
484 |
{ |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
485 |
setSeed(QUuid::createUuid().toString()); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
486 |
emit seedChanged(m_seed); |
320 | 487 |
} |
1318 | 488 |
|
489 |
void HWMapContainer::setRandomTheme() |
|
490 |
{ |
|
6937
7f77fa908a4e
messing with the theme model a bit (gets now auto-updated after DLC download too)
sheepluva
parents:
6933
diff
changeset
|
491 |
if(!m_themeModel->rowCount()) return; |
7f77fa908a4e
messing with the theme model a bit (gets now auto-updated after DLC download too)
sheepluva
parents:
6933
diff
changeset
|
492 |
quint32 themeNum = rand() % m_themeModel->rowCount(); |
8377 | 493 |
updateTheme(m_themeModel->index(themeNum)); |
8475
f605bc59c603
Initial theme selection is now random. Theme prompt now has a search input and no longer uses FlowLayout. (Resolves issue 520)
dag10
parents:
8467
diff
changeset
|
494 |
qDebug() << "RANDOM THEME:" << themeNum; |
1318 | 495 |
} |
1797 | 496 |
|
4941 | 497 |
void HWMapContainer::intSetTemplateFilter(int filter) |
498 |
{ |
|
8377 | 499 |
generationStyles->setCurrentRow(filter); |
4941 | 500 |
emit newTemplateFilter(filter); |
501 |
} |
|
502 |
||
1797 | 503 |
void HWMapContainer::setTemplateFilter(int filter) |
504 |
{ |
|
4941 | 505 |
intSetTemplateFilter(filter); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
506 |
if (m_mapInfo.type == MapModel::GeneratedMap) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
507 |
updatePreview(); |
1802 | 508 |
} |
509 |
||
3133 | 510 |
MapGenerator HWMapContainer::get_mapgen(void) const |
511 |
{ |
|
512 |
return mapgen; |
|
513 |
} |
|
514 |
||
4941 | 515 |
int HWMapContainer::getMazeSize(void) const |
3133 | 516 |
{ |
8377 | 517 |
return mazeStyles->currentRow(); |
3133 | 518 |
} |
519 |
||
4941 | 520 |
void HWMapContainer::intSetMazeSize(int size) |
3133 | 521 |
{ |
8377 | 522 |
mazeStyles->setCurrentRow(size); |
4941 | 523 |
emit mazeSizeChanged(size); |
524 |
} |
|
525 |
||
526 |
void HWMapContainer::setMazeSize(int size) |
|
527 |
{ |
|
528 |
intSetMazeSize(size); |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
529 |
if (m_mapInfo.type == MapModel::GeneratedMaze) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
530 |
updatePreview(); |
3133 | 531 |
} |
532 |
||
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
533 |
void HWMapContainer::intSetMapgen(MapGenerator m) |
3133 | 534 |
{ |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
535 |
if (mapgen != m) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
536 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
537 |
mapgen = m; |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
538 |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
539 |
switch (m) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
540 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
541 |
case MAPGEN_REGULAR: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
542 |
m_mapInfo.type = MapModel::GeneratedMap; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
543 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
544 |
case MAPGEN_MAZE: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
545 |
m_mapInfo.type = MapModel::GeneratedMaze; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
546 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
547 |
case MAPGEN_DRAWN: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
548 |
m_mapInfo.type = MapModel::HandDrawnMap; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
549 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
550 |
case MAPGEN_MAP: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
551 |
switch (m_mapInfo.type) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
552 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
553 |
case MapModel::GeneratedMap: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
554 |
case MapModel::GeneratedMaze: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
555 |
case MapModel::HandDrawnMap: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
556 |
m_mapInfo.type = MapModel::Invalid; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
557 |
default: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
558 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
559 |
} |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
560 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
561 |
} |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
562 |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
563 |
emit mapgenChanged(m); |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
564 |
} |
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
565 |
} |
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
566 |
|
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
567 |
void HWMapContainer::setMapgen(MapGenerator m) |
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
568 |
{ |
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
569 |
intSetMapgen(m); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
570 |
if(m != MAPGEN_MAP) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
571 |
updatePreview(); |
3133 | 572 |
} |
4489 | 573 |
|
4537 | 574 |
void HWMapContainer::setDrawnMapData(const QByteArray & ar) |
575 |
{ |
|
576 |
drawMapScene.decode(ar); |
|
4562 | 577 |
updatePreview(); |
4537 | 578 |
} |
579 |
||
4489 | 580 |
QByteArray HWMapContainer::getDrawnMapData() |
581 |
{ |
|
4520
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
582 |
return drawMapScene.encode(); |
4513
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
583 |
} |
4519 | 584 |
|
8377 | 585 |
void HWMapContainer::setNewSeed(const QString & newSeed) |
4519 | 586 |
{ |
8377 | 587 |
setSeed(newSeed); |
588 |
emit seedChanged(newSeed); |
|
4519 | 589 |
} |
4520
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
590 |
|
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
591 |
DrawMapScene * HWMapContainer::getDrawMapScene() |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
592 |
{ |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
593 |
return &drawMapScene; |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
594 |
} |
4525 | 595 |
|
596 |
void HWMapContainer::mapDrawingFinished() |
|
597 |
{ |
|
4526 | 598 |
emit drawnMapChanged(getDrawnMapData()); |
4525 | 599 |
|
4562 | 600 |
updatePreview(); |
4550
d300ea498486
added set button to seed edit so maps won't regenerate as often
Henek
parents:
4537
diff
changeset
|
601 |
} |
4562 | 602 |
|
603 |
void HWMapContainer::updatePreview() |
|
604 |
{ |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
605 |
if (pMap) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
606 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
607 |
disconnect(pMap, 0, this, SLOT(setImage(const QImage))); |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
608 |
disconnect(pMap, 0, this, SLOT(setHHLimit(int))); |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
609 |
pMap = 0; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
610 |
} |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
611 |
|
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
612 |
QPixmap failIcon; |
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
613 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
614 |
switch(m_mapInfo.type) |
4562 | 615 |
{ |
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
616 |
case MapModel::Invalid: |
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
617 |
failIcon = QPixmap(":/res/btnDisabled.png"); |
8467 | 618 |
mapPreview->setIcon(QIcon(failIcon)); |
619 |
mapPreview->setIconSize(failIcon.size()); |
|
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
620 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
621 |
case MapModel::GeneratedMap: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
622 |
askForGeneratedPreview(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
623 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
624 |
case MapModel::GeneratedMaze: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
625 |
askForGeneratedPreview(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
626 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
627 |
case MapModel::HandDrawnMap: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
628 |
askForGeneratedPreview(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
629 |
break; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
630 |
default: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
631 |
QPixmap mapImage; |
8049 | 632 |
bool success = mapImage.load("physfs://Maps/" + m_mapInfo.name + "/preview.png"); |
6939
970389573788
MapModel converted to QStandardItemList; separators fixed; changed used data format (human-readable struct instead of magic list) for map info in HwMapContainer (+ various small cleanups in that class)
sheepluva
parents:
6938
diff
changeset
|
633 |
|
970389573788
MapModel converted to QStandardItemList; separators fixed; changed used data format (human-readable struct instead of magic list) for map info in HwMapContainer (+ various small cleanups in that class)
sheepluva
parents:
6938
diff
changeset
|
634 |
if(!success) |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
635 |
{ |
8467 | 636 |
mapPreview->setIcon(QIcon()); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
637 |
return; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
638 |
} |
4562 | 639 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
640 |
hhLimit = m_mapInfo.limit; |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
641 |
addInfoToPreview(mapImage); |
4562 | 642 |
} |
643 |
} |
|
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
644 |
|
4941 | 645 |
void HWMapContainer::setAllMapParameters(const QString &map, MapGenerator m, int mazesize, const QString &seed, int tmpl) |
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
646 |
{ |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
647 |
intSetMapgen(m); |
4941 | 648 |
intSetMazeSize(mazesize); |
649 |
intSetSeed(seed); |
|
650 |
intSetTemplateFilter(tmpl); |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
651 |
// this one last because it will refresh the preview |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
652 |
intSetMap(map); |
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
653 |
} |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
654 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
655 |
void HWMapContainer::updateModelViews() |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
656 |
{ |
6960
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
657 |
// restore theme selection |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
658 |
// do this before map selection restore, because map may overwrite theme |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
659 |
if (!m_theme.isEmpty()) |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
660 |
{ |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
661 |
QModelIndexList mdl = m_themeModel->match(m_themeModel->index(0), Qt::DisplayRole, m_theme); |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
662 |
if (mdl.size() > 0) |
8377 | 663 |
updateTheme(mdl.at(0)); |
6960
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
664 |
else |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
665 |
setRandomTheme(); |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
666 |
} |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
667 |
|
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6947
diff
changeset
|
668 |
// restore map selection |
8377 | 669 |
if (!m_curMap.isEmpty()) |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
670 |
intSetMap(m_curMap); |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
671 |
else |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
672 |
updatePreview(); |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
673 |
} |
7008
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
674 |
|
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
675 |
|
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
676 |
void HWMapContainer::onPreviewMapDestroyed(QObject * map) |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
677 |
{ |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
678 |
if (map == pMap) |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
679 |
pMap = 0; |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
680 |
} |
8377 | 681 |
|
682 |
void HWMapContainer::mapTypeChanged(int index) |
|
683 |
{ |
|
684 |
changeMapType((MapModel::MapType)cType->itemData(index).toInt()); |
|
685 |
} |
|
686 |
||
687 |
void HWMapContainer::changeMapType(MapModel::MapType type, const QModelIndex & newMap) |
|
688 |
{ |
|
689 |
staticMapList->hide(); |
|
690 |
missionMapList->hide(); |
|
691 |
lblMapList->hide(); |
|
692 |
generationStyles->hide(); |
|
693 |
mazeStyles->hide(); |
|
694 |
lblDesc->hide(); |
|
695 |
btnLoadMap->hide(); |
|
696 |
btnEditMap->hide(); |
|
697 |
||
698 |
switch (type) |
|
699 |
{ |
|
700 |
case MapModel::GeneratedMap: |
|
701 |
mapgen = MAPGEN_REGULAR; |
|
702 |
setMapInfo(MapModel::MapInfoRandom); |
|
703 |
lblMapList->setText(tr("Map size:")); |
|
704 |
lblMapList->show(); |
|
705 |
generationStyles->show(); |
|
706 |
break; |
|
707 |
case MapModel::GeneratedMaze: |
|
708 |
mapgen = MAPGEN_MAZE; |
|
709 |
setMapInfo(MapModel::MapInfoMaze); |
|
710 |
lblMapList->setText(tr("Maze style:")); |
|
711 |
lblMapList->show(); |
|
712 |
mazeStyles->show(); |
|
713 |
break; |
|
714 |
case MapModel::HandDrawnMap: |
|
715 |
mapgen = MAPGEN_DRAWN; |
|
716 |
setMapInfo(MapModel::MapInfoDrawn); |
|
717 |
btnLoadMap->show(); |
|
718 |
btnEditMap->show(); |
|
719 |
break; |
|
720 |
case MapModel::MissionMap: |
|
721 |
mapgen = MAPGEN_MAP; |
|
722 |
missionMapChanged(newMap.isValid() ? newMap : missionMapList->currentIndex()); |
|
723 |
lblMapList->setText(tr("Mission:")); |
|
724 |
lblMapList->show(); |
|
725 |
missionMapList->show(); |
|
726 |
lblDesc->setText(m_mapInfo.desc); |
|
727 |
lblDesc->show(); |
|
728 |
emit mapChanged(m_curMap); |
|
729 |
break; |
|
730 |
case MapModel::StaticMap: |
|
731 |
mapgen = MAPGEN_MAP; |
|
732 |
staticMapChanged(newMap.isValid() ? newMap : staticMapList->currentIndex()); |
|
733 |
lblMapList->setText(tr("Map:")); |
|
734 |
lblMapList->show(); |
|
735 |
staticMapList->show(); |
|
736 |
emit mapChanged(m_curMap); |
|
737 |
break; |
|
738 |
default: |
|
739 |
break; |
|
740 |
} |
|
741 |
||
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
742 |
// Update theme button size |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
743 |
updateThemeButtonSize(); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
744 |
|
8377 | 745 |
// Update cType combobox |
746 |
for (int i = 0; i < cType->count(); i++) |
|
747 |
{ |
|
748 |
if ((MapModel::MapType)cType->itemData(i).toInt() == type) |
|
749 |
{ |
|
750 |
cType->setCurrentIndex(i); |
|
751 |
break; |
|
752 |
} |
|
753 |
} |
|
754 |
||
8467 | 755 |
repaint(); |
756 |
||
8377 | 757 |
emit mapgenChanged(mapgen); |
758 |
} |
|
759 |
||
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
760 |
void HWMapContainer::updateThemeButtonSize() |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
761 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
762 |
if (m_mapInfo.type == MapModel::MissionMap) |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
763 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
764 |
btnTheme->setIconSize(QSize(30, 30)); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
765 |
btnTheme->setFixedHeight(30); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
766 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
767 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
768 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
769 |
QSize iconSize = btnTheme->icon().actualSize(QSize(65535, 65535)); |
8430
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
770 |
btnTheme->setFixedHeight(64); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
771 |
btnTheme->setIconSize(iconSize); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
772 |
} |
8430
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
773 |
|
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
774 |
repaint(); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
775 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
776 |
|
8377 | 777 |
void HWMapContainer::showThemePrompt() |
778 |
{ |
|
8475
f605bc59c603
Initial theme selection is now random. Theme prompt now has a search input and no longer uses FlowLayout. (Resolves issue 520)
dag10
parents:
8467
diff
changeset
|
779 |
ThemePrompt prompt(m_themeID, this); |
8377 | 780 |
int theme = prompt.exec() - 1; // Since 0 means canceled, so all indexes are +1'd |
781 |
if (theme < 0) return; |
|
782 |
||
783 |
QModelIndex current = m_themeModel->index(theme, 0); |
|
784 |
updateTheme(current); |
|
785 |
emit themeChanged(m_theme); |
|
786 |
} |
|
787 |
||
788 |
void HWMapContainer::updateTheme(const QModelIndex & current) |
|
789 |
{ |
|
8475
f605bc59c603
Initial theme selection is now random. Theme prompt now has a search input and no longer uses FlowLayout. (Resolves issue 520)
dag10
parents:
8467
diff
changeset
|
790 |
m_theme = selectedTheme = current.data(ThemeModel::ActualNameRole).toString(); |
f605bc59c603
Initial theme selection is now random. Theme prompt now has a search input and no longer uses FlowLayout. (Resolves issue 520)
dag10
parents:
8467
diff
changeset
|
791 |
m_themeID = current.row(); |
f605bc59c603
Initial theme selection is now random. Theme prompt now has a search input and no longer uses FlowLayout. (Resolves issue 520)
dag10
parents:
8467
diff
changeset
|
792 |
QIcon icon = qVariantValue<QIcon>(current.data(Qt::DecorationRole)); |
8377 | 793 |
QSize iconSize = icon.actualSize(QSize(65535, 65535)); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
794 |
btnTheme->setFixedHeight(64); |
8377 | 795 |
btnTheme->setIconSize(iconSize); |
796 |
btnTheme->setIcon(icon); |
|
797 |
btnTheme->setText(tr("Theme: ") + current.data(Qt::DisplayRole).toString()); |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
798 |
updateThemeButtonSize(); |
8377 | 799 |
} |
800 |
||
801 |
void HWMapContainer::staticMapChanged(const QModelIndex & map, const QModelIndex & old) |
|
802 |
{ |
|
803 |
mapChanged(map, 0, old); |
|
804 |
} |
|
805 |
||
806 |
void HWMapContainer::missionMapChanged(const QModelIndex & map, const QModelIndex & old) |
|
807 |
{ |
|
808 |
mapChanged(map, 1, old); |
|
809 |
} |
|
810 |
||
811 |
// Type: 0 = static, 1 = mission |
|
812 |
void HWMapContainer::mapChanged(const QModelIndex & map, int type, const QModelIndex & old) |
|
813 |
{ |
|
814 |
QListView * mapList; |
|
815 |
||
816 |
if (type == 0) mapList = staticMapList; |
|
817 |
else if (type == 1) mapList = missionMapList; |
|
818 |
else return; |
|
819 |
||
820 |
// Make sure it is a valid index |
|
821 |
if (!map.isValid()) |
|
822 |
{ |
|
823 |
if (old.isValid()) |
|
824 |
{ |
|
825 |
mapList->setCurrentIndex(old); |
|
826 |
mapList->scrollTo(old); |
|
827 |
} |
|
828 |
else |
|
829 |
{ |
|
830 |
m_mapInfo.type = MapModel::Invalid; |
|
831 |
updatePreview(); |
|
832 |
} |
|
833 |
||
834 |
return; |
|
835 |
} |
|
836 |
||
837 |
// If map changed, update list selection |
|
838 |
if (mapList->currentIndex() != map) |
|
839 |
{ |
|
840 |
mapList->setCurrentIndex(map); |
|
841 |
mapList->scrollTo(map); |
|
842 |
} |
|
843 |
||
844 |
if (map.data(Qt::UserRole + 1).canConvert<MapModel::MapInfo>()) |
|
845 |
setMapInfo(map.data(Qt::UserRole + 1).value<MapModel::MapInfo>()); |
|
846 |
else |
|
847 |
Q_ASSERT(false); // Houston, we have a problem. |
|
848 |
||
849 |
} |
|
850 |
||
851 |
void HWMapContainer::setMapInfo(MapModel::MapInfo mapInfo) |
|
852 |
{ |
|
853 |
m_mapInfo = mapInfo; |
|
854 |
m_curMap = m_mapInfo.name; |
|
855 |
||
856 |
// the map has no pre-defined theme, so let's use the selected one |
|
857 |
if (m_mapInfo.theme.isEmpty()) |
|
858 |
{ |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
859 |
if (!selectedTheme.isEmpty()) |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
860 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
861 |
setTheme(selectedTheme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
862 |
emit themeChanged(selectedTheme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
863 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
864 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
865 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
866 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
867 |
setTheme(m_mapInfo.theme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
868 |
emit themeChanged(m_mapInfo.theme); |
8377 | 869 |
} |
870 |
||
871 |
lblDesc->setText(mapInfo.desc); |
|
872 |
||
873 |
updatePreview(); |
|
874 |
emit mapChanged(m_curMap); |
|
875 |
} |
|
876 |
||
877 |
void HWMapContainer::loadDrawing() |
|
878 |
{ |
|
879 |
QString fileName = QFileDialog::getOpenFileName(NULL, tr("Load drawn map"), ".", tr("Drawn Maps") + " (*.hwmap);;" + tr("All files") + " (*)"); |
|
880 |
||
881 |
if(fileName.isEmpty()) return; |
|
882 |
||
883 |
QFile f(fileName); |
|
884 |
||
885 |
if(!f.open(QIODevice::ReadOnly)) |
|
886 |
{ |
|
887 |
QMessageBox errorMsg(parentWidget()); |
|
888 |
errorMsg.setIcon(QMessageBox::Warning); |
|
889 |
errorMsg.setWindowTitle(QMessageBox::tr("File error")); |
|
890 |
errorMsg.setText(QMessageBox::tr("Cannot open '%1' for reading").arg(fileName)); |
|
891 |
errorMsg.setWindowModality(Qt::WindowModal); |
|
892 |
errorMsg.exec(); |
|
893 |
} |
|
894 |
else |
|
895 |
{ |
|
896 |
drawMapScene.decode(qUncompress(QByteArray::fromBase64(f.readAll()))); |
|
897 |
mapDrawingFinished(); |
|
898 |
} |
|
899 |
} |
|
900 |
||
901 |
void HWMapContainer::showSeedPrompt() |
|
902 |
{ |
|
903 |
SeedPrompt prompt(parentWidget()->parentWidget(), getCurrentSeed(), isMaster()); |
|
904 |
connect(&prompt, SIGNAL(seedSelected(const QString &)), this, SLOT(setNewSeed(const QString &))); |
|
905 |
prompt.exec(); |
|
906 |
} |
|
907 |
||
908 |
bool HWMapContainer::isMaster() |
|
909 |
{ |
|
910 |
return m_master; |
|
911 |
} |
|
912 |
||
913 |
void HWMapContainer::setMaster(bool master) |
|
914 |
{ |
|
8467 | 915 |
if (master == m_master) return; |
8377 | 916 |
m_master = master; |
8434 | 917 |
|
8377 | 918 |
foreach (QWidget *widget, m_childWidgets) |
919 |
widget->setEnabled(master); |
|
920 |
} |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
921 |
|
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
922 |
void HWMapContainer::intSetIconlessTheme(const QString & name) |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
923 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
924 |
if (name.isEmpty()) return; |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
925 |
|
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
926 |
m_theme = name; |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
927 |
btnTheme->setIcon(QIcon()); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
928 |
btnTheme->setText(tr("Theme: ") + name); |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8393
diff
changeset
|
929 |
} |