author | dag10 |
Sun, 27 Jan 2013 20:17:30 -0500 | |
changeset 8453 | 06541556df53 |
parent 8434 | 4821897a0f10 |
child 8467 | dc53b4b66fa0 |
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); |
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
|
135 |
leftLayout->addSpacing(2); |
8377 | 136 |
|
137 |
/* Map Preview */ |
|
4562 | 138 |
|
8377 | 139 |
mapPreview = new QLabel(this); |
140 |
mapPreview->setObjectName("mapPreview"); |
|
141 |
mapPreview->setFixedSize(256, 128); |
|
142 |
leftLayout->addWidget(mapPreview, 0); |
|
143 |
||
144 |
/* Bottom-Left layout */ |
|
3133 | 145 |
|
8377 | 146 |
QVBoxLayout * bottomLeftLayout = new QVBoxLayout(); |
147 |
leftLayout->addLayout(bottomLeftLayout, 1); |
|
148 |
||
149 |
/* Map list label */ |
|
150 |
||
151 |
lblMapList = new QLabel(); |
|
152 |
rightLayout->addWidget(lblMapList, 0); |
|
153 |
||
154 |
/* Static maps list */ |
|
1248 | 155 |
|
8377 | 156 |
staticMapList = new QListView; |
157 |
staticMapList->setModel(m_staticMapModel); |
|
158 |
rightLayout->addWidget(staticMapList, 1); |
|
159 |
staticMapList->setEditTriggers(QAbstractItemView::NoEditTriggers); |
|
160 |
m_childWidgets << staticMapList; |
|
161 |
QItemSelectionModel * staticSelectionModel = staticMapList->selectionModel(); |
|
162 |
connect(staticSelectionModel, |
|
163 |
SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), |
|
164 |
this, |
|
165 |
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
|
166 |
|
8377 | 167 |
/* Mission maps list */ |
1802 | 168 |
|
8377 | 169 |
missionMapList = new QListView; |
170 |
missionMapList->setModel(m_missionMapModel); |
|
171 |
missionMapList->setEditTriggers(QAbstractItemView::NoEditTriggers); |
|
172 |
rightLayout->addWidget(missionMapList, 1); |
|
173 |
m_childWidgets << missionMapList; |
|
174 |
QItemSelectionModel * missionSelectionModel = missionMapList->selectionModel(); |
|
175 |
connect(missionSelectionModel, |
|
176 |
SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), |
|
177 |
this, |
|
178 |
SLOT(missionMapChanged(const QModelIndex &, const QModelIndex &))); |
|
179 |
||
180 |
/* Map load and edit buttons */ |
|
181 |
||
182 |
drawnControls->addStretch(1); |
|
2377 | 183 |
|
8377 | 184 |
btnLoadMap = new QPushButton(tr("Load map drawing")); |
185 |
btnLoadMap->setStyleSheet("padding: 20px;"); |
|
186 |
drawnControls->addWidget(btnLoadMap, 0); |
|
187 |
m_childWidgets << btnLoadMap; |
|
188 |
connect(btnLoadMap, SIGNAL(clicked()), this, SLOT(loadDrawing())); |
|
189 |
||
190 |
btnEditMap = new QPushButton(tr("Edit map drawing")); |
|
191 |
btnEditMap->setStyleSheet("padding: 20px;"); |
|
192 |
drawnControls->addWidget(btnEditMap, 0); |
|
193 |
m_childWidgets << btnEditMap; |
|
194 |
connect(btnEditMap, SIGNAL(clicked()), this, SIGNAL(drawMapRequested())); |
|
195 |
||
196 |
drawnControls->addStretch(1); |
|
197 |
||
198 |
rightLayout->addLayout(drawnControls); |
|
199 |
||
200 |
/* Generator style list */ |
|
2377 | 201 |
|
8377 | 202 |
generationStyles = new QListWidget(); |
203 |
new QListWidgetItem(tr("All"), generationStyles); |
|
204 |
new QListWidgetItem(tr("Small"), generationStyles); |
|
205 |
new QListWidgetItem(tr("Medium"), generationStyles); |
|
206 |
new QListWidgetItem(tr("Large"), generationStyles); |
|
207 |
new QListWidgetItem(tr("Cavern"), generationStyles); |
|
208 |
new QListWidgetItem(tr("Wacky"), generationStyles); |
|
209 |
connect(generationStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setTemplateFilter(int))); |
|
210 |
m_childWidgets << generationStyles; |
|
211 |
rightLayout->addWidget(generationStyles, 1); |
|
212 |
||
213 |
/* Maze style list */ |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
214 |
|
8377 | 215 |
mazeStyles = new QListWidget(); |
216 |
new QListWidgetItem(tr("Small tunnels"), mazeStyles); |
|
217 |
new QListWidgetItem(tr("Medium tunnels"), mazeStyles); |
|
218 |
new QListWidgetItem(tr("Largetunnels"), mazeStyles); |
|
219 |
new QListWidgetItem(tr("Small islands"), mazeStyles); |
|
220 |
new QListWidgetItem(tr("Medium islands"), mazeStyles); |
|
221 |
new QListWidgetItem(tr("Large islands"), mazeStyles); |
|
222 |
connect(mazeStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setMazeSize(int))); |
|
223 |
m_childWidgets << mazeStyles; |
|
224 |
rightLayout->addWidget(mazeStyles, 1); |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
225 |
|
8377 | 226 |
/* Mission description */ |
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
227 |
|
8377 | 228 |
lblDesc = new QLabel(); |
229 |
lblDesc->setWordWrap(true); |
|
230 |
lblDesc->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
231 |
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
|
232 |
lblDesc->setStyleSheet("font: 10px;"); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
233 |
bottomLeftLayout->addWidget(lblDesc, 1); |
8377 | 234 |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
235 |
/* Add stretch above theme button */ |
8377 | 236 |
|
237 |
bottomLeftLayout->addStretch(1); |
|
238 |
||
239 |
/* Theme chooser */ |
|
1215 | 240 |
|
8377 | 241 |
btnTheme = new QPushButton(); |
242 |
connect(btnTheme, SIGNAL(clicked()), this, SLOT(showThemePrompt())); |
|
243 |
m_childWidgets << btnTheme; |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
244 |
bottomLeftLayout->addWidget(btnTheme, 0); |
4699 | 245 |
|
8377 | 246 |
/* Add everything to main layout */ |
247 |
||
248 |
mainLayout.addLayout(twoColumnLayout, 0); |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
249 |
|
8377 | 250 |
/* Set defaults */ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
251 |
|
8377 | 252 |
setRandomTheme(); |
253 |
setRandomSeed(); |
|
254 |
setMazeSize(0); |
|
255 |
setTemplateFilter(0); |
|
256 |
staticMapChanged(m_staticMapModel->index(0, 0)); |
|
257 |
missionMapChanged(m_missionMapModel->index(0, 0)); |
|
258 |
updateTheme(m_themeModel->index(0, 0)); |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
259 |
changeMapType(MapModel::GeneratedMap); |
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); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
273 |
p.drawPixmap(QPoint(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 |
|
8377 | 303 |
mapPreview->setPixmap(finalImage); |
184 | 304 |
} |
305 |
||
4562 | 306 |
void HWMapContainer::askForGeneratedPreview() |
184 | 307 |
{ |
8070
66bc20d089fc
Okay, remove previous request only if it has same parent
unc0rr
parents:
8049
diff
changeset
|
308 |
pMap = new HWMap(this); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
309 |
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
|
310 |
connect(pMap, SIGNAL(HHLimitReceived(int)), this, SLOT(setHHLimit(int))); |
7008
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
311 |
connect(pMap, SIGNAL(destroyed(QObject *)), this, SLOT(onPreviewMapDestroyed(QObject *))); |
4562 | 312 |
pMap->getImage(m_seed, |
313 |
getTemplateFilter(), |
|
314 |
get_mapgen(), |
|
4941 | 315 |
getMazeSize(), |
4562 | 316 |
getDrawnMapData() |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
317 |
); |
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
318 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
319 |
setHHLimit(0); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
320 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
321 |
const QPixmap waitIcon(":/res/iconTime.png"); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
322 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
323 |
QPixmap waitImage(m_previewSize); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
324 |
QPainter p(&waitImage); |
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 |
p.fillRect(waitImage.rect(), linearGrad); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
327 |
int x = (waitImage.width() - waitIcon.width()) / 2; |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
328 |
int y = (waitImage.height() - waitIcon.height()) / 2; |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
329 |
p.drawPixmap(QPoint(x, y), waitIcon); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
330 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
331 |
addInfoToPreview(waitImage); |
184 | 332 |
|
8377 | 333 |
cType->setEnabled(false); |
1215 | 334 |
} |
335 |
||
184 | 336 |
QString HWMapContainer::getCurrentSeed() const |
337 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
338 |
return m_seed; |
184 | 339 |
} |
340 |
||
249 | 341 |
QString HWMapContainer::getCurrentMap() const |
342 |
{ |
|
8377 | 343 |
switch (m_mapInfo.type) |
344 |
{ |
|
345 |
case MapModel::StaticMap: |
|
346 |
case MapModel::MissionMap: |
|
347 |
return m_curMap; |
|
348 |
default: |
|
349 |
return QString(); |
|
350 |
} |
|
249 | 351 |
} |
352 |
||
353 |
QString HWMapContainer::getCurrentTheme() const |
|
354 |
{ |
|
6940
211aca8c1f4f
decouple current theme from map theme (fixes theme confusion bugs of last commit)
sheepluva
parents:
6939
diff
changeset
|
355 |
return(m_theme); |
3008 | 356 |
} |
357 |
||
358 |
bool HWMapContainer::getCurrentIsMission() const |
|
359 |
{ |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
360 |
return(m_mapInfo.type == MapModel::MissionMap); |
1790 | 361 |
} |
362 |
||
363 |
int HWMapContainer::getCurrentHHLimit() const |
|
364 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
365 |
return hhLimit; |
249 | 366 |
} |
367 |
||
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
|
368 |
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
|
369 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
370 |
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
|
371 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
372 |
|
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
373 |
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
|
374 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
375 |
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
|
376 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
377 |
|
1802 | 378 |
quint32 HWMapContainer::getTemplateFilter() const |
379 |
{ |
|
8377 | 380 |
return generationStyles->currentRow(); |
1802 | 381 |
} |
382 |
||
184 | 383 |
void HWMapContainer::resizeEvent ( QResizeEvent * event ) |
384 |
{ |
|
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4557
diff
changeset
|
385 |
Q_UNUSED(event); |
184 | 386 |
} |
320 | 387 |
|
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
|
388 |
void HWMapContainer::intSetSeed(const QString & seed) |
320 | 389 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
390 |
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
|
391 |
} |
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
|
392 |
|
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
|
393 |
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
|
394 |
{ |
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
|
395 |
intSetSeed(seed); |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
396 |
if ((m_mapInfo.type == MapModel::GeneratedMap) || (m_mapInfo.type == MapModel::GeneratedMaze)) |
4562 | 397 |
updatePreview(); |
320 | 398 |
} |
399 |
||
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
|
400 |
void HWMapContainer::intSetMap(const QString & map) |
320 | 401 |
{ |
8377 | 402 |
if (map == "+rnd+") |
403 |
{ |
|
404 |
changeMapType(MapModel::GeneratedMap); |
|
405 |
} |
|
406 |
else if (map == "+maze+") |
|
407 |
{ |
|
408 |
changeMapType(MapModel::GeneratedMaze); |
|
409 |
} |
|
410 |
else if (map == "+drawn+") |
|
411 |
{ |
|
412 |
changeMapType(MapModel::HandDrawnMap); |
|
413 |
} |
|
414 |
else if (m_staticMapModel->mapExists(map)) |
|
415 |
{ |
|
416 |
changeMapType(MapModel::StaticMap, m_staticMapModel->index(m_staticMapModel->findMap(map), 0)); |
|
417 |
} |
|
418 |
else if (m_missionMapModel->mapExists(map)) |
|
419 |
{ |
|
420 |
changeMapType(MapModel::MissionMap, m_missionMapModel->index(m_missionMapModel->findMap(map), 0)); |
|
421 |
} else |
|
422 |
{ |
|
423 |
qDebug() << "HWMapContainer::intSetMap: Map doesn't exist: " << map; |
|
424 |
} |
|
320 | 425 |
} |
426 |
||
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
427 |
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
|
428 |
{ |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
429 |
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
|
430 |
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
|
431 |
} |
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
|
432 |
|
320 | 433 |
void HWMapContainer::setTheme(const QString & theme) |
434 |
{ |
|
6937
7f77fa908a4e
messing with the theme model a bit (gets now auto-updated after DLC download too)
sheepluva
parents:
6933
diff
changeset
|
435 |
QModelIndexList mdl = m_themeModel->match(m_themeModel->index(0), Qt::DisplayRole, 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
|
436 |
|
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5252
diff
changeset
|
437 |
if(mdl.size()) |
8377 | 438 |
updateTheme(mdl.at(0)); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
439 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
440 |
intSetIconlessTheme(theme); |
320 | 441 |
} |
4562 | 442 |
|
4337 | 443 |
void HWMapContainer::setRandomMap() |
444 |
{ |
|
4419 | 445 |
setRandomSeed(); |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
446 |
switch(m_mapInfo.type) |
4337 | 447 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
448 |
case MapModel::GeneratedMap: |
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
449 |
case MapModel::GeneratedMaze: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
450 |
setRandomTheme(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
451 |
break; |
8377 | 452 |
case MapModel::MissionMap: |
453 |
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
|
454 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
455 |
case MapModel::StaticMap: |
8377 | 456 |
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
|
457 |
break; |
8377 | 458 |
default: |
459 |
break; |
|
4337 | 460 |
} |
461 |
} |
|
462 |
||
320 | 463 |
void HWMapContainer::setRandomSeed() |
464 |
{ |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
465 |
setSeed(QUuid::createUuid().toString()); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
466 |
emit seedChanged(m_seed); |
320 | 467 |
} |
1318 | 468 |
|
469 |
void HWMapContainer::setRandomTheme() |
|
470 |
{ |
|
6937
7f77fa908a4e
messing with the theme model a bit (gets now auto-updated after DLC download too)
sheepluva
parents:
6933
diff
changeset
|
471 |
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
|
472 |
quint32 themeNum = rand() % m_themeModel->rowCount(); |
8377 | 473 |
updateTheme(m_themeModel->index(themeNum)); |
1318 | 474 |
} |
1797 | 475 |
|
4941 | 476 |
void HWMapContainer::intSetTemplateFilter(int filter) |
477 |
{ |
|
8377 | 478 |
generationStyles->setCurrentRow(filter); |
4941 | 479 |
emit newTemplateFilter(filter); |
480 |
} |
|
481 |
||
1797 | 482 |
void HWMapContainer::setTemplateFilter(int filter) |
483 |
{ |
|
4941 | 484 |
intSetTemplateFilter(filter); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
485 |
if (m_mapInfo.type == MapModel::GeneratedMap) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
486 |
updatePreview(); |
1802 | 487 |
} |
488 |
||
3133 | 489 |
MapGenerator HWMapContainer::get_mapgen(void) const |
490 |
{ |
|
491 |
return mapgen; |
|
492 |
} |
|
493 |
||
4941 | 494 |
int HWMapContainer::getMazeSize(void) const |
3133 | 495 |
{ |
8377 | 496 |
return mazeStyles->currentRow(); |
3133 | 497 |
} |
498 |
||
4941 | 499 |
void HWMapContainer::intSetMazeSize(int size) |
3133 | 500 |
{ |
8377 | 501 |
mazeStyles->setCurrentRow(size); |
4941 | 502 |
emit mazeSizeChanged(size); |
503 |
} |
|
504 |
||
505 |
void HWMapContainer::setMazeSize(int size) |
|
506 |
{ |
|
507 |
intSetMazeSize(size); |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
508 |
if (m_mapInfo.type == MapModel::GeneratedMaze) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
509 |
updatePreview(); |
3133 | 510 |
} |
511 |
||
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
|
512 |
void HWMapContainer::intSetMapgen(MapGenerator m) |
3133 | 513 |
{ |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
514 |
if (mapgen != m) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
515 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
516 |
mapgen = m; |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
517 |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
518 |
switch (m) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
519 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
520 |
case MAPGEN_REGULAR: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
521 |
m_mapInfo.type = MapModel::GeneratedMap; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
522 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
523 |
case MAPGEN_MAZE: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
524 |
m_mapInfo.type = MapModel::GeneratedMaze; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
525 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
526 |
case MAPGEN_DRAWN: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
527 |
m_mapInfo.type = MapModel::HandDrawnMap; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
528 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
529 |
case MAPGEN_MAP: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
530 |
switch (m_mapInfo.type) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
531 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
532 |
case MapModel::GeneratedMap: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
533 |
case MapModel::GeneratedMaze: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
534 |
case MapModel::HandDrawnMap: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
535 |
m_mapInfo.type = MapModel::Invalid; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
536 |
default: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
537 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
538 |
} |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
539 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
540 |
} |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
541 |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
542 |
emit mapgenChanged(m); |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
543 |
} |
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
|
544 |
} |
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
|
545 |
|
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
|
546 |
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
|
547 |
{ |
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
|
548 |
intSetMapgen(m); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
549 |
if(m != MAPGEN_MAP) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
550 |
updatePreview(); |
3133 | 551 |
} |
4489 | 552 |
|
4537 | 553 |
void HWMapContainer::setDrawnMapData(const QByteArray & ar) |
554 |
{ |
|
555 |
drawMapScene.decode(ar); |
|
4562 | 556 |
updatePreview(); |
4537 | 557 |
} |
558 |
||
4489 | 559 |
QByteArray HWMapContainer::getDrawnMapData() |
560 |
{ |
|
4520
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
561 |
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
|
562 |
} |
4519 | 563 |
|
8377 | 564 |
void HWMapContainer::setNewSeed(const QString & newSeed) |
4519 | 565 |
{ |
8377 | 566 |
setSeed(newSeed); |
567 |
emit seedChanged(newSeed); |
|
4519 | 568 |
} |
4520
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
569 |
|
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
570 |
DrawMapScene * HWMapContainer::getDrawMapScene() |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
571 |
{ |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
572 |
return &drawMapScene; |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
573 |
} |
4525 | 574 |
|
575 |
void HWMapContainer::mapDrawingFinished() |
|
576 |
{ |
|
4526 | 577 |
emit drawnMapChanged(getDrawnMapData()); |
4525 | 578 |
|
4562 | 579 |
updatePreview(); |
4550
d300ea498486
added set button to seed edit so maps won't regenerate as often
Henek
parents:
4537
diff
changeset
|
580 |
} |
4562 | 581 |
|
582 |
void HWMapContainer::updatePreview() |
|
583 |
{ |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
584 |
if (pMap) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
585 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
586 |
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
|
587 |
disconnect(pMap, 0, this, SLOT(setHHLimit(int))); |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
588 |
pMap = 0; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
589 |
} |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
590 |
|
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
591 |
QPixmap failIcon; |
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
592 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
593 |
switch(m_mapInfo.type) |
4562 | 594 |
{ |
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
595 |
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
|
596 |
failIcon = QPixmap(":/res/btnDisabled.png"); |
8377 | 597 |
mapPreview->setPixmap(failIcon); |
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
598 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
599 |
case MapModel::GeneratedMap: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
600 |
askForGeneratedPreview(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
601 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
602 |
case MapModel::GeneratedMaze: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
603 |
askForGeneratedPreview(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
604 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
605 |
case MapModel::HandDrawnMap: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
606 |
askForGeneratedPreview(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
607 |
break; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
608 |
default: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
609 |
QPixmap mapImage; |
8049 | 610 |
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
|
611 |
|
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
|
612 |
if(!success) |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
613 |
{ |
8377 | 614 |
mapPreview->setPixmap(QPixmap()); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
615 |
return; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
616 |
} |
4562 | 617 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
618 |
hhLimit = m_mapInfo.limit; |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
619 |
addInfoToPreview(mapImage); |
4562 | 620 |
} |
621 |
} |
|
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
|
622 |
|
4941 | 623 |
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
|
624 |
{ |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
625 |
intSetMapgen(m); |
4941 | 626 |
intSetMazeSize(mazesize); |
627 |
intSetSeed(seed); |
|
628 |
intSetTemplateFilter(tmpl); |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
629 |
// 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
|
630 |
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
|
631 |
} |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
632 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
633 |
void HWMapContainer::updateModelViews() |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
634 |
{ |
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
|
635 |
// 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
|
636 |
// 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
|
637 |
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
|
638 |
{ |
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
|
639 |
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
|
640 |
if (mdl.size() > 0) |
8377 | 641 |
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
|
642 |
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
|
643 |
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
|
644 |
} |
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
|
645 |
|
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
|
646 |
// restore map selection |
8377 | 647 |
if (!m_curMap.isEmpty()) |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
648 |
intSetMap(m_curMap); |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
649 |
else |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
650 |
updatePreview(); |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
651 |
} |
7008
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
652 |
|
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
653 |
|
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
654 |
void HWMapContainer::onPreviewMapDestroyed(QObject * map) |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
655 |
{ |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
656 |
if (map == pMap) |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
657 |
pMap = 0; |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
658 |
} |
8377 | 659 |
|
660 |
void HWMapContainer::mapTypeChanged(int index) |
|
661 |
{ |
|
662 |
changeMapType((MapModel::MapType)cType->itemData(index).toInt()); |
|
663 |
} |
|
664 |
||
665 |
void HWMapContainer::changeMapType(MapModel::MapType type, const QModelIndex & newMap) |
|
666 |
{ |
|
667 |
staticMapList->hide(); |
|
668 |
missionMapList->hide(); |
|
669 |
lblMapList->hide(); |
|
670 |
generationStyles->hide(); |
|
671 |
mazeStyles->hide(); |
|
672 |
lblDesc->hide(); |
|
673 |
btnLoadMap->hide(); |
|
674 |
btnEditMap->hide(); |
|
675 |
||
676 |
switch (type) |
|
677 |
{ |
|
678 |
case MapModel::GeneratedMap: |
|
679 |
mapgen = MAPGEN_REGULAR; |
|
680 |
setMapInfo(MapModel::MapInfoRandom); |
|
681 |
lblMapList->setText(tr("Map size:")); |
|
682 |
lblMapList->show(); |
|
683 |
generationStyles->show(); |
|
684 |
break; |
|
685 |
case MapModel::GeneratedMaze: |
|
686 |
mapgen = MAPGEN_MAZE; |
|
687 |
setMapInfo(MapModel::MapInfoMaze); |
|
688 |
lblMapList->setText(tr("Maze style:")); |
|
689 |
lblMapList->show(); |
|
690 |
mazeStyles->show(); |
|
691 |
break; |
|
692 |
case MapModel::HandDrawnMap: |
|
693 |
mapgen = MAPGEN_DRAWN; |
|
694 |
setMapInfo(MapModel::MapInfoDrawn); |
|
695 |
btnLoadMap->show(); |
|
696 |
btnEditMap->show(); |
|
697 |
break; |
|
698 |
case MapModel::MissionMap: |
|
699 |
mapgen = MAPGEN_MAP; |
|
700 |
missionMapChanged(newMap.isValid() ? newMap : missionMapList->currentIndex()); |
|
701 |
lblMapList->setText(tr("Mission:")); |
|
702 |
lblMapList->show(); |
|
703 |
missionMapList->show(); |
|
704 |
lblDesc->setText(m_mapInfo.desc); |
|
705 |
lblDesc->show(); |
|
706 |
emit mapChanged(m_curMap); |
|
707 |
break; |
|
708 |
case MapModel::StaticMap: |
|
709 |
mapgen = MAPGEN_MAP; |
|
710 |
staticMapChanged(newMap.isValid() ? newMap : staticMapList->currentIndex()); |
|
711 |
lblMapList->setText(tr("Map:")); |
|
712 |
lblMapList->show(); |
|
713 |
staticMapList->show(); |
|
714 |
emit mapChanged(m_curMap); |
|
715 |
break; |
|
716 |
default: |
|
717 |
break; |
|
718 |
} |
|
719 |
||
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
720 |
// Update theme button size |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
721 |
updateThemeButtonSize(); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
722 |
|
8377 | 723 |
// Update cType combobox |
724 |
for (int i = 0; i < cType->count(); i++) |
|
725 |
{ |
|
726 |
if ((MapModel::MapType)cType->itemData(i).toInt() == type) |
|
727 |
{ |
|
728 |
cType->setCurrentIndex(i); |
|
729 |
break; |
|
730 |
} |
|
731 |
} |
|
732 |
||
733 |
emit mapgenChanged(mapgen); |
|
734 |
} |
|
735 |
||
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
736 |
void HWMapContainer::updateThemeButtonSize() |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
737 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
738 |
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
|
739 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
740 |
btnTheme->setIconSize(QSize(30, 30)); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
741 |
btnTheme->setFixedHeight(30); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
742 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
743 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
744 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
745 |
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
|
746 |
btnTheme->setFixedHeight(64); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
747 |
btnTheme->setIconSize(iconSize); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
748 |
} |
8430
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
749 |
|
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
750 |
repaint(); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
751 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
752 |
|
8377 | 753 |
void HWMapContainer::showThemePrompt() |
754 |
{ |
|
755 |
ThemePrompt prompt(this); |
|
756 |
int theme = prompt.exec() - 1; // Since 0 means canceled, so all indexes are +1'd |
|
757 |
if (theme < 0) return; |
|
758 |
||
759 |
QModelIndex current = m_themeModel->index(theme, 0); |
|
760 |
updateTheme(current); |
|
761 |
emit themeChanged(m_theme); |
|
762 |
} |
|
763 |
||
764 |
void HWMapContainer::updateTheme(const QModelIndex & current) |
|
765 |
{ |
|
766 |
m_theme = selectedTheme = current.data().toString(); |
|
767 |
QIcon icon = qVariantValue<QIcon>(current.data(Qt::UserRole)); |
|
768 |
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
|
769 |
btnTheme->setFixedHeight(64); |
8377 | 770 |
btnTheme->setIconSize(iconSize); |
771 |
btnTheme->setIcon(icon); |
|
772 |
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
|
773 |
updateThemeButtonSize(); |
8377 | 774 |
} |
775 |
||
776 |
void HWMapContainer::staticMapChanged(const QModelIndex & map, const QModelIndex & old) |
|
777 |
{ |
|
778 |
mapChanged(map, 0, old); |
|
779 |
} |
|
780 |
||
781 |
void HWMapContainer::missionMapChanged(const QModelIndex & map, const QModelIndex & old) |
|
782 |
{ |
|
783 |
mapChanged(map, 1, old); |
|
784 |
} |
|
785 |
||
786 |
// Type: 0 = static, 1 = mission |
|
787 |
void HWMapContainer::mapChanged(const QModelIndex & map, int type, const QModelIndex & old) |
|
788 |
{ |
|
789 |
QListView * mapList; |
|
790 |
||
791 |
if (type == 0) mapList = staticMapList; |
|
792 |
else if (type == 1) mapList = missionMapList; |
|
793 |
else return; |
|
794 |
||
795 |
// Make sure it is a valid index |
|
796 |
if (!map.isValid()) |
|
797 |
{ |
|
798 |
if (old.isValid()) |
|
799 |
{ |
|
800 |
mapList->setCurrentIndex(old); |
|
801 |
mapList->scrollTo(old); |
|
802 |
} |
|
803 |
else |
|
804 |
{ |
|
805 |
m_mapInfo.type = MapModel::Invalid; |
|
806 |
updatePreview(); |
|
807 |
} |
|
808 |
||
809 |
return; |
|
810 |
} |
|
811 |
||
812 |
// If map changed, update list selection |
|
813 |
if (mapList->currentIndex() != map) |
|
814 |
{ |
|
815 |
mapList->setCurrentIndex(map); |
|
816 |
mapList->scrollTo(map); |
|
817 |
} |
|
818 |
||
819 |
if (map.data(Qt::UserRole + 1).canConvert<MapModel::MapInfo>()) |
|
820 |
setMapInfo(map.data(Qt::UserRole + 1).value<MapModel::MapInfo>()); |
|
821 |
else |
|
822 |
Q_ASSERT(false); // Houston, we have a problem. |
|
823 |
||
824 |
} |
|
825 |
||
826 |
void HWMapContainer::setMapInfo(MapModel::MapInfo mapInfo) |
|
827 |
{ |
|
828 |
m_mapInfo = mapInfo; |
|
829 |
m_curMap = m_mapInfo.name; |
|
830 |
||
831 |
// the map has no pre-defined theme, so let's use the selected one |
|
832 |
if (m_mapInfo.theme.isEmpty()) |
|
833 |
{ |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
834 |
if (!selectedTheme.isEmpty()) |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
835 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
836 |
setTheme(selectedTheme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
837 |
emit themeChanged(selectedTheme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
838 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
839 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
840 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
841 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
842 |
setTheme(m_mapInfo.theme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
843 |
emit themeChanged(m_mapInfo.theme); |
8377 | 844 |
} |
845 |
||
846 |
lblDesc->setText(mapInfo.desc); |
|
847 |
||
848 |
updatePreview(); |
|
849 |
emit mapChanged(m_curMap); |
|
850 |
} |
|
851 |
||
852 |
void HWMapContainer::loadDrawing() |
|
853 |
{ |
|
854 |
QString fileName = QFileDialog::getOpenFileName(NULL, tr("Load drawn map"), ".", tr("Drawn Maps") + " (*.hwmap);;" + tr("All files") + " (*)"); |
|
855 |
||
856 |
if(fileName.isEmpty()) return; |
|
857 |
||
858 |
QFile f(fileName); |
|
859 |
||
860 |
if(!f.open(QIODevice::ReadOnly)) |
|
861 |
{ |
|
862 |
QMessageBox errorMsg(parentWidget()); |
|
863 |
errorMsg.setIcon(QMessageBox::Warning); |
|
864 |
errorMsg.setWindowTitle(QMessageBox::tr("File error")); |
|
865 |
errorMsg.setText(QMessageBox::tr("Cannot open '%1' for reading").arg(fileName)); |
|
866 |
errorMsg.setWindowModality(Qt::WindowModal); |
|
867 |
errorMsg.exec(); |
|
868 |
} |
|
869 |
else |
|
870 |
{ |
|
871 |
drawMapScene.decode(qUncompress(QByteArray::fromBase64(f.readAll()))); |
|
872 |
mapDrawingFinished(); |
|
873 |
} |
|
874 |
} |
|
875 |
||
876 |
void HWMapContainer::showSeedPrompt() |
|
877 |
{ |
|
878 |
SeedPrompt prompt(parentWidget()->parentWidget(), getCurrentSeed(), isMaster()); |
|
879 |
connect(&prompt, SIGNAL(seedSelected(const QString &)), this, SLOT(setNewSeed(const QString &))); |
|
880 |
prompt.exec(); |
|
881 |
} |
|
882 |
||
883 |
bool HWMapContainer::isMaster() |
|
884 |
{ |
|
885 |
return m_master; |
|
886 |
} |
|
887 |
||
888 |
void HWMapContainer::setMaster(bool master) |
|
889 |
{ |
|
890 |
m_master = master; |
|
8434 | 891 |
|
8377 | 892 |
foreach (QWidget *widget, m_childWidgets) |
893 |
widget->setEnabled(master); |
|
894 |
} |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
895 |
|
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
896 |
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
|
897 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
898 |
if (name.isEmpty()) return; |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
899 |
|
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
900 |
m_theme = name; |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
901 |
btnTheme->setIcon(QIcon()); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
902 |
btnTheme->setText(tr("Theme: ") + name); |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8393
diff
changeset
|
903 |
} |