author | sheepluva |
Fri, 29 Apr 2016 23:52:44 +0200 | |
changeset 11778 | d8a9be46dede |
parent 11757 | 6874644a2d00 |
child 11785 | 947e2d53afc1 |
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 |
||
10462
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
19 |
#include <QBitmap> |
184 | 20 |
#include <QBuffer> |
21 |
#include <QColor> |
|
8377 | 22 |
#include <QDebug> |
23 |
#include <QFile> |
|
24 |
#include <QFileDialog> |
|
10462
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
25 |
#include <QIcon> |
8377 | 26 |
#include <QInputDialog> |
10462
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
27 |
#include <QLabel> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
28 |
#include <QLinearGradient> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
29 |
#include <QLineEdit> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
30 |
#include <QListView> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
31 |
#include <QListWidget> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
32 |
#include <QListWidgetItem> |
8377 | 33 |
#include <QMessageBox> |
10462
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
34 |
#include <QPainter> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
35 |
#include <QPushButton> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
36 |
#include <QSlider> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
37 |
#include <QStringListModel> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
38 |
#include <QTextStream> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
39 |
#include <QUuid> |
dd3cf0c91cc9
A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents:
10394
diff
changeset
|
40 |
#include <QVBoxLayout> |
249 | 41 |
|
42 |
#include "hwconsts.h" |
|
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
682
diff
changeset
|
43 |
#include "mapContainer.h" |
8377 | 44 |
#include "themeprompt.h" |
45 |
#include "seedprompt.h" |
|
1209 | 46 |
#include "igbox.h" |
5252 | 47 |
#include "HWApplication.h" |
7258 | 48 |
#include "ThemeModel.h" |
184 | 49 |
|
8377 | 50 |
|
51 |
||
184 | 52 |
HWMapContainer::HWMapContainer(QWidget * parent) : |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
53 |
QWidget(parent), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
54 |
mainLayout(this), |
3133 | 55 |
pMap(0), |
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
56 |
mapgen(MAPGEN_REGULAR), |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
57 |
m_previewSize(256, 128) |
184 | 58 |
{ |
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
59 |
// 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
|
60 |
m_previewEnabled = false; |
9744 | 61 |
m_missionsViewSetup = false; |
62 |
m_staticViewSetup = false; |
|
10159 | 63 |
m_script = QString(); |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
64 |
m_prevMapFeatureSize = 12; |
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
65 |
m_mapFeatureSize = 12; |
11757
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
66 |
m_withoutDLC = false; |
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
67 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
68 |
hhSmall.load(":/res/hh_small.png"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
69 |
hhLimit = 18; |
1797 | 70 |
templateFilter = 0; |
8377 | 71 |
m_master = true; |
2377 | 72 |
|
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
73 |
linearGrad = QLinearGradient(QPoint(128, 0), QPoint(128, 128)); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
74 |
linearGrad.setColorAt(1, QColor(0, 0, 192)); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
75 |
linearGrad.setColorAt(0, QColor(66, 115, 225)); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
76 |
|
5252 | 77 |
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
|
78 |
10, |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
79 |
HWApplication::style()->pixelMetric(QStyle::PM_LayoutRightMargin), |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
80 |
HWApplication::style()->pixelMetric(QStyle::PM_LayoutBottomMargin)); |
2377 | 81 |
|
8377 | 82 |
m_staticMapModel = DataManager::instance().staticMapModel(); |
83 |
m_missionMapModel = DataManager::instance().missionMapModel(); |
|
84 |
m_themeModel = DataManager::instance().themeModel(); |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
85 |
|
8377 | 86 |
/* Layouts */ |
249 | 87 |
|
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
88 |
QWidget * topWidget = new QWidget(); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
89 |
QHBoxLayout * topLayout = new QHBoxLayout(topWidget); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
90 |
topWidget->setContentsMargins(0, 0, 0, 0); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
91 |
topLayout->setContentsMargins(0, 0, 0, 0); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
92 |
|
8377 | 93 |
QHBoxLayout * twoColumnLayout = new QHBoxLayout(); |
94 |
QVBoxLayout * leftLayout = new QVBoxLayout(); |
|
95 |
QVBoxLayout * rightLayout = new QVBoxLayout(); |
|
96 |
twoColumnLayout->addLayout(leftLayout, 0); |
|
97 |
twoColumnLayout->addStretch(1); |
|
98 |
twoColumnLayout->addLayout(rightLayout, 0); |
|
99 |
QVBoxLayout * drawnControls = new QVBoxLayout(); |
|
100 |
||
101 |
/* Map type combobox */ |
|
4487 | 102 |
|
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
103 |
topLayout->setSpacing(10); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
104 |
topLayout->addWidget(new QLabel(tr("Map type:")), 0); |
8377 | 105 |
cType = new QComboBox(this); |
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
106 |
topLayout->addWidget(cType, 1); |
8377 | 107 |
cType->insertItem(0, tr("Image map"), MapModel::StaticMap); |
108 |
cType->insertItem(1, tr("Mission map"), MapModel::MissionMap); |
|
109 |
cType->insertItem(2, tr("Hand-drawn"), MapModel::HandDrawnMap); |
|
110 |
cType->insertItem(3, tr("Randomly generated"), MapModel::GeneratedMap); |
|
111 |
cType->insertItem(4, tr("Random maze"), MapModel::GeneratedMaze); |
|
10391 | 112 |
cType->insertItem(5, tr("Random perlin"), MapModel::GeneratedPerlin); |
11744
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
113 |
cType->insertItem(6, tr("Forts"), MapModel::FortsMap); |
8377 | 114 |
connect(cType, SIGNAL(currentIndexChanged(int)), this, SLOT(mapTypeChanged(int))); |
115 |
m_childWidgets << cType; |
|
249 | 116 |
|
8377 | 117 |
/* Randomize button */ |
1802 | 118 |
|
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
119 |
topLayout->addStretch(1); |
8377 | 120 |
const QIcon& lp = QIcon(":/res/dice.png"); |
121 |
QSize sz = lp.actualSize(QSize(65535, 65535)); |
|
122 |
btnRandomize = new QPushButton(); |
|
123 |
btnRandomize->setText(tr("Random")); |
|
124 |
btnRandomize->setIcon(lp); |
|
125 |
btnRandomize->setFixedHeight(30); |
|
126 |
btnRandomize->setIconSize(sz); |
|
127 |
btnRandomize->setFlat(true); |
|
128 |
btnRandomize->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
129 |
connect(btnRandomize, SIGNAL(clicked()), this, SLOT(setRandomMap())); |
|
130 |
m_childWidgets << btnRandomize; |
|
131 |
btnRandomize->setStyleSheet("padding: 5px;"); |
|
132 |
btnRandomize->setFixedHeight(cType->height()); |
|
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
133 |
topLayout->addWidget(btnRandomize, 1); |
1802 | 134 |
|
8377 | 135 |
/* Seed button */ |
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
136 |
|
8377 | 137 |
btnSeed = new QPushButton(parentWidget()->parentWidget()); |
138 |
btnSeed->setText(tr("Seed")); |
|
139 |
btnSeed->setStyleSheet("padding: 5px;"); |
|
140 |
btnSeed->setFixedHeight(cType->height()); |
|
141 |
connect(btnSeed, SIGNAL(clicked()), this, SLOT(showSeedPrompt())); |
|
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
142 |
topLayout->addWidget(btnSeed, 0); |
1802 | 143 |
|
8377 | 144 |
/* Map preview label */ |
145 |
||
146 |
QLabel * lblMapPreviewText = new QLabel(this); |
|
147 |
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
|
148 |
leftLayout->addWidget(lblMapPreviewText, 0); |
8377 | 149 |
|
150 |
/* Map Preview */ |
|
4562 | 151 |
|
8467 | 152 |
mapPreview = new QPushButton(this); |
8377 | 153 |
mapPreview->setObjectName("mapPreview"); |
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
154 |
mapPreview->setFlat(true); |
10161 | 155 |
mapPreview->setFixedSize(256 + 6, 128 + 6); |
8467 | 156 |
mapPreview->setContentsMargins(0, 0, 0, 0); |
8377 | 157 |
leftLayout->addWidget(mapPreview, 0); |
8467 | 158 |
connect(mapPreview, SIGNAL(clicked()), this, SLOT(previewClicked())); |
8377 | 159 |
|
160 |
/* Bottom-Left layout */ |
|
3133 | 161 |
|
8377 | 162 |
QVBoxLayout * bottomLeftLayout = new QVBoxLayout(); |
163 |
leftLayout->addLayout(bottomLeftLayout, 1); |
|
164 |
||
165 |
/* Map list label */ |
|
166 |
||
10394 | 167 |
lblMapList = new QLabel(this); |
8377 | 168 |
rightLayout->addWidget(lblMapList, 0); |
169 |
||
170 |
/* Static maps list */ |
|
1248 | 171 |
|
10394 | 172 |
staticMapList = new QListView(this); |
8377 | 173 |
rightLayout->addWidget(staticMapList, 1); |
174 |
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
|
175 |
|
8377 | 176 |
/* Mission maps list */ |
1802 | 177 |
|
9744 | 178 |
missionMapList = new QListView(this); |
8377 | 179 |
rightLayout->addWidget(missionMapList, 1); |
180 |
m_childWidgets << missionMapList; |
|
181 |
||
182 |
/* Map load and edit buttons */ |
|
183 |
||
184 |
drawnControls->addStretch(1); |
|
2377 | 185 |
|
8377 | 186 |
btnLoadMap = new QPushButton(tr("Load map drawing")); |
187 |
btnLoadMap->setStyleSheet("padding: 20px;"); |
|
188 |
drawnControls->addWidget(btnLoadMap, 0); |
|
189 |
m_childWidgets << btnLoadMap; |
|
190 |
connect(btnLoadMap, SIGNAL(clicked()), this, SLOT(loadDrawing())); |
|
191 |
||
192 |
btnEditMap = new QPushButton(tr("Edit map drawing")); |
|
193 |
btnEditMap->setStyleSheet("padding: 20px;"); |
|
194 |
drawnControls->addWidget(btnEditMap, 0); |
|
195 |
m_childWidgets << btnEditMap; |
|
196 |
connect(btnEditMap, SIGNAL(clicked()), this, SIGNAL(drawMapRequested())); |
|
197 |
||
198 |
drawnControls->addStretch(1); |
|
199 |
||
200 |
rightLayout->addLayout(drawnControls); |
|
201 |
||
202 |
/* Generator style list */ |
|
2377 | 203 |
|
10394 | 204 |
generationStyles = new QListWidget(this); |
8377 | 205 |
new QListWidgetItem(tr("All"), generationStyles); |
206 |
new QListWidgetItem(tr("Small"), generationStyles); |
|
207 |
new QListWidgetItem(tr("Medium"), generationStyles); |
|
208 |
new QListWidgetItem(tr("Large"), generationStyles); |
|
209 |
new QListWidgetItem(tr("Cavern"), generationStyles); |
|
210 |
new QListWidgetItem(tr("Wacky"), generationStyles); |
|
211 |
connect(generationStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setTemplateFilter(int))); |
|
212 |
m_childWidgets << generationStyles; |
|
213 |
rightLayout->addWidget(generationStyles, 1); |
|
214 |
||
215 |
/* Maze style list */ |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
216 |
|
10394 | 217 |
mazeStyles = new QListWidget(this); |
8377 | 218 |
new QListWidgetItem(tr("Small tunnels"), mazeStyles); |
219 |
new QListWidgetItem(tr("Medium tunnels"), mazeStyles); |
|
8695 | 220 |
new QListWidgetItem(tr("Large tunnels"), mazeStyles); |
8377 | 221 |
new QListWidgetItem(tr("Small islands"), mazeStyles); |
222 |
new QListWidgetItem(tr("Medium islands"), mazeStyles); |
|
223 |
new QListWidgetItem(tr("Large islands"), mazeStyles); |
|
224 |
connect(mazeStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setMazeSize(int))); |
|
225 |
m_childWidgets << mazeStyles; |
|
226 |
rightLayout->addWidget(mazeStyles, 1); |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
227 |
|
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
228 |
mapFeatureSize = new QSlider(Qt::Horizontal, this); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
229 |
mapFeatureSize->setObjectName("mapFeatureSize"); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
230 |
//mapFeatureSize->setTickPosition(QSlider::TicksBelow); |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
231 |
mapFeatureSize->setMaximum(25); |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
232 |
mapFeatureSize->setMinimum(1); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
233 |
//mapFeatureSize->setFixedWidth(259); |
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
234 |
mapFeatureSize->setValue(m_mapFeatureSize); |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
235 |
mapFeatureSize->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
236 |
bottomLeftLayout->addWidget(mapFeatureSize, 0); |
10480 | 237 |
connect(mapFeatureSize, SIGNAL(valueChanged(int)), this, SLOT(setFeatureSize(int))); |
10521 | 238 |
m_childWidgets << mapFeatureSize; |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
239 |
|
8377 | 240 |
/* Mission description */ |
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
241 |
|
8377 | 242 |
lblDesc = new QLabel(); |
243 |
lblDesc->setWordWrap(true); |
|
244 |
lblDesc->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
245 |
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
|
246 |
lblDesc->setStyleSheet("font: 10px;"); |
8467 | 247 |
bottomLeftLayout->addWidget(lblDesc, 100); |
8377 | 248 |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
249 |
/* Add stretch above theme button */ |
8377 | 250 |
|
251 |
bottomLeftLayout->addStretch(1); |
|
252 |
||
253 |
/* Theme chooser */ |
|
1215 | 254 |
|
10394 | 255 |
btnTheme = new QPushButton(this); |
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
256 |
btnTheme->setFlat(true); |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
257 |
btnTheme->setIconSize(QSize(30, 30)); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
258 |
btnTheme->setFixedHeight(30); |
8377 | 259 |
connect(btnTheme, SIGNAL(clicked()), this, SLOT(showThemePrompt())); |
260 |
m_childWidgets << btnTheme; |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
261 |
bottomLeftLayout->addWidget(btnTheme, 0); |
4699 | 262 |
|
8377 | 263 |
/* Add everything to main layout */ |
264 |
||
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
265 |
mainLayout.addWidget(topWidget, 0); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
266 |
mainLayout.addLayout(twoColumnLayout, 1); |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
267 |
|
8377 | 268 |
/* Set defaults */ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
269 |
|
8377 | 270 |
setRandomSeed(); |
271 |
setMazeSize(0); |
|
272 |
setTemplateFilter(0); |
|
273 |
staticMapChanged(m_staticMapModel->index(0, 0)); |
|
274 |
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
|
275 |
changeMapType(MapModel::GeneratedMap); |
184 | 276 |
} |
277 |
||
10161 | 278 |
void HWMapContainer::setImage(const QPixmap &newImage) |
184 | 279 |
{ |
10161 | 280 |
addInfoToPreview(newImage); |
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? |
|
10161 | 292 |
void HWMapContainer::addInfoToPreview(const QPixmap &image) |
1790 | 293 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
294 |
QPixmap finalImage = QPixmap(image.size()); |
10161 | 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); |
10161 | 298 |
p.fillRect(finalImage.rect(), linearGrad); |
299 |
p.drawPixmap(finalImage.rect(), image); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
300 |
//p.setPen(QColor(0xf4,0x9e,0xe9)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
301 |
p.setPen(QColor(0xff,0xcc,0x00)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
302 |
p.setBrush(QColor(0, 0, 0)); |
10161 | 303 |
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
|
304 |
p.setFont(QFont("MS Shell Dlg", 10)); |
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
305 |
QString text = (hhLimit > 0) ? QString::number(hhLimit) : "?"; |
10161 | 306 |
p.drawText(finalImage.rect().width() - hhSmall.rect().width() - 14 - (hhLimit > 9 ? 10 : 0), 18, text); |
307 |
p.drawPixmap(finalImage.rect().width() - hhSmall.rect().width() - 5, 5, hhSmall.rect().width(), hhSmall.rect().height(), hhSmall); |
|
1790 | 308 |
|
8467 | 309 |
// Shrink, crop, and center preview image |
10161 | 310 |
/*QPixmap centered(QSize(m_previewSize.width() - 6, m_previewSize.height() - 6)); |
8467 | 311 |
QPainter pc(¢ered); |
312 |
pc.fillRect(centered.rect(), linearGrad); |
|
10161 | 313 |
pc.drawPixmap(-3, -3, finalImage);*/ |
8467 | 314 |
|
10161 | 315 |
mapPreview->setIcon(QIcon(finalImage)); |
316 |
mapPreview->setIconSize(finalImage.size()); |
|
184 | 317 |
} |
318 |
||
4562 | 319 |
void HWMapContainer::askForGeneratedPreview() |
184 | 320 |
{ |
8070
66bc20d089fc
Okay, remove previous request only if it has same parent
unc0rr
parents:
8049
diff
changeset
|
321 |
pMap = new HWMap(this); |
10161 | 322 |
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
|
323 |
connect(pMap, SIGNAL(HHLimitReceived(int)), this, SLOT(setHHLimit(int))); |
7008
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
324 |
connect(pMap, SIGNAL(destroyed(QObject *)), this, SLOT(onPreviewMapDestroyed(QObject *))); |
4562 | 325 |
pMap->getImage(m_seed, |
326 |
getTemplateFilter(), |
|
327 |
get_mapgen(), |
|
4941 | 328 |
getMazeSize(), |
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
329 |
getDrawnMapData(), |
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
330 |
m_script, |
10959
1225f42f61e2
Pass ScriptParams to preview to support techracer. Proof of concept for techracer, generate a preview for m=4
nemo
parents:
10521
diff
changeset
|
331 |
m_scriptparam, |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
332 |
m_mapFeatureSize |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
333 |
); |
7017
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 |
setHHLimit(0); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
336 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
337 |
const QPixmap waitIcon(":/res/iconTime.png"); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
338 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
339 |
QPixmap waitImage(m_previewSize); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
340 |
QPainter p(&waitImage); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
341 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
342 |
p.fillRect(waitImage.rect(), linearGrad); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
343 |
int x = (waitImage.width() - waitIcon.width()) / 2; |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
344 |
int y = (waitImage.height() - waitIcon.height()) / 2; |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
345 |
p.drawPixmap(QPoint(x, y), waitIcon); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
346 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
347 |
addInfoToPreview(waitImage); |
184 | 348 |
|
8377 | 349 |
cType->setEnabled(false); |
1215 | 350 |
} |
351 |
||
8467 | 352 |
void HWMapContainer::previewClicked() |
353 |
{ |
|
9452 | 354 |
if (isMaster()) // should only perform these if master, but disabling the button when not, causes an unattractive preview. |
355 |
switch (m_mapInfo.type) |
|
356 |
{ |
|
357 |
case MapModel::HandDrawnMap: |
|
358 |
emit drawMapRequested(); |
|
359 |
break; |
|
360 |
default: |
|
361 |
setRandomMap(); |
|
362 |
break; |
|
363 |
} |
|
8467 | 364 |
} |
365 |
||
184 | 366 |
QString HWMapContainer::getCurrentSeed() const |
367 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
368 |
return m_seed; |
184 | 369 |
} |
370 |
||
249 | 371 |
QString HWMapContainer::getCurrentMap() const |
372 |
{ |
|
8377 | 373 |
switch (m_mapInfo.type) |
374 |
{ |
|
375 |
case MapModel::StaticMap: |
|
376 |
case MapModel::MissionMap: |
|
377 |
return m_curMap; |
|
378 |
default: |
|
379 |
return QString(); |
|
380 |
} |
|
249 | 381 |
} |
382 |
||
383 |
QString HWMapContainer::getCurrentTheme() const |
|
384 |
{ |
|
6940
211aca8c1f4f
decouple current theme from map theme (fixes theme confusion bugs of last commit)
sheepluva
parents:
6939
diff
changeset
|
385 |
return(m_theme); |
3008 | 386 |
} |
387 |
||
388 |
bool HWMapContainer::getCurrentIsMission() const |
|
389 |
{ |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
390 |
return(m_mapInfo.type == MapModel::MissionMap); |
1790 | 391 |
} |
392 |
||
393 |
int HWMapContainer::getCurrentHHLimit() const |
|
394 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
395 |
return hhLimit; |
249 | 396 |
} |
397 |
||
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
|
398 |
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
|
399 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
400 |
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
|
401 |
} |
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 |
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
|
404 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
405 |
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
|
406 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
407 |
|
1802 | 408 |
quint32 HWMapContainer::getTemplateFilter() const |
409 |
{ |
|
8377 | 410 |
return generationStyles->currentRow(); |
1802 | 411 |
} |
412 |
||
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
413 |
quint32 HWMapContainer::getFeatureSize() const |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
414 |
{ |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
415 |
return m_mapFeatureSize; |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
416 |
} |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
417 |
|
184 | 418 |
void HWMapContainer::resizeEvent ( QResizeEvent * event ) |
419 |
{ |
|
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4557
diff
changeset
|
420 |
Q_UNUSED(event); |
184 | 421 |
} |
320 | 422 |
|
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
|
423 |
void HWMapContainer::intSetSeed(const QString & seed) |
320 | 424 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
425 |
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
|
426 |
} |
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
|
427 |
|
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
428 |
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
|
429 |
{ |
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
|
430 |
intSetSeed(seed); |
10391 | 431 |
if ((m_mapInfo.type == MapModel::GeneratedMap) |
432 |
|| (m_mapInfo.type == MapModel::GeneratedMaze) |
|
433 |
|| (m_mapInfo.type == MapModel::GeneratedPerlin)) |
|
4562 | 434 |
updatePreview(); |
320 | 435 |
} |
436 |
||
10959
1225f42f61e2
Pass ScriptParams to preview to support techracer. Proof of concept for techracer, generate a preview for m=4
nemo
parents:
10521
diff
changeset
|
437 |
void HWMapContainer::setScript(const QString & script, const QString & scriptparam) |
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
438 |
{ |
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
439 |
m_script = script; |
10959
1225f42f61e2
Pass ScriptParams to preview to support techracer. Proof of concept for techracer, generate a preview for m=4
nemo
parents:
10521
diff
changeset
|
440 |
m_scriptparam = scriptparam; |
10391 | 441 |
if ((m_mapInfo.type == MapModel::GeneratedMap) |
442 |
|| (m_mapInfo.type == MapModel::GeneratedMaze) |
|
443 |
|| (m_mapInfo.type == MapModel::GeneratedPerlin) |
|
444 |
|| (m_mapInfo.type == MapModel::HandDrawnMap)) |
|
10171
00f41ff0bf2d
Script might well override a static map, but can't risk it not doing it, and preview completely failing. Better to just not try it for static maps. Some script cfg might help. Could also avoid unnnecessary preview regenerations even if the script was doing nothing at all.
nemo
parents:
10169
diff
changeset
|
445 |
updatePreview(); |
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
446 |
} |
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
447 |
|
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
448 |
void HWMapContainer::intSetMap(const QString & map) |
320 | 449 |
{ |
8377 | 450 |
if (map == "+rnd+") |
451 |
{ |
|
10336 | 452 |
//changeMapType(MapModel::GeneratedMap); |
8377 | 453 |
} |
454 |
else if (map == "+maze+") |
|
455 |
{ |
|
10336 | 456 |
//changeMapType(MapModel::GeneratedMaze); |
8377 | 457 |
} |
10391 | 458 |
else if (map == "+perlin+") |
459 |
{ |
|
460 |
//changeMapType(MapModel::GeneratedPerlin); |
|
461 |
} |
|
8377 | 462 |
else if (map == "+drawn+") |
463 |
{ |
|
10336 | 464 |
//changeMapType(MapModel::HandDrawnMap); |
8377 | 465 |
} |
11744
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
466 |
else if (map == "+forts+") |
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
467 |
{ |
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
468 |
//nuffin |
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
469 |
} |
8377 | 470 |
else if (m_staticMapModel->mapExists(map)) |
471 |
{ |
|
472 |
changeMapType(MapModel::StaticMap, m_staticMapModel->index(m_staticMapModel->findMap(map), 0)); |
|
473 |
} |
|
474 |
else if (m_missionMapModel->mapExists(map)) |
|
475 |
{ |
|
476 |
changeMapType(MapModel::MissionMap, m_missionMapModel->index(m_missionMapModel->findMap(map), 0)); |
|
477 |
} else |
|
478 |
{ |
|
479 |
qDebug() << "HWMapContainer::intSetMap: Map doesn't exist: " << map; |
|
480 |
} |
|
320 | 481 |
} |
482 |
||
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
483 |
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
|
484 |
{ |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
485 |
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
|
486 |
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
|
487 |
} |
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
|
488 |
|
320 | 489 |
void HWMapContainer::setTheme(const QString & theme) |
490 |
{ |
|
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
|
491 |
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
|
492 |
|
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5252
diff
changeset
|
493 |
if(mdl.size()) |
8377 | 494 |
updateTheme(mdl.at(0)); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
495 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
496 |
intSetIconlessTheme(theme); |
320 | 497 |
} |
4562 | 498 |
|
4337 | 499 |
void HWMapContainer::setRandomMap() |
500 |
{ |
|
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
|
501 |
if (!m_master) return; |
8924 | 502 |
|
4419 | 503 |
setRandomSeed(); |
11757
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
504 |
|
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
505 |
QSortFilterProxyModel * mmodel = NULL; |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
506 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
507 |
switch(m_mapInfo.type) |
4337 | 508 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
509 |
case MapModel::GeneratedMap: |
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
510 |
case MapModel::GeneratedMaze: |
10391 | 511 |
case MapModel::GeneratedPerlin: |
11744
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
512 |
case MapModel::FortsMap: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
513 |
setRandomTheme(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
514 |
break; |
8377 | 515 |
case MapModel::MissionMap: |
11757
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
516 |
if (m_withoutDLC) |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
517 |
{ |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
518 |
mmodel = m_missionMapModel->withoutDLC(); |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
519 |
missionMapChanged(mmodel->mapToSource(mmodel->index(rand() % mmodel->rowCount(),0))); |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
520 |
} |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
521 |
else |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
522 |
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
|
523 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
524 |
case MapModel::StaticMap: |
11757
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
525 |
if (m_withoutDLC) |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
526 |
{ |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
527 |
mmodel = m_staticMapModel->withoutDLC(); |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
528 |
staticMapChanged(mmodel->mapToSource(mmodel->index(rand() % mmodel->rowCount(),0))); |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
529 |
} |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
530 |
else |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
531 |
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
|
532 |
break; |
8377 | 533 |
default: |
534 |
break; |
|
4337 | 535 |
} |
536 |
} |
|
537 |
||
320 | 538 |
void HWMapContainer::setRandomSeed() |
539 |
{ |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
540 |
setSeed(QUuid::createUuid().toString()); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
541 |
emit seedChanged(m_seed); |
320 | 542 |
} |
1318 | 543 |
|
11757
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
544 |
void HWMapContainer::setRandomWithoutDLC(bool withoutDLC) |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
545 |
{ |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
546 |
m_withoutDLC = withoutDLC; |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
547 |
} |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
548 |
|
1318 | 549 |
void HWMapContainer::setRandomTheme() |
550 |
{ |
|
11757
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
551 |
QAbstractItemModel * tmodel; |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
552 |
|
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
553 |
if (m_withoutDLC) |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
554 |
tmodel = m_themeModel->withoutDLC(); |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
555 |
else |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
556 |
tmodel = m_themeModel; |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
557 |
|
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
558 |
if(!tmodel->rowCount()) return; |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
559 |
quint32 themeNum = rand() % tmodel->rowCount(); |
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11754
diff
changeset
|
560 |
updateTheme(tmodel->index(themeNum,0)); |
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
|
561 |
emit themeChanged(m_theme); |
1318 | 562 |
} |
1797 | 563 |
|
4941 | 564 |
void HWMapContainer::intSetTemplateFilter(int filter) |
565 |
{ |
|
8377 | 566 |
generationStyles->setCurrentRow(filter); |
4941 | 567 |
emit newTemplateFilter(filter); |
568 |
} |
|
569 |
||
1797 | 570 |
void HWMapContainer::setTemplateFilter(int filter) |
571 |
{ |
|
4941 | 572 |
intSetTemplateFilter(filter); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
573 |
if (m_mapInfo.type == MapModel::GeneratedMap) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
574 |
updatePreview(); |
1802 | 575 |
} |
576 |
||
3133 | 577 |
MapGenerator HWMapContainer::get_mapgen(void) const |
578 |
{ |
|
579 |
return mapgen; |
|
580 |
} |
|
581 |
||
4941 | 582 |
int HWMapContainer::getMazeSize(void) const |
3133 | 583 |
{ |
8377 | 584 |
return mazeStyles->currentRow(); |
3133 | 585 |
} |
586 |
||
4941 | 587 |
void HWMapContainer::intSetMazeSize(int size) |
3133 | 588 |
{ |
8377 | 589 |
mazeStyles->setCurrentRow(size); |
4941 | 590 |
emit mazeSizeChanged(size); |
591 |
} |
|
592 |
||
593 |
void HWMapContainer::setMazeSize(int size) |
|
594 |
{ |
|
595 |
intSetMazeSize(size); |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
596 |
if (m_mapInfo.type == MapModel::GeneratedMaze) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
597 |
updatePreview(); |
3133 | 598 |
} |
599 |
||
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
|
600 |
void HWMapContainer::intSetMapgen(MapGenerator m) |
3133 | 601 |
{ |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
602 |
if (mapgen != m) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
603 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
604 |
mapgen = m; |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
605 |
|
10463 | 606 |
bool f = false; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
607 |
switch (m) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
608 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
609 |
case MAPGEN_REGULAR: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
610 |
m_mapInfo.type = MapModel::GeneratedMap; |
10463 | 611 |
f = true; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
612 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
613 |
case MAPGEN_MAZE: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
614 |
m_mapInfo.type = MapModel::GeneratedMaze; |
10463 | 615 |
f = true; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
616 |
break; |
10391 | 617 |
case MAPGEN_PERLIN: |
618 |
m_mapInfo.type = MapModel::GeneratedPerlin; |
|
10463 | 619 |
f = true; |
10391 | 620 |
break; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
621 |
case MAPGEN_DRAWN: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
622 |
m_mapInfo.type = MapModel::HandDrawnMap; |
10463 | 623 |
f = true; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
624 |
break; |
11744
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
625 |
case MAPGEN_FORTS: |
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
626 |
m_mapInfo.type = MapModel::FortsMap; |
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
627 |
f = true; |
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
628 |
break; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
629 |
case MAPGEN_MAP: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
630 |
switch (m_mapInfo.type) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
631 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
632 |
case MapModel::GeneratedMap: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
633 |
case MapModel::GeneratedMaze: |
10391 | 634 |
case MapModel::GeneratedPerlin: |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
635 |
case MapModel::HandDrawnMap: |
11744
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
636 |
case MapModel::FortsMap: |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
637 |
m_mapInfo.type = MapModel::Invalid; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
638 |
default: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
639 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
640 |
} |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
641 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
642 |
} |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
643 |
|
10463 | 644 |
if(f) |
645 |
changeMapType(m_mapInfo.type, QModelIndex()); |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
646 |
} |
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
|
647 |
} |
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
|
648 |
|
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
|
649 |
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
|
650 |
{ |
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
|
651 |
intSetMapgen(m); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
652 |
if(m != MAPGEN_MAP) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
653 |
updatePreview(); |
3133 | 654 |
} |
4489 | 655 |
|
4537 | 656 |
void HWMapContainer::setDrawnMapData(const QByteArray & ar) |
657 |
{ |
|
658 |
drawMapScene.decode(ar); |
|
4562 | 659 |
updatePreview(); |
4537 | 660 |
} |
661 |
||
4489 | 662 |
QByteArray HWMapContainer::getDrawnMapData() |
663 |
{ |
|
4520
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
664 |
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
|
665 |
} |
4519 | 666 |
|
8377 | 667 |
void HWMapContainer::setNewSeed(const QString & newSeed) |
4519 | 668 |
{ |
8377 | 669 |
setSeed(newSeed); |
670 |
emit seedChanged(newSeed); |
|
4519 | 671 |
} |
4520
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
672 |
|
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
673 |
DrawMapScene * HWMapContainer::getDrawMapScene() |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
674 |
{ |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
675 |
return &drawMapScene; |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
676 |
} |
4525 | 677 |
|
678 |
void HWMapContainer::mapDrawingFinished() |
|
679 |
{ |
|
4526 | 680 |
emit drawnMapChanged(getDrawnMapData()); |
4525 | 681 |
|
4562 | 682 |
updatePreview(); |
4550
d300ea498486
added set button to seed edit so maps won't regenerate as often
Henek
parents:
4537
diff
changeset
|
683 |
} |
4562 | 684 |
|
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
685 |
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
|
686 |
{ |
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
687 |
if (!m_previewEnabled) { |
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
688 |
m_previewEnabled = true; |
9745 | 689 |
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
|
690 |
updatePreview(); |
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
691 |
} |
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
692 |
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
|
693 |
} |
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
|
694 |
|
4562 | 695 |
void HWMapContainer::updatePreview() |
696 |
{ |
|
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
697 |
// 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
|
698 |
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
|
699 |
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
|
700 |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
701 |
if (pMap) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
702 |
{ |
10175
c92668840ea8
Remove game/preview functions split in library mode, just let normal procedure run instead:
unc0rr
parents:
10171
diff
changeset
|
703 |
disconnect(pMap, 0, this, SLOT(setImage(const QPixmap))); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
704 |
disconnect(pMap, 0, this, SLOT(setHHLimit(int))); |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
705 |
pMap = 0; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
706 |
} |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
707 |
|
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
708 |
QPixmap failIcon; |
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
709 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
710 |
switch(m_mapInfo.type) |
4562 | 711 |
{ |
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
712 |
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
|
713 |
failIcon = QPixmap(":/res/btnDisabled.png"); |
8467 | 714 |
mapPreview->setIcon(QIcon(failIcon)); |
715 |
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
|
716 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
717 |
case MapModel::GeneratedMap: |
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
718 |
case MapModel::GeneratedMaze: |
10391 | 719 |
case MapModel::GeneratedPerlin: |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
720 |
case MapModel::HandDrawnMap: |
11744
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
721 |
case MapModel::FortsMap: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
722 |
askForGeneratedPreview(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
723 |
break; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
724 |
default: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
725 |
QPixmap mapImage; |
8049 | 726 |
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
|
727 |
|
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
|
728 |
if(!success) |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
729 |
{ |
8467 | 730 |
mapPreview->setIcon(QIcon()); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
731 |
return; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
732 |
} |
4562 | 733 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
734 |
hhLimit = m_mapInfo.limit; |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
735 |
addInfoToPreview(mapImage); |
4562 | 736 |
} |
737 |
} |
|
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
|
738 |
|
10480 | 739 |
void HWMapContainer::setAllMapParameters(const QString &map, MapGenerator m, int mazesize, const QString &seed, int tmpl, int featureSize) |
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
|
740 |
{ |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
741 |
intSetMapgen(m); |
4941 | 742 |
intSetMazeSize(mazesize); |
743 |
intSetSeed(seed); |
|
744 |
intSetTemplateFilter(tmpl); |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
745 |
// 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
|
746 |
intSetMap(map); |
10480 | 747 |
intSetMazeSize(mazesize); |
748 |
intSetFeatureSize(featureSize); |
|
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
|
749 |
} |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
750 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
751 |
void HWMapContainer::updateModelViews() |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
752 |
{ |
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
|
753 |
// 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
|
754 |
// 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
|
755 |
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
|
756 |
{ |
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
|
757 |
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
|
758 |
if (mdl.size() > 0) |
8377 | 759 |
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
|
760 |
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
|
761 |
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
|
762 |
} |
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
|
763 |
|
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
|
764 |
// restore map selection |
8377 | 765 |
if (!m_curMap.isEmpty()) |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
766 |
intSetMap(m_curMap); |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
767 |
else |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
768 |
updatePreview(); |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
769 |
} |
7008
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
770 |
|
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
771 |
|
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
772 |
void HWMapContainer::onPreviewMapDestroyed(QObject * map) |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
773 |
{ |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
774 |
if (map == pMap) |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
775 |
pMap = 0; |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
776 |
} |
8377 | 777 |
|
778 |
void HWMapContainer::mapTypeChanged(int index) |
|
779 |
{ |
|
780 |
changeMapType((MapModel::MapType)cType->itemData(index).toInt()); |
|
781 |
} |
|
782 |
||
783 |
void HWMapContainer::changeMapType(MapModel::MapType type, const QModelIndex & newMap) |
|
784 |
{ |
|
785 |
staticMapList->hide(); |
|
786 |
missionMapList->hide(); |
|
787 |
lblMapList->hide(); |
|
788 |
generationStyles->hide(); |
|
789 |
mazeStyles->hide(); |
|
790 |
lblDesc->hide(); |
|
791 |
btnLoadMap->hide(); |
|
792 |
btnEditMap->hide(); |
|
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
793 |
mapFeatureSize->show(); |
8377 | 794 |
|
795 |
switch (type) |
|
796 |
{ |
|
797 |
case MapModel::GeneratedMap: |
|
798 |
mapgen = MAPGEN_REGULAR; |
|
799 |
setMapInfo(MapModel::MapInfoRandom); |
|
800 |
lblMapList->setText(tr("Map size:")); |
|
801 |
lblMapList->show(); |
|
802 |
generationStyles->show(); |
|
803 |
break; |
|
804 |
case MapModel::GeneratedMaze: |
|
805 |
mapgen = MAPGEN_MAZE; |
|
806 |
setMapInfo(MapModel::MapInfoMaze); |
|
807 |
lblMapList->setText(tr("Maze style:")); |
|
808 |
lblMapList->show(); |
|
809 |
mazeStyles->show(); |
|
810 |
break; |
|
10391 | 811 |
case MapModel::GeneratedPerlin: |
812 |
mapgen = MAPGEN_PERLIN; |
|
813 |
setMapInfo(MapModel::MapInfoPerlin); |
|
814 |
lblMapList->setText(tr("Style:")); |
|
815 |
lblMapList->show(); |
|
816 |
mazeStyles->show(); |
|
817 |
break; |
|
8377 | 818 |
case MapModel::HandDrawnMap: |
819 |
mapgen = MAPGEN_DRAWN; |
|
820 |
setMapInfo(MapModel::MapInfoDrawn); |
|
821 |
btnLoadMap->show(); |
|
10480 | 822 |
mapFeatureSize->hide(); |
8377 | 823 |
btnEditMap->show(); |
824 |
break; |
|
825 |
case MapModel::MissionMap: |
|
9744 | 826 |
setupMissionMapsView(); |
8377 | 827 |
mapgen = MAPGEN_MAP; |
828 |
missionMapChanged(newMap.isValid() ? newMap : missionMapList->currentIndex()); |
|
829 |
lblMapList->setText(tr("Mission:")); |
|
830 |
lblMapList->show(); |
|
831 |
missionMapList->show(); |
|
10480 | 832 |
mapFeatureSize->hide(); |
8377 | 833 |
lblDesc->setText(m_mapInfo.desc); |
834 |
lblDesc->show(); |
|
835 |
emit mapChanged(m_curMap); |
|
836 |
break; |
|
837 |
case MapModel::StaticMap: |
|
9744 | 838 |
setupStaticMapsView(); |
8377 | 839 |
mapgen = MAPGEN_MAP; |
840 |
staticMapChanged(newMap.isValid() ? newMap : staticMapList->currentIndex()); |
|
841 |
lblMapList->setText(tr("Map:")); |
|
842 |
lblMapList->show(); |
|
10480 | 843 |
mapFeatureSize->hide(); |
8377 | 844 |
staticMapList->show(); |
845 |
emit mapChanged(m_curMap); |
|
846 |
break; |
|
11744
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
847 |
case MapModel::FortsMap: |
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
848 |
mapgen = MAPGEN_FORTS; |
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
849 |
setMapInfo(MapModel::MapInfoForts); |
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
850 |
lblMapList->hide(); |
ac58a063d26a
Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents:
10959
diff
changeset
|
851 |
break; |
8377 | 852 |
default: |
853 |
break; |
|
854 |
} |
|
855 |
||
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
856 |
// Update theme button size |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
857 |
updateThemeButtonSize(); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
858 |
|
8377 | 859 |
// Update cType combobox |
860 |
for (int i = 0; i < cType->count(); i++) |
|
861 |
{ |
|
862 |
if ((MapModel::MapType)cType->itemData(i).toInt() == type) |
|
863 |
{ |
|
864 |
cType->setCurrentIndex(i); |
|
865 |
break; |
|
866 |
} |
|
867 |
} |
|
868 |
||
8467 | 869 |
repaint(); |
870 |
||
8377 | 871 |
emit mapgenChanged(mapgen); |
872 |
} |
|
873 |
||
10480 | 874 |
void HWMapContainer::intSetFeatureSize(int val) |
875 |
{ |
|
876 |
mapFeatureSize->setValue(val); |
|
877 |
emit mapFeatureSizeChanged(val); |
|
878 |
} |
|
879 |
void HWMapContainer::setFeatureSize(int val) |
|
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
880 |
{ |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
881 |
m_mapFeatureSize = val; |
10480 | 882 |
intSetFeatureSize(val); |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
883 |
//m_mapFeatureSize = val>>2<<2; |
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
884 |
//if (qAbs(m_prevMapFeatureSize-m_mapFeatureSize) > 4) |
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
885 |
{ |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
886 |
m_prevMapFeatureSize = m_mapFeatureSize; |
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
887 |
updatePreview(); |
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
888 |
} |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
889 |
} |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
890 |
|
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
891 |
// unused because I needed the space for the slider |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
892 |
void HWMapContainer::updateThemeButtonSize() |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
893 |
{ |
10480 | 894 |
if (m_mapInfo.type != MapModel::StaticMap && m_mapInfo.type != MapModel::HandDrawnMap) |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
895 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
896 |
btnTheme->setIconSize(QSize(30, 30)); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
897 |
btnTheme->setFixedHeight(30); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
898 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
899 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
900 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
901 |
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
|
902 |
btnTheme->setFixedHeight(64); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
903 |
btnTheme->setIconSize(iconSize); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
904 |
} |
8430
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
905 |
|
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
906 |
repaint(); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
907 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
908 |
|
8377 | 909 |
void HWMapContainer::showThemePrompt() |
910 |
{ |
|
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
|
911 |
ThemePrompt prompt(m_themeID, this); |
8377 | 912 |
int theme = prompt.exec() - 1; // Since 0 means canceled, so all indexes are +1'd |
913 |
if (theme < 0) return; |
|
914 |
||
915 |
QModelIndex current = m_themeModel->index(theme, 0); |
|
916 |
updateTheme(current); |
|
917 |
emit themeChanged(m_theme); |
|
918 |
} |
|
919 |
||
920 |
void HWMapContainer::updateTheme(const QModelIndex & current) |
|
921 |
{ |
|
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
|
922 |
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
|
923 |
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
|
924 |
QIcon icon = qVariantValue<QIcon>(current.data(Qt::DecorationRole)); |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
925 |
//QSize iconSize = icon.actualSize(QSize(65535, 65535)); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
926 |
//btnTheme->setFixedHeight(64); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
927 |
//btnTheme->setIconSize(iconSize); |
8377 | 928 |
btnTheme->setIcon(icon); |
8941 | 929 |
btnTheme->setText(tr("Theme: %1").arg(current.data(Qt::DisplayRole).toString())); |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
930 |
updateThemeButtonSize(); |
8377 | 931 |
} |
932 |
||
933 |
void HWMapContainer::staticMapChanged(const QModelIndex & map, const QModelIndex & old) |
|
934 |
{ |
|
935 |
mapChanged(map, 0, old); |
|
936 |
} |
|
937 |
||
938 |
void HWMapContainer::missionMapChanged(const QModelIndex & map, const QModelIndex & old) |
|
939 |
{ |
|
940 |
mapChanged(map, 1, old); |
|
941 |
} |
|
942 |
||
943 |
// Type: 0 = static, 1 = mission |
|
944 |
void HWMapContainer::mapChanged(const QModelIndex & map, int type, const QModelIndex & old) |
|
945 |
{ |
|
946 |
QListView * mapList; |
|
947 |
||
948 |
if (type == 0) mapList = staticMapList; |
|
949 |
else if (type == 1) mapList = missionMapList; |
|
950 |
else return; |
|
951 |
||
952 |
// Make sure it is a valid index |
|
953 |
if (!map.isValid()) |
|
954 |
{ |
|
955 |
if (old.isValid()) |
|
956 |
{ |
|
957 |
mapList->setCurrentIndex(old); |
|
958 |
mapList->scrollTo(old); |
|
959 |
} |
|
960 |
else |
|
961 |
{ |
|
962 |
m_mapInfo.type = MapModel::Invalid; |
|
963 |
updatePreview(); |
|
964 |
} |
|
965 |
||
966 |
return; |
|
967 |
} |
|
968 |
||
969 |
// If map changed, update list selection |
|
970 |
if (mapList->currentIndex() != map) |
|
971 |
{ |
|
972 |
mapList->setCurrentIndex(map); |
|
973 |
mapList->scrollTo(map); |
|
974 |
} |
|
975 |
||
10463 | 976 |
Q_ASSERT(map.data(Qt::UserRole + 1).canConvert<MapModel::MapInfo>()); // Houston, we have a problem. |
977 |
setMapInfo(map.data(Qt::UserRole + 1).value<MapModel::MapInfo>()); |
|
8377 | 978 |
} |
979 |
||
980 |
void HWMapContainer::setMapInfo(MapModel::MapInfo mapInfo) |
|
981 |
{ |
|
982 |
m_mapInfo = mapInfo; |
|
983 |
m_curMap = m_mapInfo.name; |
|
984 |
||
985 |
// the map has no pre-defined theme, so let's use the selected one |
|
986 |
if (m_mapInfo.theme.isEmpty()) |
|
987 |
{ |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
988 |
if (!selectedTheme.isEmpty()) |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
989 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
990 |
setTheme(selectedTheme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
991 |
emit themeChanged(selectedTheme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
992 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
993 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
994 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
995 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
996 |
setTheme(m_mapInfo.theme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
997 |
emit themeChanged(m_mapInfo.theme); |
8377 | 998 |
} |
999 |
||
1000 |
lblDesc->setText(mapInfo.desc); |
|
1001 |
||
1002 |
updatePreview(); |
|
1003 |
emit mapChanged(m_curMap); |
|
1004 |
} |
|
1005 |
||
1006 |
void HWMapContainer::loadDrawing() |
|
1007 |
{ |
|
1008 |
QString fileName = QFileDialog::getOpenFileName(NULL, tr("Load drawn map"), ".", tr("Drawn Maps") + " (*.hwmap);;" + tr("All files") + " (*)"); |
|
1009 |
||
1010 |
if(fileName.isEmpty()) return; |
|
1011 |
||
1012 |
QFile f(fileName); |
|
1013 |
||
1014 |
if(!f.open(QIODevice::ReadOnly)) |
|
1015 |
{ |
|
1016 |
QMessageBox errorMsg(parentWidget()); |
|
1017 |
errorMsg.setIcon(QMessageBox::Warning); |
|
1018 |
errorMsg.setWindowTitle(QMessageBox::tr("File error")); |
|
1019 |
errorMsg.setText(QMessageBox::tr("Cannot open '%1' for reading").arg(fileName)); |
|
1020 |
errorMsg.setWindowModality(Qt::WindowModal); |
|
1021 |
errorMsg.exec(); |
|
1022 |
} |
|
1023 |
else |
|
1024 |
{ |
|
1025 |
drawMapScene.decode(qUncompress(QByteArray::fromBase64(f.readAll()))); |
|
1026 |
mapDrawingFinished(); |
|
1027 |
} |
|
1028 |
} |
|
1029 |
||
1030 |
void HWMapContainer::showSeedPrompt() |
|
1031 |
{ |
|
1032 |
SeedPrompt prompt(parentWidget()->parentWidget(), getCurrentSeed(), isMaster()); |
|
1033 |
connect(&prompt, SIGNAL(seedSelected(const QString &)), this, SLOT(setNewSeed(const QString &))); |
|
1034 |
prompt.exec(); |
|
1035 |
} |
|
1036 |
||
1037 |
bool HWMapContainer::isMaster() |
|
1038 |
{ |
|
1039 |
return m_master; |
|
1040 |
} |
|
1041 |
||
1042 |
void HWMapContainer::setMaster(bool master) |
|
1043 |
{ |
|
8467 | 1044 |
if (master == m_master) return; |
8377 | 1045 |
m_master = master; |
8434 | 1046 |
|
8377 | 1047 |
foreach (QWidget *widget, m_childWidgets) |
1048 |
widget->setEnabled(master); |
|
1049 |
} |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1050 |
|
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1051 |
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
|
1052 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1053 |
if (name.isEmpty()) return; |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1054 |
|
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1055 |
m_theme = name; |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1056 |
btnTheme->setIcon(QIcon()); |
8941 | 1057 |
btnTheme->setText(tr("Theme: %1").arg(name)); |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8393
diff
changeset
|
1058 |
} |
9744 | 1059 |
|
1060 |
void HWMapContainer::setupMissionMapsView() |
|
1061 |
{ |
|
1062 |
if(m_missionsViewSetup) return; |
|
1063 |
m_missionsViewSetup = true; |
|
1064 |
||
1065 |
m_missionMapModel->loadMaps(); |
|
1066 |
missionMapList->setModel(m_missionMapModel); |
|
1067 |
missionMapList->setEditTriggers(QAbstractItemView::NoEditTriggers); |
|
1068 |
QItemSelectionModel * missionSelectionModel = missionMapList->selectionModel(); |
|
1069 |
connect(missionSelectionModel, |
|
1070 |
SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), |
|
1071 |
this, |
|
1072 |
SLOT(missionMapChanged(const QModelIndex &, const QModelIndex &))); |
|
1073 |
missionSelectionModel->setCurrentIndex(m_missionMapModel->index(0, 0), QItemSelectionModel::Clear | QItemSelectionModel::SelectCurrent); |
|
1074 |
} |
|
1075 |
||
1076 |
void HWMapContainer::setupStaticMapsView() |
|
1077 |
{ |
|
1078 |
if(m_staticViewSetup) return; |
|
1079 |
m_staticViewSetup = true; |
|
1080 |
||
1081 |
m_staticMapModel->loadMaps(); |
|
1082 |
staticMapList->setModel(m_staticMapModel); |
|
1083 |
staticMapList->setEditTriggers(QAbstractItemView::NoEditTriggers); |
|
1084 |
QItemSelectionModel * staticSelectionModel = staticMapList->selectionModel(); |
|
1085 |
connect(staticSelectionModel, |
|
1086 |
SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), |
|
1087 |
this, |
|
1088 |
SLOT(staticMapChanged(const QModelIndex &, const QModelIndex &))); |
|
1089 |
staticSelectionModel->setCurrentIndex(m_staticMapModel->index(0, 0), QItemSelectionModel::Clear | QItemSelectionModel::SelectCurrent); |
|
1090 |
} |