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