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