author | unc0rr |
Fri, 02 Aug 2019 13:35:23 +0200 | |
changeset 15284 | ae8e14d14596 |
parent 15160 | 4c13bc464c61 |
child 16026 | ce4b50823a95 |
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; |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
67 |
m_missingMap = false; |
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
68 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
69 |
hhSmall.load(":/res/hh_small.png"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
70 |
hhLimit = 18; |
1797 | 71 |
templateFilter = 0; |
8377 | 72 |
m_master = true; |
2377 | 73 |
|
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
74 |
linearGradNormal = QLinearGradient(QPoint(128, 0), QPoint(128, 128)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
75 |
linearGradNormal.setColorAt(1, QColor(0, 0, 192)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
76 |
linearGradNormal.setColorAt(0, QColor(66, 115, 225)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
77 |
|
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
78 |
linearGradLoading = QLinearGradient(QPoint(128, 0), QPoint(128, 128)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
79 |
linearGradLoading.setColorAt(1, QColor(58, 58, 137)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
80 |
linearGradLoading.setColorAt(0, QColor(90, 109, 153)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
81 |
|
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
82 |
linearGradMapError = QLinearGradient(QPoint(128, 0), QPoint(128, 128)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
83 |
linearGradMapError.setColorAt(1, QColor(255, 1, 0)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
84 |
linearGradMapError.setColorAt(0, QColor(255, 119, 0)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
85 |
|
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
86 |
linearGradNoPreview = QLinearGradient(QPoint(128, 0), QPoint(128, 128)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
87 |
linearGradNoPreview.setColorAt(1, QColor(15, 9, 72)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
88 |
linearGradNoPreview.setColorAt(0, QColor(15, 9, 72)); |
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
89 |
|
5252 | 90 |
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
|
91 |
10, |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
92 |
HWApplication::style()->pixelMetric(QStyle::PM_LayoutRightMargin), |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
93 |
HWApplication::style()->pixelMetric(QStyle::PM_LayoutBottomMargin)); |
2377 | 94 |
|
8377 | 95 |
m_staticMapModel = DataManager::instance().staticMapModel(); |
96 |
m_missionMapModel = DataManager::instance().missionMapModel(); |
|
97 |
m_themeModel = DataManager::instance().themeModel(); |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
98 |
|
8377 | 99 |
/* Layouts */ |
249 | 100 |
|
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
101 |
QWidget * topWidget = new QWidget(); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
102 |
QHBoxLayout * topLayout = new QHBoxLayout(topWidget); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
103 |
topWidget->setContentsMargins(0, 0, 0, 0); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
104 |
topLayout->setContentsMargins(0, 0, 0, 0); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
105 |
|
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
106 |
twoColumnLayout = new QHBoxLayout(); |
8377 | 107 |
QVBoxLayout * leftLayout = new QVBoxLayout(); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
108 |
leftLayout->setAlignment(Qt::AlignLeft); |
8377 | 109 |
QVBoxLayout * rightLayout = new QVBoxLayout(); |
110 |
twoColumnLayout->addLayout(leftLayout, 0); |
|
111 |
twoColumnLayout->addLayout(rightLayout, 0); |
|
112 |
QVBoxLayout * drawnControls = new QVBoxLayout(); |
|
113 |
||
13228
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
114 |
/* Map type label */ |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
115 |
|
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
116 |
QLabel* lblMapType = new QLabel(tr("Map type:")); |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
117 |
topLayout->setSpacing(10); |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
118 |
topLayout->addWidget(lblMapType, 0); |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
119 |
m_childWidgets << lblMapType; |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
120 |
|
8377 | 121 |
/* Map type combobox */ |
4487 | 122 |
|
8377 | 123 |
cType = new QComboBox(this); |
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
124 |
topLayout->addWidget(cType, 1); |
8377 | 125 |
cType->insertItem(0, tr("Image map"), MapModel::StaticMap); |
126 |
cType->insertItem(1, tr("Mission map"), MapModel::MissionMap); |
|
127 |
cType->insertItem(2, tr("Hand-drawn"), MapModel::HandDrawnMap); |
|
128 |
cType->insertItem(3, tr("Randomly generated"), MapModel::GeneratedMap); |
|
129 |
cType->insertItem(4, tr("Random maze"), MapModel::GeneratedMaze); |
|
10391 | 130 |
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
|
131 |
cType->insertItem(6, tr("Forts"), MapModel::FortsMap); |
8377 | 132 |
connect(cType, SIGNAL(currentIndexChanged(int)), this, SLOT(mapTypeChanged(int))); |
133 |
m_childWidgets << cType; |
|
249 | 134 |
|
8377 | 135 |
/* Randomize button */ |
1802 | 136 |
|
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
137 |
topLayout->addStretch(1); |
8377 | 138 |
const QIcon& lp = QIcon(":/res/dice.png"); |
139 |
QSize sz = lp.actualSize(QSize(65535, 65535)); |
|
140 |
btnRandomize = new QPushButton(); |
|
141 |
btnRandomize->setText(tr("Random")); |
|
142 |
btnRandomize->setIcon(lp); |
|
143 |
btnRandomize->setFixedHeight(30); |
|
144 |
btnRandomize->setIconSize(sz); |
|
145 |
btnRandomize->setFlat(true); |
|
146 |
btnRandomize->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
147 |
connect(btnRandomize, SIGNAL(clicked()), this, SLOT(setRandomMap())); |
|
11785 | 148 |
|
8377 | 149 |
m_childWidgets << btnRandomize; |
150 |
btnRandomize->setStyleSheet("padding: 5px;"); |
|
151 |
btnRandomize->setFixedHeight(cType->height()); |
|
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
152 |
topLayout->addWidget(btnRandomize, 1); |
1802 | 153 |
|
8377 | 154 |
/* Seed button */ |
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
155 |
|
8377 | 156 |
btnSeed = new QPushButton(parentWidget()->parentWidget()); |
13676
05fde8e30041
Add a few translator comments for frontend strings
Wuzzy <Wuzzy2@mail.ru>
parents:
13266
diff
changeset
|
157 |
//: Refers to the "random seed"; the source of randomness in the game |
8377 | 158 |
btnSeed->setText(tr("Seed")); |
11809
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
159 |
btnSeed->setWhatsThis(tr("View and edit the seed, the source of randomness in the game")); |
8377 | 160 |
btnSeed->setStyleSheet("padding: 5px;"); |
161 |
btnSeed->setFixedHeight(cType->height()); |
|
162 |
connect(btnSeed, SIGNAL(clicked()), this, SLOT(showSeedPrompt())); |
|
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
163 |
topLayout->addWidget(btnSeed, 0); |
1802 | 164 |
|
8377 | 165 |
/* Map preview label */ |
166 |
||
167 |
QLabel * lblMapPreviewText = new QLabel(this); |
|
168 |
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
|
169 |
leftLayout->addWidget(lblMapPreviewText, 0); |
13228
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
170 |
m_childWidgets << lblMapPreviewText; |
8377 | 171 |
|
172 |
/* Map Preview */ |
|
4562 | 173 |
|
8467 | 174 |
mapPreview = new QPushButton(this); |
8377 | 175 |
mapPreview->setObjectName("mapPreview"); |
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
176 |
mapPreview->setFlat(true); |
10161 | 177 |
mapPreview->setFixedSize(256 + 6, 128 + 6); |
8467 | 178 |
mapPreview->setContentsMargins(0, 0, 0, 0); |
8377 | 179 |
leftLayout->addWidget(mapPreview, 0); |
8467 | 180 |
connect(mapPreview, SIGNAL(clicked()), this, SLOT(previewClicked())); |
13228
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
181 |
m_childWidgets << mapPreview; |
8377 | 182 |
|
183 |
/* Bottom-Left layout */ |
|
3133 | 184 |
|
8377 | 185 |
QVBoxLayout * bottomLeftLayout = new QVBoxLayout(); |
186 |
leftLayout->addLayout(bottomLeftLayout, 1); |
|
187 |
||
188 |
/* Map list label */ |
|
189 |
||
10394 | 190 |
lblMapList = new QLabel(this); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
191 |
lblMapList->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum); |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
192 |
lblMapList->setAlignment(Qt::AlignTop | Qt::AlignLeft); |
8377 | 193 |
rightLayout->addWidget(lblMapList, 0); |
13228
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
194 |
m_childWidgets << lblMapList; |
8377 | 195 |
|
196 |
/* Static maps list */ |
|
1248 | 197 |
|
10394 | 198 |
staticMapList = new QListView(this); |
8377 | 199 |
rightLayout->addWidget(staticMapList, 1); |
200 |
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
|
201 |
|
8377 | 202 |
/* Mission maps list */ |
1802 | 203 |
|
9744 | 204 |
missionMapList = new QListView(this); |
8377 | 205 |
rightLayout->addWidget(missionMapList, 1); |
206 |
m_childWidgets << missionMapList; |
|
207 |
||
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
208 |
/* Map name (when not room master) */ |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
209 |
/* We use a QTextEdit instead of QLabel because it is able |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
210 |
to wrap at any character. */ |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
211 |
teMapName = new QTextEdit(this); |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
212 |
teMapName->setObjectName("mapName"); |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
213 |
teMapName->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Minimum); |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
214 |
teMapName->setAlignment(Qt::AlignTop | Qt::AlignLeft); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
215 |
|
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
216 |
/* Boilerplate to emulate a QLabel */ |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
217 |
teMapName->setReadOnly(true); |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
218 |
teMapName->setAcceptRichText(false); |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
219 |
teMapName->setFrameStyle(QFrame::NoFrame); |
13265
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
220 |
teMapName->setStyleSheet("background-color: transparent"); |
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
221 |
|
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
222 |
teMapName->setLineWrapMode(QTextEdit::WidgetWidth); |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
223 |
teMapName->setWordWrapMode(QTextOption::WrapAtWordBoundaryOrAnywhere); |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
224 |
|
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
225 |
rightLayout->addWidget(teMapName, 1); |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
226 |
m_childWidgets << teMapName; |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
227 |
|
8377 | 228 |
/* Map load and edit buttons */ |
229 |
||
230 |
drawnControls->addStretch(1); |
|
2377 | 231 |
|
14666
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
232 |
QPixmap pmLoad(":/res/Load.png"); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
233 |
QIcon iconLoad = QIcon(pmLoad); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
234 |
sz = iconLoad.actualSize(QSize(48, 48)); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
235 |
|
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
236 |
btnLoadMap = new QPushButton(tr("Load")); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
237 |
btnLoadMap->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
238 |
btnLoadMap->setWhatsThis(tr("Load map drawing")); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
239 |
btnLoadMap->setStyleSheet("padding: 5px;"); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
240 |
btnLoadMap->setFixedHeight(50); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
241 |
btnLoadMap->setIcon(iconLoad); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
242 |
btnLoadMap->setIconSize(sz); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
243 |
btnLoadMap->setFlat(true); |
8377 | 244 |
drawnControls->addWidget(btnLoadMap, 0); |
245 |
m_childWidgets << btnLoadMap; |
|
246 |
connect(btnLoadMap, SIGNAL(clicked()), this, SLOT(loadDrawing())); |
|
247 |
||
14666
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
248 |
QPixmap pmEdit(":/res/edit.png"); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
249 |
QIcon iconEdit = QIcon(pmEdit); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
250 |
sz = iconEdit.actualSize(QSize(48, 48)); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
251 |
|
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
252 |
btnEditMap = new QPushButton(tr("Edit")); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
253 |
btnEditMap->setWhatsThis(tr("Edit map drawing")); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
254 |
btnEditMap->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
255 |
btnEditMap->setStyleSheet("padding: 5px;"); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
256 |
btnEditMap->setFixedHeight(50); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
257 |
btnEditMap->setIcon(iconEdit); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
258 |
btnEditMap->setIconSize(sz); |
95b1b9ea505a
Shorten text of buttons to load/edit drawn map and make them look nicer
Wuzzy <Wuzzy2@mail.ru>
parents:
14460
diff
changeset
|
259 |
btnEditMap->setFlat(true); |
8377 | 260 |
drawnControls->addWidget(btnEditMap, 0); |
261 |
m_childWidgets << btnEditMap; |
|
262 |
connect(btnEditMap, SIGNAL(clicked()), this, SIGNAL(drawMapRequested())); |
|
263 |
||
264 |
drawnControls->addStretch(1); |
|
265 |
||
266 |
rightLayout->addLayout(drawnControls); |
|
267 |
||
268 |
/* Generator style list */ |
|
2377 | 269 |
|
10394 | 270 |
generationStyles = new QListWidget(this); |
8377 | 271 |
new QListWidgetItem(tr("All"), generationStyles); |
272 |
new QListWidgetItem(tr("Small"), generationStyles); |
|
273 |
new QListWidgetItem(tr("Medium"), generationStyles); |
|
274 |
new QListWidgetItem(tr("Large"), generationStyles); |
|
275 |
new QListWidgetItem(tr("Cavern"), generationStyles); |
|
276 |
new QListWidgetItem(tr("Wacky"), generationStyles); |
|
277 |
connect(generationStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setTemplateFilter(int))); |
|
278 |
m_childWidgets << generationStyles; |
|
279 |
rightLayout->addWidget(generationStyles, 1); |
|
280 |
||
281 |
/* Maze style list */ |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
282 |
|
10394 | 283 |
mazeStyles = new QListWidget(this); |
8377 | 284 |
new QListWidgetItem(tr("Small tunnels"), mazeStyles); |
285 |
new QListWidgetItem(tr("Medium tunnels"), mazeStyles); |
|
8695 | 286 |
new QListWidgetItem(tr("Large tunnels"), mazeStyles); |
8377 | 287 |
new QListWidgetItem(tr("Small islands"), mazeStyles); |
288 |
new QListWidgetItem(tr("Medium islands"), mazeStyles); |
|
289 |
new QListWidgetItem(tr("Large islands"), mazeStyles); |
|
290 |
connect(mazeStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setMazeSize(int))); |
|
291 |
m_childWidgets << mazeStyles; |
|
292 |
rightLayout->addWidget(mazeStyles, 1); |
|
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
293 |
|
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
294 |
mapFeatureSize = new QSlider(Qt::Horizontal, this); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
295 |
mapFeatureSize->setObjectName("mapFeatureSize"); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
296 |
//mapFeatureSize->setTickPosition(QSlider::TicksBelow); |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
297 |
mapFeatureSize->setMaximum(25); |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
298 |
mapFeatureSize->setMinimum(1); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
299 |
//mapFeatureSize->setFixedWidth(259); |
15160
4c13bc464c61
Set smaller pageStep for all QSliders
Wuzzy <Wuzzy2@mail.ru>
parents:
15010
diff
changeset
|
300 |
mapFeatureSize->setPageStep(5); |
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
301 |
mapFeatureSize->setValue(m_mapFeatureSize); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
302 |
mapFeatureSize->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding); |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
303 |
bottomLeftLayout->addWidget(mapFeatureSize, 0); |
10480 | 304 |
connect(mapFeatureSize, SIGNAL(valueChanged(int)), this, SLOT(setFeatureSize(int))); |
10521 | 305 |
m_childWidgets << mapFeatureSize; |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
306 |
|
8377 | 307 |
/* Mission description */ |
4557
4004bef2aa9d
fix layout in game config widget as per nemo's request
Henek
parents:
4550
diff
changeset
|
308 |
|
8377 | 309 |
lblDesc = new QLabel(); |
310 |
lblDesc->setWordWrap(true); |
|
311 |
lblDesc->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
312 |
lblDesc->setAlignment(Qt::AlignBottom | Qt::AlignLeft); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
313 |
lblDesc->setStyleSheet("font: 10px;"); |
8467 | 314 |
bottomLeftLayout->addWidget(lblDesc, 100); |
8377 | 315 |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
316 |
/* Add stretch above theme button */ |
8377 | 317 |
|
318 |
bottomLeftLayout->addStretch(1); |
|
319 |
||
320 |
/* Theme chooser */ |
|
11910
245163aa3674
Fix Qt warnings about QLayout (Fixes #127)
Wuzzy <almikes@aol.com>
parents:
11864
diff
changeset
|
321 |
QHBoxLayout * themeHBox = new QHBoxLayout(); |
11785 | 322 |
|
323 |
btnRandTheme = new QPushButton(); |
|
11809
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
324 |
btnRandTheme->setWhatsThis(tr("Randomize the theme")); |
11785 | 325 |
btnRandTheme->setIcon(lp); |
326 |
btnRandTheme->setIconSize(QSize(24, 24)); |
|
327 |
btnRandTheme->setFixedHeight(30); |
|
328 |
btnRandTheme->setFixedWidth(30); |
|
329 |
connect(btnRandTheme, SIGNAL(clicked()), this, SLOT(setRandomTheme())); |
|
11864
bff919afc63f
fix a typo back from may that apparently completely broke online-multiplayer due to causing a frontend crash on joining somebody else's room
sheepluva
parents:
11811
diff
changeset
|
330 |
m_childWidgets << btnRandTheme; |
11785 | 331 |
themeHBox->addWidget(btnRandTheme, 0); |
1215 | 332 |
|
10394 | 333 |
btnTheme = new QPushButton(this); |
11809
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
334 |
btnTheme->setWhatsThis(tr("Choose a theme")); |
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
335 |
btnTheme->setFlat(true); |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
336 |
btnTheme->setIconSize(QSize(30, 30)); |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
337 |
btnTheme->setFixedHeight(30); |
11785 | 338 |
btnTheme->setMaximumWidth(222); |
8377 | 339 |
connect(btnTheme, SIGNAL(clicked()), this, SLOT(showThemePrompt())); |
340 |
m_childWidgets << btnTheme; |
|
11785 | 341 |
themeHBox->addWidget(btnTheme, 1); |
342 |
||
343 |
bottomLeftLayout->addLayout(themeHBox); |
|
4699 | 344 |
|
8377 | 345 |
/* Add everything to main layout */ |
346 |
||
8886
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
347 |
mainLayout.addWidget(topWidget, 0); |
5c521d1fdd63
Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents:
8695
diff
changeset
|
348 |
mainLayout.addLayout(twoColumnLayout, 1); |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
349 |
|
8377 | 350 |
/* Set defaults */ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
351 |
|
8377 | 352 |
setRandomSeed(); |
353 |
setMazeSize(0); |
|
354 |
setTemplateFilter(0); |
|
355 |
staticMapChanged(m_staticMapModel->index(0, 0)); |
|
356 |
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
|
357 |
changeMapType(MapModel::GeneratedMap); |
184 | 358 |
} |
359 |
||
13260
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
360 |
void HWMapContainer::onImageReceived(const QPixmap &newImage) |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
361 |
{ |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
362 |
// When image received from the engine. |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
363 |
switch (m_mapInfo.type) |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
364 |
{ |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
365 |
case MapModel::GeneratedMap: |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
366 |
case MapModel::GeneratedMaze: |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
367 |
case MapModel::GeneratedPerlin: |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
368 |
case MapModel::HandDrawnMap: |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
369 |
case MapModel::FortsMap: |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
370 |
setImage(newImage); |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
371 |
break; |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
372 |
// Throw away image if we have switched the map mode in the meantime |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
373 |
default: |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
374 |
return; |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
375 |
} |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
376 |
} |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
377 |
|
10161 | 378 |
void HWMapContainer::setImage(const QPixmap &newImage) |
184 | 379 |
{ |
10161 | 380 |
addInfoToPreview(newImage); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
381 |
pMap = 0; |
8377 | 382 |
|
383 |
cType->setEnabled(isMaster()); |
|
249 | 384 |
} |
385 |
||
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
386 |
void HWMapContainer::setImage(const QPixmap &newImage, const QLinearGradient &linearGrad, bool showHHLimit) |
13253
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
387 |
{ |
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
388 |
addInfoToPreview(newImage, linearGrad, showHHLimit); |
13253
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
389 |
|
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
390 |
pMap = 0; |
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
391 |
|
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
392 |
cType->setEnabled(isMaster()); |
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
393 |
} |
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
394 |
|
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
395 |
|
1790 | 396 |
void HWMapContainer::setHHLimit(int newHHLimit) |
397 |
{ |
|
398 |
hhLimit = newHHLimit; |
|
399 |
} |
|
400 |
||
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
401 |
void HWMapContainer::addInfoToPreview(const QPixmap &image) |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
402 |
{ |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
403 |
addInfoToPreview(image, linearGradNormal, true); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
404 |
} |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
405 |
|
1790 | 406 |
// Should this add text to identify map size? |
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
407 |
void HWMapContainer::addInfoToPreview(const QPixmap &image, const QLinearGradient &linearGrad, bool drawHHLimit) |
1790 | 408 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
409 |
QPixmap finalImage = QPixmap(image.size()); |
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
410 |
QPainter p(&finalImage); |
2377 | 411 |
|
10161 | 412 |
p.fillRect(finalImage.rect(), linearGrad); |
413 |
p.drawPixmap(finalImage.rect(), image); |
|
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
414 |
|
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
415 |
if (drawHHLimit) |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
416 |
{ |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
417 |
p.setPen(QColor(0xff,0xcc,0x00)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
418 |
p.setBrush(QColor(0, 0, 0)); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
419 |
p.setFont(QFont("MS Shell Dlg", 10)); |
1790 | 420 |
|
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
421 |
p.drawRect(finalImage.rect().width() - hhSmall.rect().width() - 28, 3, 40, 20); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
422 |
|
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
423 |
QString text = (hhLimit > 0) ? QString::number(hhLimit) : "?"; |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
424 |
p.drawText(finalImage.rect().width() - hhSmall.rect().width() - 14 - (hhLimit > 9 ? 10 : 0), 18, text); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
425 |
p.drawPixmap(finalImage.rect().width() - hhSmall.rect().width() - 5, 5, hhSmall.rect().width(), hhSmall.rect().height(), hhSmall); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
426 |
} |
8467 | 427 |
|
13228
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
428 |
// Set the map preview image. Make sure it is always colored the same, |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
429 |
// no matter if disabled or not. |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
430 |
QIcon mapPreviewIcon = QIcon(); |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
431 |
mapPreviewIcon.addPixmap(finalImage, QIcon::Normal); |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
432 |
mapPreviewIcon.addPixmap(finalImage, QIcon::Disabled); |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13212
diff
changeset
|
433 |
mapPreview->setIcon(mapPreviewIcon); |
10161 | 434 |
mapPreview->setIconSize(finalImage.size()); |
184 | 435 |
} |
436 |
||
4562 | 437 |
void HWMapContainer::askForGeneratedPreview() |
184 | 438 |
{ |
8070
66bc20d089fc
Okay, remove previous request only if it has same parent
unc0rr
parents:
8049
diff
changeset
|
439 |
pMap = new HWMap(this); |
13260
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
440 |
connect(pMap, SIGNAL(ImageReceived(QPixmap)), this, SLOT(onImageReceived(const QPixmap))); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
441 |
connect(pMap, SIGNAL(HHLimitReceived(int)), this, SLOT(setHHLimit(int))); |
7008
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
442 |
connect(pMap, SIGNAL(destroyed(QObject *)), this, SLOT(onPreviewMapDestroyed(QObject *))); |
4562 | 443 |
pMap->getImage(m_seed, |
444 |
getTemplateFilter(), |
|
445 |
get_mapgen(), |
|
4941 | 446 |
getMazeSize(), |
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
447 |
getDrawnMapData(), |
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
448 |
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
|
449 |
m_scriptparam, |
14460
3897da404301
if a script is set, feature size can generate different maps
nemo
parents:
14416
diff
changeset
|
450 |
m_mapFeatureSize |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
451 |
); |
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
452 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
453 |
setHHLimit(0); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
454 |
|
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
455 |
QPixmap waitImage(m_previewSize); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
456 |
waitImage.fill(Qt::transparent); |
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
457 |
|
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
458 |
QPainter p(&waitImage); |
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
459 |
const QPixmap waitIcon(":/res/iconTime.png"); |
7017
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
460 |
int x = (waitImage.width() - waitIcon.width()) / 2; |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
461 |
int y = (waitImage.height() - waitIcon.height()) / 2; |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
462 |
p.drawPixmap(QPoint(x, y), waitIcon); |
19a434fc91fc
visually indicate when map preview generation is in progress.
sheepluva
parents:
7014
diff
changeset
|
463 |
|
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
464 |
setImage(waitImage, linearGradLoading, false); |
184 | 465 |
|
8377 | 466 |
cType->setEnabled(false); |
1215 | 467 |
} |
468 |
||
8467 | 469 |
void HWMapContainer::previewClicked() |
470 |
{ |
|
9452 | 471 |
if (isMaster()) // should only perform these if master, but disabling the button when not, causes an unattractive preview. |
472 |
switch (m_mapInfo.type) |
|
473 |
{ |
|
474 |
case MapModel::HandDrawnMap: |
|
475 |
emit drawMapRequested(); |
|
476 |
break; |
|
477 |
default: |
|
478 |
setRandomMap(); |
|
479 |
break; |
|
480 |
} |
|
8467 | 481 |
} |
482 |
||
184 | 483 |
QString HWMapContainer::getCurrentSeed() const |
484 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
485 |
return m_seed; |
184 | 486 |
} |
487 |
||
249 | 488 |
QString HWMapContainer::getCurrentMap() const |
489 |
{ |
|
8377 | 490 |
switch (m_mapInfo.type) |
491 |
{ |
|
492 |
case MapModel::StaticMap: |
|
493 |
case MapModel::MissionMap: |
|
494 |
return m_curMap; |
|
495 |
default: |
|
496 |
return QString(); |
|
497 |
} |
|
249 | 498 |
} |
499 |
||
500 |
QString HWMapContainer::getCurrentTheme() const |
|
501 |
{ |
|
6940
211aca8c1f4f
decouple current theme from map theme (fixes theme confusion bugs of last commit)
sheepluva
parents:
6939
diff
changeset
|
502 |
return(m_theme); |
3008 | 503 |
} |
504 |
||
505 |
bool HWMapContainer::getCurrentIsMission() const |
|
506 |
{ |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
507 |
return(m_mapInfo.type == MapModel::MissionMap); |
1790 | 508 |
} |
509 |
||
510 |
int HWMapContainer::getCurrentHHLimit() const |
|
511 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
512 |
return hhLimit; |
249 | 513 |
} |
514 |
||
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
|
515 |
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
|
516 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
517 |
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
|
518 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
519 |
|
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
520 |
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
|
521 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
522 |
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
|
523 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
524 |
|
1802 | 525 |
quint32 HWMapContainer::getTemplateFilter() const |
526 |
{ |
|
8377 | 527 |
return generationStyles->currentRow(); |
1802 | 528 |
} |
529 |
||
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
530 |
quint32 HWMapContainer::getFeatureSize() const |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
531 |
{ |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
532 |
return m_mapFeatureSize; |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
533 |
} |
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10471
diff
changeset
|
534 |
|
184 | 535 |
void HWMapContainer::resizeEvent ( QResizeEvent * event ) |
536 |
{ |
|
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4557
diff
changeset
|
537 |
Q_UNUSED(event); |
184 | 538 |
} |
320 | 539 |
|
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
|
540 |
void HWMapContainer::intSetSeed(const QString & seed) |
320 | 541 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
542 |
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
|
543 |
} |
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
544 |
|
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
545 |
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
|
546 |
{ |
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
547 |
intSetSeed(seed); |
10391 | 548 |
if ((m_mapInfo.type == MapModel::GeneratedMap) |
549 |
|| (m_mapInfo.type == MapModel::GeneratedMaze) |
|
550 |
|| (m_mapInfo.type == MapModel::GeneratedPerlin)) |
|
4562 | 551 |
updatePreview(); |
320 | 552 |
} |
553 |
||
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
|
554 |
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
|
555 |
{ |
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
556 |
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
|
557 |
m_scriptparam = scriptparam; |
10391 | 558 |
if ((m_mapInfo.type == MapModel::GeneratedMap) |
559 |
|| (m_mapInfo.type == MapModel::GeneratedMaze) |
|
560 |
|| (m_mapInfo.type == MapModel::GeneratedPerlin) |
|
561 |
|| (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
|
562 |
updatePreview(); |
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
563 |
} |
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
564 |
|
4936
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
565 |
void HWMapContainer::intSetMap(const QString & map) |
320 | 566 |
{ |
8377 | 567 |
if (map == "+rnd+") |
568 |
{ |
|
10336 | 569 |
//changeMapType(MapModel::GeneratedMap); |
8377 | 570 |
} |
571 |
else if (map == "+maze+") |
|
572 |
{ |
|
10336 | 573 |
//changeMapType(MapModel::GeneratedMaze); |
8377 | 574 |
} |
10391 | 575 |
else if (map == "+perlin+") |
576 |
{ |
|
577 |
//changeMapType(MapModel::GeneratedPerlin); |
|
578 |
} |
|
8377 | 579 |
else if (map == "+drawn+") |
580 |
{ |
|
10336 | 581 |
//changeMapType(MapModel::HandDrawnMap); |
8377 | 582 |
} |
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
|
583 |
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
|
584 |
{ |
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
|
585 |
//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
|
586 |
} |
8377 | 587 |
else if (m_staticMapModel->mapExists(map)) |
588 |
{ |
|
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
589 |
m_missingMap = false; |
8377 | 590 |
changeMapType(MapModel::StaticMap, m_staticMapModel->index(m_staticMapModel->findMap(map), 0)); |
591 |
} |
|
592 |
else if (m_missionMapModel->mapExists(map)) |
|
593 |
{ |
|
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
594 |
m_missingMap = false; |
8377 | 595 |
changeMapType(MapModel::MissionMap, m_missionMapModel->index(m_missionMapModel->findMap(map), 0)); |
596 |
} else |
|
597 |
{ |
|
598 |
qDebug() << "HWMapContainer::intSetMap: Map doesn't exist: " << map; |
|
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
599 |
m_missingMap = true; |
13260
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
600 |
m_curMap = map; |
13261
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
601 |
m_mapInfo.name = map; |
13265
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
602 |
setMapNameLabel(map, false); |
13260
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
603 |
if (m_mapInfo.type == MapModel::StaticMap) |
13261
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
604 |
setupStaticMapsView(m_curMap); |
13260
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
605 |
else if (m_mapInfo.type == MapModel::MissionMap) |
13261
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
606 |
setupMissionMapsView(m_curMap); |
13260
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
607 |
else |
13250
0cc068e8a391
Fix some map preview properly problems when host switches to image map mode w/ you missing the map
Wuzzy <Wuzzy2@mail.ru>
parents:
13249
diff
changeset
|
608 |
{ |
0cc068e8a391
Fix some map preview properly problems when host switches to image map mode w/ you missing the map
Wuzzy <Wuzzy2@mail.ru>
parents:
13249
diff
changeset
|
609 |
m_mapInfo.type = MapModel::StaticMap; |
13261
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
610 |
setupStaticMapsView(m_curMap); |
13258
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
611 |
changeMapType(m_mapInfo.type, QModelIndex()); |
13250
0cc068e8a391
Fix some map preview properly problems when host switches to image map mode w/ you missing the map
Wuzzy <Wuzzy2@mail.ru>
parents:
13249
diff
changeset
|
612 |
} |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
613 |
updatePreview(); |
8377 | 614 |
} |
320 | 615 |
} |
616 |
||
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
617 |
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
|
618 |
{ |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
619 |
if ((m_mapInfo.type == MapModel::Invalid) || (map != m_mapInfo.name) || m_missingMap) |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
620 |
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
|
621 |
} |
d65d438acd23
Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents:
4701
diff
changeset
|
622 |
|
320 | 623 |
void HWMapContainer::setTheme(const QString & theme) |
624 |
{ |
|
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
|
625 |
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
|
626 |
|
9d18b61bd3eb
- Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents:
5252
diff
changeset
|
627 |
if(mdl.size()) |
8377 | 628 |
updateTheme(mdl.at(0)); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
629 |
else |
13249
d2b58cf339fe
Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13248
diff
changeset
|
630 |
setMissingTheme(theme); |
320 | 631 |
} |
4562 | 632 |
|
4337 | 633 |
void HWMapContainer::setRandomMap() |
634 |
{ |
|
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
|
635 |
if (!m_master) return; |
8924 | 636 |
|
4419 | 637 |
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
|
638 |
|
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
|
639 |
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
|
640 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
641 |
switch(m_mapInfo.type) |
4337 | 642 |
{ |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
643 |
case MapModel::GeneratedMap: |
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
644 |
case MapModel::GeneratedMaze: |
10391 | 645 |
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
|
646 |
case MapModel::FortsMap: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
647 |
setRandomTheme(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
648 |
break; |
8377 | 649 |
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
|
650 |
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
|
651 |
{ |
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
|
652 |
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
|
653 |
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
|
654 |
} |
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
|
655 |
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
|
656 |
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
|
657 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
658 |
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
|
659 |
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
|
660 |
{ |
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
|
661 |
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
|
662 |
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
|
663 |
} |
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
|
664 |
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
|
665 |
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
|
666 |
break; |
8377 | 667 |
default: |
668 |
break; |
|
4337 | 669 |
} |
670 |
} |
|
671 |
||
320 | 672 |
void HWMapContainer::setRandomSeed() |
673 |
{ |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
674 |
setSeed(QUuid::createUuid().toString()); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
675 |
emit seedChanged(m_seed); |
320 | 676 |
} |
1318 | 677 |
|
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
|
678 |
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
|
679 |
{ |
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
|
680 |
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
|
681 |
} |
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
|
682 |
|
1318 | 683 |
void HWMapContainer::setRandomTheme() |
684 |
{ |
|
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
|
685 |
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
|
686 |
|
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
|
687 |
if (m_withoutDLC) |
13248
b0022324fb4e
Add IsHiddenRole to ThemeModel for hidden themes
Wuzzy <Wuzzy2@mail.ru>
parents:
13246
diff
changeset
|
688 |
tmodel = m_themeModel->withoutDLCOrHidden(); |
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
|
689 |
else |
13248
b0022324fb4e
Add IsHiddenRole to ThemeModel for hidden themes
Wuzzy <Wuzzy2@mail.ru>
parents:
13246
diff
changeset
|
690 |
tmodel = m_themeModel->withoutHidden(); |
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
|
691 |
|
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
|
692 |
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
|
693 |
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
|
694 |
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
|
695 |
emit themeChanged(m_theme); |
1318 | 696 |
} |
1797 | 697 |
|
4941 | 698 |
void HWMapContainer::intSetTemplateFilter(int filter) |
699 |
{ |
|
8377 | 700 |
generationStyles->setCurrentRow(filter); |
4941 | 701 |
emit newTemplateFilter(filter); |
702 |
} |
|
703 |
||
1797 | 704 |
void HWMapContainer::setTemplateFilter(int filter) |
705 |
{ |
|
4941 | 706 |
intSetTemplateFilter(filter); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
707 |
if (m_mapInfo.type == MapModel::GeneratedMap) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
708 |
updatePreview(); |
1802 | 709 |
} |
710 |
||
3133 | 711 |
MapGenerator HWMapContainer::get_mapgen(void) const |
712 |
{ |
|
713 |
return mapgen; |
|
714 |
} |
|
715 |
||
4941 | 716 |
int HWMapContainer::getMazeSize(void) const |
3133 | 717 |
{ |
8377 | 718 |
return mazeStyles->currentRow(); |
3133 | 719 |
} |
720 |
||
4941 | 721 |
void HWMapContainer::intSetMazeSize(int size) |
3133 | 722 |
{ |
8377 | 723 |
mazeStyles->setCurrentRow(size); |
4941 | 724 |
emit mazeSizeChanged(size); |
725 |
} |
|
726 |
||
727 |
void HWMapContainer::setMazeSize(int size) |
|
728 |
{ |
|
729 |
intSetMazeSize(size); |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
730 |
if (m_mapInfo.type == MapModel::GeneratedMaze) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
731 |
updatePreview(); |
3133 | 732 |
} |
733 |
||
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
|
734 |
void HWMapContainer::intSetMapgen(MapGenerator m) |
3133 | 735 |
{ |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
736 |
if (mapgen != m) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
737 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
738 |
mapgen = m; |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
739 |
|
10463 | 740 |
bool f = false; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
741 |
switch (m) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
742 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
743 |
case MAPGEN_REGULAR: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
744 |
m_mapInfo.type = MapModel::GeneratedMap; |
10463 | 745 |
f = true; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
746 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
747 |
case MAPGEN_MAZE: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
748 |
m_mapInfo.type = MapModel::GeneratedMaze; |
10463 | 749 |
f = true; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
750 |
break; |
10391 | 751 |
case MAPGEN_PERLIN: |
752 |
m_mapInfo.type = MapModel::GeneratedPerlin; |
|
10463 | 753 |
f = true; |
10391 | 754 |
break; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
755 |
case MAPGEN_DRAWN: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
756 |
m_mapInfo.type = MapModel::HandDrawnMap; |
10463 | 757 |
f = true; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
758 |
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
|
759 |
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
|
760 |
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
|
761 |
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
|
762 |
break; |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
763 |
case MAPGEN_MAP: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
764 |
switch (m_mapInfo.type) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
765 |
{ |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
766 |
case MapModel::GeneratedMap: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
767 |
case MapModel::GeneratedMaze: |
10391 | 768 |
case MapModel::GeneratedPerlin: |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
769 |
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
|
770 |
case MapModel::FortsMap: |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
771 |
m_mapInfo.type = MapModel::Invalid; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
772 |
default: |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
773 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
774 |
} |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
775 |
break; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
776 |
} |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
777 |
|
10463 | 778 |
if(f) |
779 |
changeMapType(m_mapInfo.type, QModelIndex()); |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
780 |
} |
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
|
781 |
} |
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
|
782 |
|
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
|
783 |
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
|
784 |
{ |
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
|
785 |
intSetMapgen(m); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
786 |
if(m != MAPGEN_MAP) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
787 |
updatePreview(); |
3133 | 788 |
} |
4489 | 789 |
|
4537 | 790 |
void HWMapContainer::setDrawnMapData(const QByteArray & ar) |
791 |
{ |
|
792 |
drawMapScene.decode(ar); |
|
4562 | 793 |
updatePreview(); |
4537 | 794 |
} |
795 |
||
4489 | 796 |
QByteArray HWMapContainer::getDrawnMapData() |
797 |
{ |
|
4520
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
798 |
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
|
799 |
} |
4519 | 800 |
|
8377 | 801 |
void HWMapContainer::setNewSeed(const QString & newSeed) |
4519 | 802 |
{ |
8377 | 803 |
setSeed(newSeed); |
804 |
emit seedChanged(newSeed); |
|
4519 | 805 |
} |
4520
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
806 |
|
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
807 |
DrawMapScene * HWMapContainer::getDrawMapScene() |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
808 |
{ |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
809 |
return &drawMapScene; |
e7882bd1a894
Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents:
4519
diff
changeset
|
810 |
} |
4525 | 811 |
|
812 |
void HWMapContainer::mapDrawingFinished() |
|
813 |
{ |
|
4526 | 814 |
emit drawnMapChanged(getDrawnMapData()); |
4525 | 815 |
|
4562 | 816 |
updatePreview(); |
4550
d300ea498486
added set button to seed edit so maps won't regenerate as often
Henek
parents:
4537
diff
changeset
|
817 |
} |
4562 | 818 |
|
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
819 |
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
|
820 |
{ |
13260
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
821 |
if (!m_previewEnabled) |
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
822 |
{ |
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
823 |
m_previewEnabled = true; |
9745 | 824 |
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
|
825 |
updatePreview(); |
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
826 |
} |
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
827 |
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
|
828 |
} |
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
|
829 |
|
4562 | 830 |
void HWMapContainer::updatePreview() |
831 |
{ |
|
9739
c2c9dd2544b8
make lazy loading of map preview a little bit less of a hack
sheepluva
parents:
9735
diff
changeset
|
832 |
// 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
|
833 |
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
|
834 |
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
|
835 |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
836 |
if (pMap) |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
837 |
{ |
13260
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
838 |
disconnect(pMap, 0, this, SLOT(onImageReceived(const QPixmap))); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
839 |
disconnect(pMap, 0, this, SLOT(setHHLimit(int))); |
13260
2c0779260e8a
Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents:
13259
diff
changeset
|
840 |
disconnect(pMap, 0, this, SLOT(onPreviewMapDestroyed(QObject *))); |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
841 |
pMap = 0; |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
842 |
} |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
843 |
|
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
844 |
QPixmap failPixmap; |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
845 |
QIcon failIcon; |
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
846 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
847 |
switch(m_mapInfo.type) |
4562 | 848 |
{ |
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
849 |
case MapModel::Invalid: |
13253
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
850 |
// Map error image |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
851 |
failPixmap = QPixmap(":/res/missingMap.png"); |
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
852 |
setImage(failPixmap, linearGradMapError, false); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
853 |
lblDesc->clear(); |
7014
c0b32404ef74
+ display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents:
7008
diff
changeset
|
854 |
break; |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
855 |
case MapModel::GeneratedMap: |
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
856 |
case MapModel::GeneratedMaze: |
10391 | 857 |
case MapModel::GeneratedPerlin: |
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
858 |
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
|
859 |
case MapModel::FortsMap: |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
860 |
askForGeneratedPreview(); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
861 |
break; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
862 |
default: |
13253
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
863 |
// For maps loaded from image |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
864 |
if(m_missingMap) |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
865 |
{ |
13253
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
866 |
// Map error image due to missing map |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
867 |
failPixmap = QPixmap(":/res/missingMap.png"); |
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
868 |
setImage(failPixmap, linearGradMapError, false); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
869 |
lblDesc->clear(); |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
870 |
break; |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
871 |
} |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
872 |
else |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
873 |
{ |
13253
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
874 |
// Draw map preview |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
875 |
QPixmap mapImage; |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
876 |
bool success = mapImage.load("physfs://Maps/" + m_mapInfo.name + "/preview.png"); |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
877 |
|
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
878 |
setHHLimit(m_mapInfo.limit); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
879 |
if(!success) |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
880 |
{ |
13253
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
881 |
// Missing preview image |
13254
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
882 |
QPixmap empty = QPixmap(m_previewSize); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
883 |
empty.fill(Qt::transparent); |
1381ce67a781
Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents:
13253
diff
changeset
|
884 |
setImage(empty, linearGradNoPreview, true); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
885 |
return; |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
886 |
} |
13253
dd054edd56df
Fix map type combo box being disabled for good when you select image or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13251
diff
changeset
|
887 |
setImage(mapImage); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6157
diff
changeset
|
888 |
} |
4562 | 889 |
} |
890 |
} |
|
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
|
891 |
|
10480 | 892 |
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
|
893 |
{ |
5793
401ab167bd9f
This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents:
5789
diff
changeset
|
894 |
intSetMapgen(m); |
4941 | 895 |
intSetMazeSize(mazesize); |
896 |
intSetSeed(seed); |
|
897 |
intSetTemplateFilter(tmpl); |
|
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
898 |
// 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
|
899 |
intSetMap(map); |
10480 | 900 |
intSetMazeSize(mazesize); |
901 |
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
|
902 |
} |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
903 |
|
6938
217ed62e872c
MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents:
6937
diff
changeset
|
904 |
void HWMapContainer::updateModelViews() |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
905 |
{ |
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
|
906 |
// 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
|
907 |
// do this before map selection restore, because map may overwrite theme |
13259
e13777374583
Add some isNull checks for some strings in mapContainer
Wuzzy <Wuzzy2@mail.ru>
parents:
13258
diff
changeset
|
908 |
if (!m_theme.isNull() && !m_theme.isEmpty()) |
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
|
909 |
{ |
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
|
910 |
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
|
911 |
if (mdl.size() > 0) |
8377 | 912 |
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
|
913 |
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
|
914 |
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
|
915 |
} |
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
|
916 |
|
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
|
917 |
// restore map selection |
13259
e13777374583
Add some isNull checks for some strings in mapContainer
Wuzzy <Wuzzy2@mail.ru>
parents:
13258
diff
changeset
|
918 |
if (!m_curMap.isNull() && !m_curMap.isEmpty()) |
7018
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
919 |
intSetMap(m_curMap); |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
920 |
else |
6a1f46c026bf
some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents:
7017
diff
changeset
|
921 |
updatePreview(); |
6933
78d194a30520
mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents:
6700
diff
changeset
|
922 |
} |
7008
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
923 |
|
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
924 |
|
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
925 |
void HWMapContainer::onPreviewMapDestroyed(QObject * map) |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
926 |
{ |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
927 |
if (map == pMap) |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
928 |
pMap = 0; |
25563f054ef3
fix a previewmap-related QObject::disconnect segfault
sheepluva
parents:
6983
diff
changeset
|
929 |
} |
8377 | 930 |
|
931 |
void HWMapContainer::mapTypeChanged(int index) |
|
932 |
{ |
|
933 |
changeMapType((MapModel::MapType)cType->itemData(index).toInt()); |
|
934 |
} |
|
935 |
||
11809
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
936 |
void HWMapContainer::updateHelpTexts(MapModel::MapType type) |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
937 |
{ |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
938 |
QString randomAll = tr("Randomize the map, theme and seed"); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
939 |
QString randomNoMap = tr("Randomize the theme and seed"); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
940 |
QString randomSeed = tr("Randomize the seed"); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
941 |
QString randomAllPrev = tr("Click to randomize the map, theme and seed"); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
942 |
QString randomNoMapPrev = tr("Click to randomize the theme and seed"); |
11811
f9a4f4d11c3a
Fix problems with dynamic whats this texts
Wuzzy <almikes@aol.com>
parents:
11809
diff
changeset
|
943 |
QString mfsComplex = QString(tr("Adjust the complexity of the generated map")); |
f9a4f4d11c3a
Fix problems with dynamic whats this texts
Wuzzy <almikes@aol.com>
parents:
11809
diff
changeset
|
944 |
QString mfsFortsDistance = QString(tr("Adjust the distance between forts")); |
14416 | 945 |
QString mfsDrawnMap = QString(tr("Scale size of the drawn map")); |
11809
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
946 |
switch (type) |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
947 |
{ |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
948 |
case MapModel::GeneratedMap: |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
949 |
case MapModel::GeneratedPerlin: |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
950 |
case MapModel::GeneratedMaze: |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
951 |
mapPreview->setWhatsThis(randomAllPrev); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
952 |
mapFeatureSize->setWhatsThis(mfsComplex); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
953 |
btnRandomize->setWhatsThis(randomAll); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
954 |
break; |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
955 |
case MapModel::MissionMap: |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
956 |
case MapModel::StaticMap: |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
957 |
mapPreview->setWhatsThis(randomAllPrev); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
958 |
btnRandomize->setWhatsThis(randomAll); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
959 |
break; |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
960 |
case MapModel::HandDrawnMap: |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
961 |
mapPreview->setWhatsThis(tr("Click to edit")); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
962 |
btnRandomize->setWhatsThis(randomSeed); |
14416 | 963 |
mapFeatureSize->setWhatsThis(mfsDrawnMap); |
11809
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
964 |
break; |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
965 |
case MapModel::FortsMap: |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
966 |
mapPreview->setWhatsThis(randomNoMapPrev); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
967 |
mapFeatureSize->setWhatsThis(mfsFortsDistance); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
968 |
btnRandomize->setWhatsThis(randomNoMap); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
969 |
break; |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
970 |
default: |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
971 |
break; |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
972 |
} |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
973 |
} |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
974 |
|
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
975 |
|
8377 | 976 |
void HWMapContainer::changeMapType(MapModel::MapType type, const QModelIndex & newMap) |
977 |
{ |
|
978 |
staticMapList->hide(); |
|
979 |
missionMapList->hide(); |
|
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
980 |
teMapName->hide(); |
8377 | 981 |
lblMapList->hide(); |
982 |
generationStyles->hide(); |
|
983 |
mazeStyles->hide(); |
|
984 |
lblDesc->hide(); |
|
985 |
btnLoadMap->hide(); |
|
986 |
btnEditMap->hide(); |
|
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
987 |
mapFeatureSize->show(); |
8377 | 988 |
|
989 |
switch (type) |
|
990 |
{ |
|
991 |
case MapModel::GeneratedMap: |
|
992 |
mapgen = MAPGEN_REGULAR; |
|
993 |
setMapInfo(MapModel::MapInfoRandom); |
|
994 |
lblMapList->setText(tr("Map size:")); |
|
995 |
lblMapList->show(); |
|
996 |
generationStyles->show(); |
|
997 |
break; |
|
998 |
case MapModel::GeneratedMaze: |
|
999 |
mapgen = MAPGEN_MAZE; |
|
1000 |
setMapInfo(MapModel::MapInfoMaze); |
|
1001 |
lblMapList->setText(tr("Maze style:")); |
|
1002 |
lblMapList->show(); |
|
1003 |
mazeStyles->show(); |
|
1004 |
break; |
|
10391 | 1005 |
case MapModel::GeneratedPerlin: |
1006 |
mapgen = MAPGEN_PERLIN; |
|
1007 |
setMapInfo(MapModel::MapInfoPerlin); |
|
1008 |
lblMapList->setText(tr("Style:")); |
|
1009 |
lblMapList->show(); |
|
1010 |
mazeStyles->show(); |
|
1011 |
break; |
|
8377 | 1012 |
case MapModel::HandDrawnMap: |
1013 |
mapgen = MAPGEN_DRAWN; |
|
1014 |
setMapInfo(MapModel::MapInfoDrawn); |
|
1015 |
btnLoadMap->show(); |
|
14416 | 1016 |
//mapFeatureSize->hide(); |
8377 | 1017 |
btnEditMap->show(); |
1018 |
break; |
|
1019 |
case MapModel::MissionMap: |
|
9744 | 1020 |
setupMissionMapsView(); |
8377 | 1021 |
mapgen = MAPGEN_MAP; |
1022 |
missionMapChanged(newMap.isValid() ? newMap : missionMapList->currentIndex()); |
|
1023 |
lblMapList->setText(tr("Mission:")); |
|
1024 |
lblMapList->show(); |
|
13265
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1025 |
setMapNameLabel(m_curMap, !m_missingMap); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1026 |
if(m_master) |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1027 |
{ |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1028 |
missionMapList->show(); |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1029 |
} |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1030 |
else |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1031 |
{ |
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1032 |
teMapName->show(); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1033 |
} |
10480 | 1034 |
mapFeatureSize->hide(); |
8377 | 1035 |
lblDesc->setText(m_mapInfo.desc); |
1036 |
lblDesc->show(); |
|
1037 |
emit mapChanged(m_curMap); |
|
1038 |
break; |
|
1039 |
case MapModel::StaticMap: |
|
9744 | 1040 |
setupStaticMapsView(); |
8377 | 1041 |
mapgen = MAPGEN_MAP; |
1042 |
staticMapChanged(newMap.isValid() ? newMap : staticMapList->currentIndex()); |
|
1043 |
lblMapList->setText(tr("Map:")); |
|
1044 |
lblMapList->show(); |
|
13265
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1045 |
setMapNameLabel(m_curMap, !m_missingMap); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1046 |
if(m_master) |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1047 |
{ |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1048 |
staticMapList->show(); |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1049 |
} |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1050 |
else |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1051 |
{ |
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1052 |
teMapName->show(); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1053 |
} |
10480 | 1054 |
mapFeatureSize->hide(); |
8377 | 1055 |
emit mapChanged(m_curMap); |
1056 |
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
|
1057 |
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
|
1058 |
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
|
1059 |
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
|
1060 |
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
|
1061 |
break; |
8377 | 1062 |
default: |
1063 |
break; |
|
1064 |
} |
|
1065 |
||
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1066 |
// Update theme button size |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
1067 |
updateThemeButtonSize(); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1068 |
|
11809
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
1069 |
// Update “What's This?” help texts |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
1070 |
updateHelpTexts(type); |
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
1071 |
|
8377 | 1072 |
// Update cType combobox |
1073 |
for (int i = 0; i < cType->count(); i++) |
|
1074 |
{ |
|
1075 |
if ((MapModel::MapType)cType->itemData(i).toInt() == type) |
|
1076 |
{ |
|
1077 |
cType->setCurrentIndex(i); |
|
1078 |
break; |
|
1079 |
} |
|
1080 |
} |
|
1081 |
||
8467 | 1082 |
repaint(); |
1083 |
||
8377 | 1084 |
emit mapgenChanged(mapgen); |
1085 |
} |
|
1086 |
||
10480 | 1087 |
void HWMapContainer::intSetFeatureSize(int val) |
1088 |
{ |
|
1089 |
mapFeatureSize->setValue(val); |
|
11809
f412d539284e
Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents:
11785
diff
changeset
|
1090 |
updateHelpTexts((MapModel::MapType)cType->itemData(cType->currentIndex()).toInt()); |
10480 | 1091 |
emit mapFeatureSizeChanged(val); |
1092 |
} |
|
1093 |
void HWMapContainer::setFeatureSize(int val) |
|
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
1094 |
{ |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
1095 |
m_mapFeatureSize = val; |
10480 | 1096 |
intSetFeatureSize(val); |
15010
5d8068ee16fc
Give a more accurate hedgehog limit estimate for small drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
14921
diff
changeset
|
1097 |
m_prevMapFeatureSize = m_mapFeatureSize; |
5d8068ee16fc
Give a more accurate hedgehog limit estimate for small drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
14921
diff
changeset
|
1098 |
updatePreview(); |
10471
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
1099 |
} |
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
1100 |
|
d968b1ac130c
sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents:
10465
diff
changeset
|
1101 |
// 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
|
1102 |
void HWMapContainer::updateThemeButtonSize() |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1103 |
{ |
14416 | 1104 |
if (m_mapInfo.type != MapModel::StaticMap) |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1105 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1106 |
btnTheme->setIconSize(QSize(30, 30)); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1107 |
btnTheme->setFixedHeight(30); |
11785 | 1108 |
btnRandTheme->setFixedHeight(30); |
1109 |
btnRandTheme->setIconSize(QSize(24, 24)); |
|
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1110 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1111 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1112 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1113 |
QSize iconSize = btnTheme->icon().actualSize(QSize(65535, 65535)); |
11785 | 1114 |
btnRandTheme->setFixedHeight(64); |
8430
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
1115 |
btnTheme->setFixedHeight(64); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1116 |
btnTheme->setIconSize(iconSize); |
11785 | 1117 |
btnRandTheme->setIconSize(QSize(32, 32)); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1118 |
} |
8430
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
1119 |
|
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
1120 |
repaint(); |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1121 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1122 |
|
8377 | 1123 |
void HWMapContainer::showThemePrompt() |
1124 |
{ |
|
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
|
1125 |
ThemePrompt prompt(m_themeID, this); |
8377 | 1126 |
int theme = prompt.exec() - 1; // Since 0 means canceled, so all indexes are +1'd |
1127 |
if (theme < 0) return; |
|
1128 |
||
1129 |
QModelIndex current = m_themeModel->index(theme, 0); |
|
1130 |
updateTheme(current); |
|
1131 |
emit themeChanged(m_theme); |
|
1132 |
} |
|
1133 |
||
1134 |
void HWMapContainer::updateTheme(const QModelIndex & current) |
|
1135 |
{ |
|
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
|
1136 |
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
|
1137 |
m_themeID = current.row(); |
12897
fc47fc4af6bd
Finish porting. Seems to work, but no thorough testing has been performed
unc0rr
parents:
11910
diff
changeset
|
1138 |
QIcon icon = current.data(Qt::DecorationRole).value<QIcon>(); |
8377 | 1139 |
btnTheme->setIcon(icon); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1140 |
QString themeLabel = tr("Theme: %1").arg(current.data(Qt::DisplayRole).toString()); |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1141 |
btnTheme->setText(themeLabel); |
10477
b219c5a2317f
Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents:
10472
diff
changeset
|
1142 |
updateThemeButtonSize(); |
8377 | 1143 |
} |
1144 |
||
1145 |
void HWMapContainer::staticMapChanged(const QModelIndex & map, const QModelIndex & old) |
|
1146 |
{ |
|
1147 |
mapChanged(map, 0, old); |
|
1148 |
} |
|
1149 |
||
1150 |
void HWMapContainer::missionMapChanged(const QModelIndex & map, const QModelIndex & old) |
|
1151 |
{ |
|
1152 |
mapChanged(map, 1, old); |
|
1153 |
} |
|
1154 |
||
1155 |
// Type: 0 = static, 1 = mission |
|
1156 |
void HWMapContainer::mapChanged(const QModelIndex & map, int type, const QModelIndex & old) |
|
1157 |
{ |
|
1158 |
QListView * mapList; |
|
1159 |
||
13258
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1160 |
if (type == 0) |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1161 |
{ |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1162 |
mapList = staticMapList; |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1163 |
m_mapInfo.type = MapModel::StaticMap; |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1164 |
} |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1165 |
else if (type == 1) |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1166 |
{ |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1167 |
mapList = missionMapList; |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1168 |
m_mapInfo.type = MapModel::MissionMap; |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1169 |
} |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1170 |
else |
66dd7b5f7d33
Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents:
13256
diff
changeset
|
1171 |
return; |
8377 | 1172 |
|
1173 |
// Make sure it is a valid index |
|
1174 |
if (!map.isValid()) |
|
1175 |
{ |
|
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1176 |
// Make sure there's always a valid selection in the map list |
8377 | 1177 |
if (old.isValid()) |
1178 |
{ |
|
1179 |
mapList->setCurrentIndex(old); |
|
1180 |
mapList->scrollTo(old); |
|
1181 |
} |
|
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1182 |
m_mapInfo.type = MapModel::Invalid; |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1183 |
m_missingMap = true; |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1184 |
updatePreview(); |
8377 | 1185 |
return; |
1186 |
} |
|
1187 |
||
1188 |
// If map changed, update list selection |
|
1189 |
if (mapList->currentIndex() != map) |
|
1190 |
{ |
|
1191 |
mapList->setCurrentIndex(map); |
|
1192 |
mapList->scrollTo(map); |
|
1193 |
} |
|
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1194 |
if (m_missingMap) |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1195 |
{ |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1196 |
m_missingMap = false; |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1197 |
updatePreview(); |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1198 |
} |
8377 | 1199 |
|
10463 | 1200 |
Q_ASSERT(map.data(Qt::UserRole + 1).canConvert<MapModel::MapInfo>()); // Houston, we have a problem. |
1201 |
setMapInfo(map.data(Qt::UserRole + 1).value<MapModel::MapInfo>()); |
|
8377 | 1202 |
} |
1203 |
||
1204 |
void HWMapContainer::setMapInfo(MapModel::MapInfo mapInfo) |
|
1205 |
{ |
|
1206 |
m_mapInfo = mapInfo; |
|
1207 |
m_curMap = m_mapInfo.name; |
|
1208 |
||
1209 |
// the map has no pre-defined theme, so let's use the selected one |
|
13259
e13777374583
Add some isNull checks for some strings in mapContainer
Wuzzy <Wuzzy2@mail.ru>
parents:
13258
diff
changeset
|
1210 |
if (m_mapInfo.theme.isNull() || m_mapInfo.theme.isEmpty()) |
8377 | 1211 |
{ |
13259
e13777374583
Add some isNull checks for some strings in mapContainer
Wuzzy <Wuzzy2@mail.ru>
parents:
13258
diff
changeset
|
1212 |
if (!selectedTheme.isNull() && !selectedTheme.isEmpty()) |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1213 |
{ |
14828
8ed0c3761640
Change theme to Nature if changing from background-only or hidden theme to a generated map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14666
diff
changeset
|
1214 |
// Fall back to a default theme if current theme is a background theme or hidden |
8ed0c3761640
Change theme to Nature if changing from background-only or hidden theme to a generated map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14666
diff
changeset
|
1215 |
QModelIndexList mdl = m_themeModel->match(m_themeModel->index(0), ThemeModel::ActualNameRole, m_theme); |
8ed0c3761640
Change theme to Nature if changing from background-only or hidden theme to a generated map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14666
diff
changeset
|
1216 |
if (mdl.size() > 0) |
8ed0c3761640
Change theme to Nature if changing from background-only or hidden theme to a generated map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14666
diff
changeset
|
1217 |
{ |
14921 | 1218 |
if ((mdl.at(0).data(ThemeModel::IsBackgroundThemeRole).toBool() == true) || (mdl.at(0).data(ThemeModel::IsHiddenRole).toBool() == true)) |
14828
8ed0c3761640
Change theme to Nature if changing from background-only or hidden theme to a generated map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14666
diff
changeset
|
1219 |
{ |
8ed0c3761640
Change theme to Nature if changing from background-only or hidden theme to a generated map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14666
diff
changeset
|
1220 |
selectedTheme = "Nature"; |
8ed0c3761640
Change theme to Nature if changing from background-only or hidden theme to a generated map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14666
diff
changeset
|
1221 |
} |
8ed0c3761640
Change theme to Nature if changing from background-only or hidden theme to a generated map type
Wuzzy <Wuzzy2@mail.ru>
parents:
14666
diff
changeset
|
1222 |
} |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1223 |
setTheme(selectedTheme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1224 |
emit themeChanged(selectedTheme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1225 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1226 |
} |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1227 |
else |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1228 |
{ |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1229 |
setTheme(m_mapInfo.theme); |
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1230 |
emit themeChanged(m_mapInfo.theme); |
8377 | 1231 |
} |
1232 |
||
1233 |
lblDesc->setText(mapInfo.desc); |
|
1234 |
||
1235 |
updatePreview(); |
|
1236 |
emit mapChanged(m_curMap); |
|
1237 |
} |
|
1238 |
||
1239 |
void HWMapContainer::loadDrawing() |
|
1240 |
{ |
|
13212
e9e4cc867b6e
Add default directory DrawnMaps to put hand-drawn maps into
Wuzzy <Wuzzy2@mail.ru>
parents:
12897
diff
changeset
|
1241 |
QString loadDir = QDir(cfgdir->absolutePath() + "/DrawnMaps").absolutePath(); |
e9e4cc867b6e
Add default directory DrawnMaps to put hand-drawn maps into
Wuzzy <Wuzzy2@mail.ru>
parents:
12897
diff
changeset
|
1242 |
QString fileName = QFileDialog::getOpenFileName(this, tr("Load drawn map"), loadDir, tr("Drawn Maps") + " (*.hwmap);;" + tr("All files") + " (*)"); |
8377 | 1243 |
|
1244 |
if(fileName.isEmpty()) return; |
|
1245 |
||
1246 |
QFile f(fileName); |
|
1247 |
||
1248 |
if(!f.open(QIODevice::ReadOnly)) |
|
1249 |
{ |
|
1250 |
QMessageBox errorMsg(parentWidget()); |
|
1251 |
errorMsg.setIcon(QMessageBox::Warning); |
|
1252 |
errorMsg.setWindowTitle(QMessageBox::tr("File error")); |
|
1253 |
errorMsg.setText(QMessageBox::tr("Cannot open '%1' for reading").arg(fileName)); |
|
14836
b9437746bffb
Frontend: Force plain text mode for many message windows
Wuzzy <Wuzzy2@mail.ru>
parents:
14828
diff
changeset
|
1254 |
errorMsg.setTextFormat(Qt::PlainText); |
8377 | 1255 |
errorMsg.setWindowModality(Qt::WindowModal); |
1256 |
errorMsg.exec(); |
|
1257 |
} |
|
1258 |
else |
|
1259 |
{ |
|
1260 |
drawMapScene.decode(qUncompress(QByteArray::fromBase64(f.readAll()))); |
|
1261 |
mapDrawingFinished(); |
|
1262 |
} |
|
1263 |
} |
|
1264 |
||
1265 |
void HWMapContainer::showSeedPrompt() |
|
1266 |
{ |
|
1267 |
SeedPrompt prompt(parentWidget()->parentWidget(), getCurrentSeed(), isMaster()); |
|
1268 |
connect(&prompt, SIGNAL(seedSelected(const QString &)), this, SLOT(setNewSeed(const QString &))); |
|
1269 |
prompt.exec(); |
|
1270 |
} |
|
1271 |
||
1272 |
bool HWMapContainer::isMaster() |
|
1273 |
{ |
|
1274 |
return m_master; |
|
1275 |
} |
|
1276 |
||
1277 |
void HWMapContainer::setMaster(bool master) |
|
1278 |
{ |
|
8467 | 1279 |
if (master == m_master) return; |
8377 | 1280 |
m_master = master; |
8434 | 1281 |
|
8377 | 1282 |
foreach (QWidget *widget, m_childWidgets) |
1283 |
widget->setEnabled(master); |
|
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1284 |
|
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1285 |
if(m_mapInfo.type == MapModel::StaticMap) |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1286 |
{ |
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1287 |
teMapName->setHidden(master); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1288 |
staticMapList->setVisible(master); |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1289 |
} |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1290 |
else if(m_mapInfo.type == MapModel::MissionMap) |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1291 |
{ |
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1292 |
teMapName->setHidden(master); |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1293 |
missionMapList->setVisible(master); |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1294 |
} |
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1295 |
|
13256
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1296 |
if(master) |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1297 |
{ |
13256
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1298 |
// Room delegation cleanup if we get room control. |
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1299 |
|
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1300 |
if(m_missingMap) |
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1301 |
{ |
13266
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1302 |
// Reset map if we don't have the host's map |
13256
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1303 |
m_missingMap = false; |
13266
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1304 |
if(m_mapInfo.type == MapModel::MissionMap) |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1305 |
{ |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1306 |
missionMapList->selectionModel()->setCurrentIndex(m_missionMapModel->index(0, 0), QItemSelectionModel::Clear | QItemSelectionModel::SelectCurrent); |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1307 |
} |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1308 |
else |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1309 |
{ |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1310 |
if(m_mapInfo.type != MapModel::StaticMap) |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1311 |
{ |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1312 |
changeMapType(MapModel::StaticMap); |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1313 |
} |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1314 |
staticMapList->selectionModel()->setCurrentIndex(m_staticMapModel->index(0, 0), QItemSelectionModel::Clear | QItemSelectionModel::SelectCurrent); |
df1db657bbb4
If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13265
diff
changeset
|
1315 |
} |
13256
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1316 |
} |
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1317 |
else |
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1318 |
{ |
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1319 |
// Set random theme if we don't have it |
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1320 |
QModelIndexList mdl = m_themeModel->match(m_themeModel->index(0), ThemeModel::ActualNameRole, m_theme); |
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1321 |
if(!mdl.size()) |
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1322 |
setRandomTheme(); |
0cfa8f6a4e80
Force proper map and theme reset when host delegates to you if you don't have the map or theme
Wuzzy <Wuzzy2@mail.ru>
parents:
13255
diff
changeset
|
1323 |
} |
13246
0c98d3b249f7
Online room: Display error image in preview when host selects a map you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
1324 |
} |
13265
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1325 |
else |
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1326 |
{ |
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1327 |
setMapNameLabel(m_curMap, true); |
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1328 |
} |
8377 | 1329 |
} |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1330 |
|
13249
d2b58cf339fe
Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13248
diff
changeset
|
1331 |
void HWMapContainer::setMissingTheme(const QString & name) |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1332 |
{ |
13259
e13777374583
Add some isNull checks for some strings in mapContainer
Wuzzy <Wuzzy2@mail.ru>
parents:
13258
diff
changeset
|
1333 |
if (name.isNull() || name.isEmpty()) return; |
8393
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1334 |
|
85bd6c7b2641
Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents:
8377
diff
changeset
|
1335 |
m_theme = name; |
13249
d2b58cf339fe
Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13248
diff
changeset
|
1336 |
QPixmap pixMissing = QPixmap(":/res/missingTheme@2x.png"); |
d2b58cf339fe
Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13248
diff
changeset
|
1337 |
QIcon iconMissing = QIcon(); |
d2b58cf339fe
Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13248
diff
changeset
|
1338 |
iconMissing.addPixmap(pixMissing, QIcon::Normal); |
d2b58cf339fe
Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13248
diff
changeset
|
1339 |
iconMissing.addPixmap(pixMissing, QIcon::Disabled); |
d2b58cf339fe
Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13248
diff
changeset
|
1340 |
btnTheme->setIcon(iconMissing); |
13255
7f8f2c77a9cc
Map container: Add question mark in front of missing theme name
Wuzzy <Wuzzy2@mail.ru>
parents:
13254
diff
changeset
|
1341 |
// Question mark in front of theme name denotes it's missing |
7f8f2c77a9cc
Map container: Add question mark in front of missing theme name
Wuzzy <Wuzzy2@mail.ru>
parents:
13254
diff
changeset
|
1342 |
btnTheme->setText(tr("Theme: %1").arg("?" + name)); |
13249
d2b58cf339fe
Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents:
13248
diff
changeset
|
1343 |
updateThemeButtonSize(); |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8393
diff
changeset
|
1344 |
} |
9744 | 1345 |
|
13261
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
1346 |
void HWMapContainer::setupMissionMapsView(const QString & initialMap) |
9744 | 1347 |
{ |
1348 |
if(m_missionsViewSetup) return; |
|
1349 |
m_missionsViewSetup = true; |
|
1350 |
||
1351 |
m_missionMapModel->loadMaps(); |
|
1352 |
missionMapList->setModel(m_missionMapModel); |
|
1353 |
missionMapList->setEditTriggers(QAbstractItemView::NoEditTriggers); |
|
1354 |
QItemSelectionModel * missionSelectionModel = missionMapList->selectionModel(); |
|
1355 |
connect(missionSelectionModel, |
|
1356 |
SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), |
|
1357 |
this, |
|
1358 |
SLOT(missionMapChanged(const QModelIndex &, const QModelIndex &))); |
|
13261
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
1359 |
int m = 0; |
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
1360 |
if(!initialMap.isNull()) |
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
1361 |
m = m_missionMapModel->findMap(initialMap); |
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
1362 |
missionSelectionModel->setCurrentIndex(m_missionMapModel->index(m, 0), QItemSelectionModel::Clear | QItemSelectionModel::SelectCurrent); |
9744 | 1363 |
} |
1364 |
||
13261
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
1365 |
void HWMapContainer::setupStaticMapsView(const QString & initialMap) |
9744 | 1366 |
{ |
1367 |
if(m_staticViewSetup) return; |
|
1368 |
m_staticViewSetup = true; |
|
1369 |
||
1370 |
m_staticMapModel->loadMaps(); |
|
1371 |
staticMapList->setModel(m_staticMapModel); |
|
1372 |
staticMapList->setEditTriggers(QAbstractItemView::NoEditTriggers); |
|
1373 |
QItemSelectionModel * staticSelectionModel = staticMapList->selectionModel(); |
|
1374 |
connect(staticSelectionModel, |
|
1375 |
SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)), |
|
1376 |
this, |
|
1377 |
SLOT(staticMapChanged(const QModelIndex &, const QModelIndex &))); |
|
13261
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
1378 |
int m = 0; |
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
1379 |
if(!initialMap.isNull()) |
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
1380 |
m = m_staticMapModel->findMap(initialMap); |
01ac67500f50
Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents:
13260
diff
changeset
|
1381 |
staticSelectionModel->setCurrentIndex(m_staticMapModel->index(m, 0), QItemSelectionModel::Clear | QItemSelectionModel::SelectCurrent); |
9744 | 1382 |
} |
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1383 |
|
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1384 |
// Call this function instead of setting the text of the map name label |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1385 |
// directly. |
13265
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1386 |
void HWMapContainer::setMapNameLabel(QString mapName, bool validMap) |
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1387 |
{ |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1388 |
// Cut off insanely long names to be displayed |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1389 |
if(mapName.length() >= 90) |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1390 |
{ |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1391 |
mapName.truncate(84); |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1392 |
mapName.append(" (...)"); |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1393 |
} |
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1394 |
teMapName->setPlainText(mapName); |
13265
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1395 |
if(validMap) |
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1396 |
teMapName->setStyleSheet("background-color: transparent;"); |
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1397 |
else |
8a5feb0edce5
QTfrontent: Print map and style name in red, if missing. And update map label after delegation
Wuzzy <Wuzzy2@mail.ru>
parents:
13261
diff
changeset
|
1398 |
teMapName->setStyleSheet("background-color: transparent; color: #b50000;"); |
13251
edb2f654f8f6
Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents:
13250
diff
changeset
|
1399 |
} |