QTfrontend/ui/widget/mapContainer.cpp
author nemo
Wed, 12 Dec 2018 23:01:06 -0500
changeset 14416 96624a6cdb93
parent 13676 05fde8e30041
child 14460 3897da404301
permissions -rw-r--r--
Allow scaling hand drawn maps
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 883
diff changeset
     2
 * Hedgewars, a free turn based strategy game
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
     3
 * Copyright (c) 2006-2012 Igor Ulyanov <iulyanov@gmail.com>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     4
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     8
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    12
 * GNU General Public License for more details.
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    13
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    14
 * You should have received a copy of the GNU General Public License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    17
 */
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    18
10462
dd3cf0c91cc9 A slider for controlling things like bumpiness of map and tunnel sizes.
nemo
parents: 10394
diff changeset
    19
#include <QBitmap>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    20
#include <QBuffer>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    21
#include <QColor>
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    22
#include <QDebug>
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    23
#include <QFile>
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    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
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
    41
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
    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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    44
#include "themeprompt.h"
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    45
#include "seedprompt.h"
1209
7f6cb1d7be2a Start remaking multiplayer page
unc0rr
parents: 1164
diff changeset
    46
#include "igbox.h"
5252
ded882439548 file association for mac!
koda
parents: 5238
diff changeset
    47
#include "HWApplication.h"
7258
722e8a0d89dc - Move colorsModel to appropriate place
unc0rr
parents: 7018
diff changeset
    48
#include "ThemeModel.h"
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    49
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    50
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    51
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    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
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
    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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    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
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
    61
    m_missionsViewSetup = false;
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
    62
    m_staticViewSetup = false;
10159
5848ed144e0b move the freeModule too, couple of style tweaks
nemo
parents: 10150
diff changeset
    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
fedd8649fdd9 Templates filter by nemo
unc0rr
parents: 1790
diff changeset
    71
    templateFilter = 0;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    72
    m_master = true;
2377
f3fab2b09e0c And in frontend
nemo
parents: 2021
diff changeset
    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
ded882439548 file association for mac!
koda
parents: 5238
diff changeset
    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
f3fab2b09e0c And in frontend
nemo
parents: 2021
diff changeset
    94
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    95
    m_staticMapModel = DataManager::instance().staticMapModel();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    96
    m_missionMapModel = DataManager::instance().missionMapModel();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    99
    /* Layouts */
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   109
    QVBoxLayout * rightLayout = new QVBoxLayout();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   110
    twoColumnLayout->addLayout(leftLayout, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   111
    twoColumnLayout->addLayout(rightLayout, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   112
    QVBoxLayout * drawnControls = new QVBoxLayout();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   121
    /* Map type combobox */
4487
dbf69c7c5e00 Add drawn map into the list of map generators
unc0rr
parents: 4419
diff changeset
   122
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   125
    cType->insertItem(0, tr("Image map"), MapModel::StaticMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   126
    cType->insertItem(1, tr("Mission map"), MapModel::MissionMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   127
    cType->insertItem(2, tr("Hand-drawn"), MapModel::HandDrawnMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   128
    cType->insertItem(3, tr("Randomly generated"), MapModel::GeneratedMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   129
    cType->insertItem(4, tr("Random maze"), MapModel::GeneratedMaze);
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   132
    connect(cType, SIGNAL(currentIndexChanged(int)), this, SLOT(mapTypeChanged(int)));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   133
    m_childWidgets << cType;
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   134
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   135
    /* Randomize button */
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   136
8886
5c521d1fdd63 Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents: 8695
diff changeset
   137
    topLayout->addStretch(1);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   138
    const QIcon& lp = QIcon(":/res/dice.png");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   139
    QSize sz = lp.actualSize(QSize(65535, 65535));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   140
    btnRandomize = new QPushButton();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   141
    btnRandomize->setText(tr("Random"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   142
    btnRandomize->setIcon(lp);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   143
    btnRandomize->setFixedHeight(30);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   144
    btnRandomize->setIconSize(sz);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   145
    btnRandomize->setFlat(true);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   146
    btnRandomize->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   147
    connect(btnRandomize, SIGNAL(clicked()), this, SLOT(setRandomMap()));
11785
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   148
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   149
    m_childWidgets << btnRandomize;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   150
    btnRandomize->setStyleSheet("padding: 5px;");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   153
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   154
    /* Seed button */
8886
5c521d1fdd63 Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents: 8695
diff changeset
   155
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   160
    btnSeed->setStyleSheet("padding: 5px;");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   161
    btnSeed->setFixedHeight(cType->height());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   164
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   165
    /* Map preview label */
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   166
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   167
    QLabel * lblMapPreviewText = new QLabel(this);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   171
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   172
    /* Map Preview */
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   173
8467
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
   174
    mapPreview = new QPushButton(this);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
c092f92aee23 Move preview rendering into HWMap
unc0rr
parents: 10159
diff changeset
   177
    mapPreview->setFixedSize(256 + 6, 128 + 6);
8467
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
   178
    mapPreview->setContentsMargins(0, 0, 0, 0);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   179
    leftLayout->addWidget(mapPreview, 0);
8467
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   182
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   183
    /* Bottom-Left layout */
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   184
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   185
    QVBoxLayout * bottomLeftLayout = new QVBoxLayout();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   186
    leftLayout->addLayout(bottomLeftLayout, 1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   187
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   188
    /* Map list label */
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   189
10394
0e0c3936412f Fix map contrainer widget look in russian locale
unc0rr
parents: 10391
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   195
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   196
    /* Static maps list */
1248
8c77eec56bf4 Better theme selection widget look
unc0rr
parents: 1228
diff changeset
   197
10394
0e0c3936412f Fix map contrainer widget look in russian locale
unc0rr
parents: 10391
diff changeset
   198
    staticMapList = new QListView(this);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   199
    rightLayout->addWidget(staticMapList, 1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   202
    /* Mission maps list */
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   203
9744
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
   204
    missionMapList = new QListView(this);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   205
    rightLayout->addWidget(missionMapList, 1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   206
    m_childWidgets << missionMapList;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   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
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   228
    /* Map load and edit buttons */
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   229
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   230
    drawnControls->addStretch(1);
2377
f3fab2b09e0c And in frontend
nemo
parents: 2021
diff changeset
   231
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   232
    btnLoadMap = new QPushButton(tr("Load map drawing"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   233
    btnLoadMap->setStyleSheet("padding: 20px;");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   234
    drawnControls->addWidget(btnLoadMap, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   235
    m_childWidgets << btnLoadMap;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   236
    connect(btnLoadMap, SIGNAL(clicked()), this, SLOT(loadDrawing()));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   237
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   238
    btnEditMap = new QPushButton(tr("Edit map drawing"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   239
    btnEditMap->setStyleSheet("padding: 20px;");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   240
    drawnControls->addWidget(btnEditMap, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   241
    m_childWidgets << btnEditMap;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   242
    connect(btnEditMap, SIGNAL(clicked()), this, SIGNAL(drawMapRequested()));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   243
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   244
    drawnControls->addStretch(1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   245
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   246
    rightLayout->addLayout(drawnControls);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   247
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   248
    /* Generator style list */
2377
f3fab2b09e0c And in frontend
nemo
parents: 2021
diff changeset
   249
10394
0e0c3936412f Fix map contrainer widget look in russian locale
unc0rr
parents: 10391
diff changeset
   250
    generationStyles = new QListWidget(this);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   251
    new QListWidgetItem(tr("All"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   252
    new QListWidgetItem(tr("Small"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   253
    new QListWidgetItem(tr("Medium"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   254
    new QListWidgetItem(tr("Large"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   255
    new QListWidgetItem(tr("Cavern"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   256
    new QListWidgetItem(tr("Wacky"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   257
    connect(generationStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setTemplateFilter(int)));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   258
    m_childWidgets << generationStyles;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   259
    rightLayout->addWidget(generationStyles, 1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   260
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   261
    /* Maze style list */
4557
4004bef2aa9d fix layout in game config widget as per nemo's request
Henek
parents: 4550
diff changeset
   262
10394
0e0c3936412f Fix map contrainer widget look in russian locale
unc0rr
parents: 10391
diff changeset
   263
    mazeStyles = new QListWidget(this);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   264
    new QListWidgetItem(tr("Small tunnels"), mazeStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   265
    new QListWidgetItem(tr("Medium tunnels"), mazeStyles);
8695
nemo
parents: 8619
diff changeset
   266
    new QListWidgetItem(tr("Large tunnels"), mazeStyles);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   267
    new QListWidgetItem(tr("Small islands"), mazeStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   268
    new QListWidgetItem(tr("Medium islands"), mazeStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   269
    new QListWidgetItem(tr("Large islands"), mazeStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   270
    connect(mazeStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setMazeSize(int)));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   271
    m_childWidgets << mazeStyles;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   272
    rightLayout->addWidget(mazeStyles, 1);
4557
4004bef2aa9d fix layout in game config widget as per nemo's request
Henek
parents: 4550
diff changeset
   273
10471
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
   274
    mapFeatureSize = new QSlider(Qt::Horizontal, this);
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
   275
    mapFeatureSize->setObjectName("mapFeatureSize");
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
   276
    //mapFeatureSize->setTickPosition(QSlider::TicksBelow);
10477
b219c5a2317f Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents: 10472
diff changeset
   277
    mapFeatureSize->setMaximum(25);
10471
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
   278
    mapFeatureSize->setMinimum(1);
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
   279
    //mapFeatureSize->setFixedWidth(259);
10472
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10471
diff changeset
   280
    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
   281
    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
   282
    bottomLeftLayout->addWidget(mapFeatureSize, 0);
10480
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
   283
    connect(mapFeatureSize, SIGNAL(valueChanged(int)), this, SLOT(setFeatureSize(int)));
10521
844874dba527 add feature size slider to disable list
nemo
parents: 10480
diff changeset
   284
    m_childWidgets << mapFeatureSize;
10471
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
   285
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   286
    /* Mission description */
4557
4004bef2aa9d fix layout in game config widget as per nemo's request
Henek
parents: 4550
diff changeset
   287
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   288
    lblDesc = new QLabel();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   289
    lblDesc->setWordWrap(true);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   290
    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
   291
    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
   292
    lblDesc->setStyleSheet("font: 10px;");
8467
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
   293
    bottomLeftLayout->addWidget(lblDesc, 100);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   294
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   295
    /* Add stretch above theme button */
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   296
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   297
    bottomLeftLayout->addStretch(1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   298
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   299
    /* Theme chooser */
11910
245163aa3674 Fix Qt warnings about QLayout (Fixes #127)
Wuzzy <almikes@aol.com>
parents: 11864
diff changeset
   300
    QHBoxLayout * themeHBox = new QHBoxLayout();
11785
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   301
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   302
    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
   303
    btnRandTheme->setWhatsThis(tr("Randomize the theme"));
11785
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   304
    btnRandTheme->setIcon(lp);
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   305
    btnRandTheme->setIconSize(QSize(24, 24));
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   306
    btnRandTheme->setFixedHeight(30);
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   307
    btnRandTheme->setFixedWidth(30);
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   308
    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
   309
    m_childWidgets << btnRandTheme;
11785
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   310
    themeHBox->addWidget(btnRandTheme, 0);
1215
0c1c294c0f7e Themes list now works
unc0rr
parents: 1214
diff changeset
   311
10394
0e0c3936412f Fix map contrainer widget look in russian locale
unc0rr
parents: 10391
diff changeset
   312
    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
   313
    btnTheme->setWhatsThis(tr("Choose a theme"));
8886
5c521d1fdd63 Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents: 8695
diff changeset
   314
    btnTheme->setFlat(true);
10471
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
   315
    btnTheme->setIconSize(QSize(30, 30));
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
   316
    btnTheme->setFixedHeight(30);
11785
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   317
    btnTheme->setMaximumWidth(222);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   318
    connect(btnTheme, SIGNAL(clicked()), this, SLOT(showThemePrompt()));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   319
    m_childWidgets << btnTheme;
11785
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   320
    themeHBox->addWidget(btnTheme, 1);
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   321
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
   322
    bottomLeftLayout->addLayout(themeHBox);
4699
47d8a524780a hide seed...
koda
parents: 4566
diff changeset
   323
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   324
    /* Add everything to main layout */
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   325
8886
5c521d1fdd63 Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents: 8695
diff changeset
   326
    mainLayout.addWidget(topWidget, 0);
5c521d1fdd63 Fixed map preview overlap on certain locales (Fixes issue 549).
dag10
parents: 8695
diff changeset
   327
    mainLayout.addLayout(twoColumnLayout, 1);
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   328
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   329
    /* Set defaults */
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   330
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   331
    setRandomSeed();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   332
    setMazeSize(0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   333
    setTemplateFilter(0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   334
    staticMapChanged(m_staticMapModel->index(0, 0));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   335
    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
   336
    changeMapType(MapModel::GeneratedMap);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   337
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   338
13260
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   339
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
   340
{
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   341
    // 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
   342
    switch (m_mapInfo.type)
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   343
    {
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   344
        case MapModel::GeneratedMap:
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   345
        case MapModel::GeneratedMaze:
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   346
        case MapModel::GeneratedPerlin:
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   347
        case MapModel::HandDrawnMap:
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   348
        case MapModel::FortsMap:
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   349
            setImage(newImage);
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   350
            break;
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   351
        // 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
   352
        default:
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   353
            return;
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   354
    }
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   355
}
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   356
10161
c092f92aee23 Move preview rendering into HWMap
unc0rr
parents: 10159
diff changeset
   357
void HWMapContainer::setImage(const QPixmap &newImage)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   358
{
10161
c092f92aee23 Move preview rendering into HWMap
unc0rr
parents: 10159
diff changeset
   359
    addInfoToPreview(newImage);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   360
    pMap = 0;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   361
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   362
    cType->setEnabled(isMaster());
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   363
}
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   364
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   365
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
   366
{
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   367
    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
   368
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
   369
    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
   370
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
   371
    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
   372
}
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
   373
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
   374
1790
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   375
void HWMapContainer::setHHLimit(int newHHLimit)
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   376
{
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   377
    hhLimit = newHHLimit;
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   378
}
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   379
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   380
void HWMapContainer::addInfoToPreview(const QPixmap &image)
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   381
{
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   382
    addInfoToPreview(image, linearGradNormal, true);
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   383
}
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   384
1790
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   385
// Should this add text to identify map size?
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   386
void HWMapContainer::addInfoToPreview(const QPixmap &image, const QLinearGradient &linearGrad, bool drawHHLimit)
1790
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   387
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   388
    QPixmap finalImage = QPixmap(image.size());
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   389
    QPainter p(&finalImage);
2377
f3fab2b09e0c And in frontend
nemo
parents: 2021
diff changeset
   390
10161
c092f92aee23 Move preview rendering into HWMap
unc0rr
parents: 10159
diff changeset
   391
    p.fillRect(finalImage.rect(), linearGrad);
c092f92aee23 Move preview rendering into HWMap
unc0rr
parents: 10159
diff changeset
   392
    p.drawPixmap(finalImage.rect(), image);
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   393
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   394
    if (drawHHLimit)
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   395
    {
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   396
        p.setPen(QColor(0xff,0xcc,0x00));
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   397
        p.setBrush(QColor(0, 0, 0));
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   398
        p.setFont(QFont("MS Shell Dlg", 10));
1790
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   399
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   400
        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
   401
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   402
        QString text = (hhLimit > 0) ? QString::number(hhLimit) : "?";
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   403
        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
   404
        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
   405
    }
8467
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
   406
13228
d23742ccf92b Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents: 13212
diff changeset
   407
    // 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
   408
    // 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
   409
    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
   410
    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
   411
    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
   412
    mapPreview->setIcon(mapPreviewIcon);
10161
c092f92aee23 Move preview rendering into HWMap
unc0rr
parents: 10159
diff changeset
   413
    mapPreview->setIconSize(finalImage.size());
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   414
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   415
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   416
void HWMapContainer::askForGeneratedPreview()
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   417
{
8070
66bc20d089fc Okay, remove previous request only if it has same parent
unc0rr
parents: 8049
diff changeset
   418
    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
   419
    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
   420
    connect(pMap, SIGNAL(HHLimitReceived(int)), this, SLOT(setHHLimit(int)));
7008
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   421
    connect(pMap, SIGNAL(destroyed(QObject *)), this, SLOT(onPreviewMapDestroyed(QObject *)));
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   422
    pMap->getImage(m_seed,
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   423
                   getTemplateFilter(),
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   424
                   get_mapgen(),
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   425
                   getMazeSize(),
10150
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10108
diff changeset
   426
                   getDrawnMapData(),
10472
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10471
diff changeset
   427
                   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
   428
                   m_scriptparam,
10477
b219c5a2317f Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents: 10472
diff changeset
   429
		           m_mapFeatureSize
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   430
                  );
7017
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   431
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   432
    setHHLimit(0);
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   433
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   434
    QPixmap waitImage(m_previewSize);
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   435
    waitImage.fill(Qt::transparent);
7017
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   436
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   437
    QPainter p(&waitImage);
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   438
    const QPixmap waitIcon(":/res/iconTime.png");
7017
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   439
    int x = (waitImage.width() - waitIcon.width()) / 2;
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   440
    int y = (waitImage.height() - waitIcon.height()) / 2;
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   441
    p.drawPixmap(QPoint(x, y), waitIcon);
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   442
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   443
    setImage(waitImage, linearGradLoading, false);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   444
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   445
    cType->setEnabled(false);
1215
0c1c294c0f7e Themes list now works
unc0rr
parents: 1214
diff changeset
   446
}
0c1c294c0f7e Themes list now works
unc0rr
parents: 1214
diff changeset
   447
8467
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
   448
void HWMapContainer::previewClicked()
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
   449
{
9452
a669869ee44c This probably fixes bug #700. untested.
nemo
parents: 8941
diff changeset
   450
    if (isMaster()) // should only perform these if master, but disabling the button when not, causes an unattractive preview.
a669869ee44c This probably fixes bug #700. untested.
nemo
parents: 8941
diff changeset
   451
        switch (m_mapInfo.type)
a669869ee44c This probably fixes bug #700. untested.
nemo
parents: 8941
diff changeset
   452
        {
a669869ee44c This probably fixes bug #700. untested.
nemo
parents: 8941
diff changeset
   453
            case MapModel::HandDrawnMap:
a669869ee44c This probably fixes bug #700. untested.
nemo
parents: 8941
diff changeset
   454
                emit drawMapRequested();
a669869ee44c This probably fixes bug #700. untested.
nemo
parents: 8941
diff changeset
   455
                break;
a669869ee44c This probably fixes bug #700. untested.
nemo
parents: 8941
diff changeset
   456
            default:
a669869ee44c This probably fixes bug #700. untested.
nemo
parents: 8941
diff changeset
   457
                setRandomMap();
a669869ee44c This probably fixes bug #700. untested.
nemo
parents: 8941
diff changeset
   458
                break;
a669869ee44c This probably fixes bug #700. untested.
nemo
parents: 8941
diff changeset
   459
        }
8467
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
   460
}
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
   461
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   462
QString HWMapContainer::getCurrentSeed() const
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   463
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   464
    return m_seed;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   465
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   466
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   467
QString HWMapContainer::getCurrentMap() const
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   468
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   469
    switch (m_mapInfo.type)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   470
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   471
        case MapModel::StaticMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   472
        case MapModel::MissionMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   473
            return m_curMap;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   474
        default:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   475
            return QString();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   476
    }
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   477
}
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   478
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   479
QString HWMapContainer::getCurrentTheme() const
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   480
{
6940
211aca8c1f4f decouple current theme from map theme (fixes theme confusion bugs of last commit)
sheepluva
parents: 6939
diff changeset
   481
    return(m_theme);
3008
e57cafce4227 Frontend:
smxx
parents: 2948
diff changeset
   482
}
e57cafce4227 Frontend:
smxx
parents: 2948
diff changeset
   483
e57cafce4227 Frontend:
smxx
parents: 2948
diff changeset
   484
bool HWMapContainer::getCurrentIsMission() const
e57cafce4227 Frontend:
smxx
parents: 2948
diff changeset
   485
{
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   486
    return(m_mapInfo.type == MapModel::MissionMap);
1790
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   487
}
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   488
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   489
int HWMapContainer::getCurrentHHLimit() const
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   490
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   491
    return hhLimit;
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   492
}
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   493
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
   494
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
   495
{
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   496
    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
   497
}
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   498
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   499
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
   500
{
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   501
    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
   502
}
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   503
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   504
quint32 HWMapContainer::getTemplateFilter() const
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   505
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   506
    return generationStyles->currentRow();
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   507
}
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   508
10472
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10471
diff changeset
   509
quint32 HWMapContainer::getFeatureSize() const
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10471
diff changeset
   510
{
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10471
diff changeset
   511
    return m_mapFeatureSize;
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10471
diff changeset
   512
}
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10471
diff changeset
   513
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   514
void HWMapContainer::resizeEvent ( QResizeEvent * event )
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   515
{
4560
5d6c7f88db73 - Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents: 4557
diff changeset
   516
    Q_UNUSED(event);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   517
}
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   518
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
   519
void HWMapContainer::intSetSeed(const QString & seed)
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   520
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   521
    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
   522
}
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
   523
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
   524
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
   525
{
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
   526
    intSetSeed(seed);
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   527
    if ((m_mapInfo.type == MapModel::GeneratedMap)
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   528
            || (m_mapInfo.type == MapModel::GeneratedMaze)
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   529
            || (m_mapInfo.type == MapModel::GeneratedPerlin))
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   530
        updatePreview();
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   531
}
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   532
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
   533
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
   534
{
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10108
diff changeset
   535
    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
   536
    m_scriptparam = scriptparam;
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   537
    if ((m_mapInfo.type == MapModel::GeneratedMap)
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   538
            || (m_mapInfo.type == MapModel::GeneratedMaze)
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   539
            || (m_mapInfo.type == MapModel::GeneratedPerlin)
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   540
            || (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
   541
        updatePreview();
10150
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10108
diff changeset
   542
}
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10108
diff changeset
   543
4936
d65d438acd23 Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents: 4701
diff changeset
   544
void HWMapContainer::intSetMap(const QString & map)
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   545
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   546
    if (map == "+rnd+")
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   547
    {
10336
3edfa6b68407 Fix issue #791:
unc0rr
parents: 10175
diff changeset
   548
        //changeMapType(MapModel::GeneratedMap);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   549
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   550
    else if (map == "+maze+")
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   551
    {
10336
3edfa6b68407 Fix issue #791:
unc0rr
parents: 10175
diff changeset
   552
        //changeMapType(MapModel::GeneratedMaze);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   553
    }
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   554
    else if (map == "+perlin+")
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   555
    {
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   556
        //changeMapType(MapModel::GeneratedPerlin);
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   557
    }
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   558
    else if (map == "+drawn+")
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   559
    {
10336
3edfa6b68407 Fix issue #791:
unc0rr
parents: 10175
diff changeset
   560
        //changeMapType(MapModel::HandDrawnMap);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   561
    }
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
   562
    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
   563
    {
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
   564
        //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
   565
    }
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   566
    else if (m_staticMapModel->mapExists(map))
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   567
    {
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
   568
        m_missingMap = false;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   569
        changeMapType(MapModel::StaticMap, m_staticMapModel->index(m_staticMapModel->findMap(map), 0));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   570
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   571
    else if (m_missionMapModel->mapExists(map))
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   572
    {
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
   573
        m_missingMap = false;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   574
        changeMapType(MapModel::MissionMap, m_missionMapModel->index(m_missionMapModel->findMap(map), 0));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   575
    } else
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   576
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   577
        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
   578
        m_missingMap = true;
13260
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   579
        m_curMap = map;
13261
01ac67500f50 Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents: 13260
diff changeset
   580
        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
   581
        setMapNameLabel(map, false);
13260
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   582
        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
   583
            setupStaticMapsView(m_curMap);
13260
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   584
        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
   585
            setupMissionMapsView(m_curMap);
13260
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   586
        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
   587
        {
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
   588
            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
   589
            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
   590
            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
   591
        }
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
   592
        updatePreview();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   593
    }
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   594
}
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   595
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   596
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
   597
{
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
   598
    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
   599
        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
   600
}
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
   601
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   602
void HWMapContainer::setTheme(const QString & theme)
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   603
{
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
   604
    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
   605
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5252
diff changeset
   606
    if(mdl.size())
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   607
        updateTheme(mdl.at(0));
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   608
    else
13249
d2b58cf339fe Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13248
diff changeset
   609
        setMissingTheme(theme);
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   610
}
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   611
4337
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   612
void HWMapContainer::setRandomMap()
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   613
{
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
   614
    if (!m_master) return;
8924
13ac59499066 update 0.9.19 with dev branch
koda
parents: 8886
diff changeset
   615
4419
3d99c2c806ec fix for frontend desync
prg
parents: 4337
diff changeset
   616
    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
   617
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
   618
    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
   619
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   620
    switch(m_mapInfo.type)
4337
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   621
    {
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   622
        case MapModel::GeneratedMap:
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   623
        case MapModel::GeneratedMaze:
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   624
        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
   625
        case MapModel::FortsMap:
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   626
            setRandomTheme();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   627
            break;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   628
        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
   629
            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
   630
            {
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
   631
                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
   632
                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
   633
            }
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
   634
            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
   635
                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
   636
            break;
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   637
        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
   638
            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
   639
            {
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
                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
   641
                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
   642
            }
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
   643
            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
   644
                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
   645
            break;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   646
        default:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   647
            break;
4337
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   648
    }
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   649
}
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   650
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   651
void HWMapContainer::setRandomSeed()
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   652
{
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   653
    setSeed(QUuid::createUuid().toString());
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   654
    emit seedChanged(m_seed);
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   655
}
1318
18da1c5e960d - Shut the client's tries to configure server up
unc0rr
parents: 1248
diff changeset
   656
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
   657
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
   658
{
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
    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
   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
1318
18da1c5e960d - Shut the client's tries to configure server up
unc0rr
parents: 1248
diff changeset
   662
void HWMapContainer::setRandomTheme()
18da1c5e960d - Shut the client's tries to configure server up
unc0rr
parents: 1248
diff changeset
   663
{
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
   664
    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
   665
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
   666
    if (m_withoutDLC)
13248
b0022324fb4e Add IsHiddenRole to ThemeModel for hidden themes
Wuzzy <Wuzzy2@mail.ru>
parents: 13246
diff changeset
   667
        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
   668
    else
13248
b0022324fb4e Add IsHiddenRole to ThemeModel for hidden themes
Wuzzy <Wuzzy2@mail.ru>
parents: 13246
diff changeset
   669
        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
   670
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
   671
    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
   672
    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
   673
    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
   674
    emit themeChanged(m_theme);
1318
18da1c5e960d - Shut the client's tries to configure server up
unc0rr
parents: 1248
diff changeset
   675
}
1797
fedd8649fdd9 Templates filter by nemo
unc0rr
parents: 1790
diff changeset
   676
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   677
void HWMapContainer::intSetTemplateFilter(int filter)
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   678
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   679
    generationStyles->setCurrentRow(filter);
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   680
    emit newTemplateFilter(filter);
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   681
}
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   682
1797
fedd8649fdd9 Templates filter by nemo
unc0rr
parents: 1790
diff changeset
   683
void HWMapContainer::setTemplateFilter(int filter)
fedd8649fdd9 Templates filter by nemo
unc0rr
parents: 1790
diff changeset
   684
{
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   685
    intSetTemplateFilter(filter);
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   686
    if (m_mapInfo.type == MapModel::GeneratedMap)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   687
        updatePreview();
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   688
}
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   689
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   690
MapGenerator HWMapContainer::get_mapgen(void) const
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   691
{
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   692
    return mapgen;
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   693
}
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   694
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   695
int HWMapContainer::getMazeSize(void) const
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   696
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   697
    return mazeStyles->currentRow();
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   698
}
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   699
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   700
void HWMapContainer::intSetMazeSize(int size)
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   701
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   702
    mazeStyles->setCurrentRow(size);
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   703
    emit mazeSizeChanged(size);
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   704
}
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   705
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   706
void HWMapContainer::setMazeSize(int size)
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   707
{
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   708
    intSetMazeSize(size);
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   709
    if (m_mapInfo.type == MapModel::GeneratedMaze)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   710
        updatePreview();
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   711
}
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   712
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
   713
void HWMapContainer::intSetMapgen(MapGenerator m)
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   714
{
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   715
    if (mapgen != m)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   716
    {
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   717
        mapgen = m;
5793
401ab167bd9f This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents: 5789
diff changeset
   718
10463
987ac036c453 Fix map preview desync
unC0Rr
parents: 10394
diff changeset
   719
        bool f = false;
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   720
        switch (m)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   721
        {
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   722
            case MAPGEN_REGULAR:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   723
                m_mapInfo.type = MapModel::GeneratedMap;
10463
987ac036c453 Fix map preview desync
unC0Rr
parents: 10394
diff changeset
   724
                f = true;
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   725
                break;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   726
            case MAPGEN_MAZE:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   727
                m_mapInfo.type = MapModel::GeneratedMaze;
10463
987ac036c453 Fix map preview desync
unC0Rr
parents: 10394
diff changeset
   728
                f = true;
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   729
                break;
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   730
            case MAPGEN_PERLIN:
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   731
                m_mapInfo.type = MapModel::GeneratedPerlin;
10463
987ac036c453 Fix map preview desync
unC0Rr
parents: 10394
diff changeset
   732
                f = true;
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   733
                break;
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   734
            case MAPGEN_DRAWN:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   735
                m_mapInfo.type = MapModel::HandDrawnMap;
10463
987ac036c453 Fix map preview desync
unC0Rr
parents: 10394
diff changeset
   736
                f = true;
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   737
                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
   738
            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
   739
                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
   740
                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
   741
                break;
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   742
            case MAPGEN_MAP:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   743
                switch (m_mapInfo.type)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   744
                {
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   745
                    case MapModel::GeneratedMap:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   746
                    case MapModel::GeneratedMaze:
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   747
                    case MapModel::GeneratedPerlin:
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   748
                    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
   749
                    case MapModel::FortsMap:
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   750
                        m_mapInfo.type = MapModel::Invalid;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   751
                    default:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   752
                        break;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   753
                }
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   754
                break;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   755
        }
5793
401ab167bd9f This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents: 5789
diff changeset
   756
10463
987ac036c453 Fix map preview desync
unC0Rr
parents: 10394
diff changeset
   757
        if(f)
987ac036c453 Fix map preview desync
unC0Rr
parents: 10394
diff changeset
   758
            changeMapType(m_mapInfo.type, QModelIndex());
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   759
    }
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
   760
}
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
   761
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
   762
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
   763
{
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
   764
    intSetMapgen(m);
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   765
    if(m != MAPGEN_MAP)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   766
        updatePreview();
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   767
}
4489
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4487
diff changeset
   768
4537
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4534
diff changeset
   769
void HWMapContainer::setDrawnMapData(const QByteArray & ar)
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4534
diff changeset
   770
{
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4534
diff changeset
   771
    drawMapScene.decode(ar);
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   772
    updatePreview();
4537
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4534
diff changeset
   773
}
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4534
diff changeset
   774
4489
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4487
diff changeset
   775
QByteArray HWMapContainer::getDrawnMapData()
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4487
diff changeset
   776
{
4520
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   777
    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
   778
}
4519
aee36896d46b exposing seed for editing and viewing
Henek
parents: 4513
diff changeset
   779
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   780
void HWMapContainer::setNewSeed(const QString & newSeed)
4519
aee36896d46b exposing seed for editing and viewing
Henek
parents: 4513
diff changeset
   781
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   782
    setSeed(newSeed);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   783
    emit seedChanged(newSeed);
4519
aee36896d46b exposing seed for editing and viewing
Henek
parents: 4513
diff changeset
   784
}
4520
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   785
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   786
DrawMapScene * HWMapContainer::getDrawMapScene()
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   787
{
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   788
    return &drawMapScene;
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   789
}
4525
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4520
diff changeset
   790
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4520
diff changeset
   791
void HWMapContainer::mapDrawingFinished()
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4520
diff changeset
   792
{
4526
38afca1e4248 Debug messages
unc0rr
parents: 4525
diff changeset
   793
    emit drawnMapChanged(getDrawnMapData());
4525
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4520
diff changeset
   794
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   795
    updatePreview();
4550
d300ea498486 added set button to seed edit so maps won't regenerate as often
Henek
parents: 4537
diff changeset
   796
}
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   797
9739
c2c9dd2544b8 make lazy loading of map preview a little bit less of a hack
sheepluva
parents: 9735
diff changeset
   798
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
   799
{
13260
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   800
    if (!m_previewEnabled)
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   801
    {
9739
c2c9dd2544b8 make lazy loading of map preview a little bit less of a hack
sheepluva
parents: 9735
diff changeset
   802
        m_previewEnabled = true;
9745
258c320256dc Load themes lazily
unc0rr
parents: 9744
diff changeset
   803
        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
   804
        updatePreview();
9739
c2c9dd2544b8 make lazy loading of map preview a little bit less of a hack
sheepluva
parents: 9735
diff changeset
   805
    }
c2c9dd2544b8 make lazy loading of map preview a little bit less of a hack
sheepluva
parents: 9735
diff changeset
   806
    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
   807
}
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
   808
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   809
void HWMapContainer::updatePreview()
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   810
{
9739
c2c9dd2544b8 make lazy loading of map preview a little bit less of a hack
sheepluva
parents: 9735
diff changeset
   811
    // 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
   812
    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
   813
        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
   814
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   815
    if (pMap)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   816
    {
13260
2c0779260e8a Partially fix wrong preview when joining host room with missing map
Wuzzy <Wuzzy2@mail.ru>
parents: 13259
diff changeset
   817
        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
   818
        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
   819
        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
   820
        pMap = 0;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   821
    }
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   822
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
   823
    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
   824
    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
   825
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   826
    switch(m_mapInfo.type)
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   827
    {
7014
c0b32404ef74 + display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents: 7008
diff changeset
   828
        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
   829
            // 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
   830
            failPixmap = QPixmap(":/res/missingMap.png");
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   831
            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
   832
            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
   833
            break;
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   834
        case MapModel::GeneratedMap:
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   835
        case MapModel::GeneratedMaze:
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   836
        case MapModel::GeneratedPerlin:
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   837
        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
   838
        case MapModel::FortsMap:
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   839
            askForGeneratedPreview();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   840
            break;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   841
        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
   842
            // 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
   843
            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
   844
            {
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
   845
                // 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
   846
                failPixmap = QPixmap(":/res/missingMap.png");
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   847
                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
   848
                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
   849
                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
   850
            }
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
            else
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   852
            {
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
   853
                // 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
   854
                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
   855
                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
   856
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   857
                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
   858
                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
   859
                {
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
   860
                    // Missing preview image
13254
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   861
                    QPixmap empty = QPixmap(m_previewSize);
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   862
                    empty.fill(Qt::transparent);
1381ce67a781 Tweak map preview background colors
Wuzzy <Wuzzy2@mail.ru>
parents: 13253
diff changeset
   863
                    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
   864
                    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
   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
                setImage(mapImage);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   867
            }
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   868
    }
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   869
}
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
   870
10480
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
   871
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
   872
{
5793
401ab167bd9f This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents: 5789
diff changeset
   873
    intSetMapgen(m);
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   874
    intSetMazeSize(mazesize);
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   875
    intSetSeed(seed);
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   876
    intSetTemplateFilter(tmpl);
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   877
    // 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
   878
    intSetMap(map);
10480
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
   879
    intSetMazeSize(mazesize);
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
   880
    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
   881
}
6933
78d194a30520 mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents: 6700
diff changeset
   882
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   883
void HWMapContainer::updateModelViews()
6933
78d194a30520 mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents: 6700
diff changeset
   884
{
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
   885
    // 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
   886
    // 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
   887
    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
   888
    {
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
   889
        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
   890
        if (mdl.size() > 0)
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   891
            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
   892
        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
   893
            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
   894
    }
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
   895
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
   896
    // restore map selection
13259
e13777374583 Add some isNull checks for some strings in mapContainer
Wuzzy <Wuzzy2@mail.ru>
parents: 13258
diff changeset
   897
    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
   898
        intSetMap(m_curMap);
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   899
    else
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   900
        updatePreview();
6933
78d194a30520 mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents: 6700
diff changeset
   901
}
7008
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   902
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   903
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   904
void HWMapContainer::onPreviewMapDestroyed(QObject * map)
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   905
{
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   906
    if (map == pMap)
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   907
        pMap = 0;
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   908
}
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   909
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   910
void HWMapContainer::mapTypeChanged(int index)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   911
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   912
    changeMapType((MapModel::MapType)cType->itemData(index).toInt());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   913
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   914
11809
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   915
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
   916
{
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   917
    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
   918
    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
   919
    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
   920
    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
   921
    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
   922
    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
   923
    QString mfsFortsDistance = QString(tr("Adjust the distance between forts"));
14416
96624a6cdb93 Allow scaling hand drawn maps
nemo
parents: 13676
diff changeset
   924
    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
   925
    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
   926
    {
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   927
        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
   928
        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
   929
        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
   930
            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
   931
            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
   932
            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
   933
            break;
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   934
        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
   935
        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
   936
            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
   937
            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
   938
            break;
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   939
        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
   940
            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
   941
            btnRandomize->setWhatsThis(randomSeed);
14416
96624a6cdb93 Allow scaling hand drawn maps
nemo
parents: 13676
diff changeset
   942
            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
   943
            break;
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   944
        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
   945
            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
   946
            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
   947
            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
   948
            break;
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   949
        default:
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   950
            break;
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   951
    }
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   952
}
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   953
 
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
   954
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   955
void HWMapContainer::changeMapType(MapModel::MapType type, const QModelIndex & newMap)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   956
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   957
    staticMapList->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   958
    missionMapList->hide();
13251
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
   959
    teMapName->hide();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   960
    lblMapList->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   961
    generationStyles->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   962
    mazeStyles->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   963
    lblDesc->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   964
    btnLoadMap->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   965
    btnEditMap->hide();
10471
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
   966
    mapFeatureSize->show();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   967
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   968
    switch (type)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   969
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   970
        case MapModel::GeneratedMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   971
            mapgen = MAPGEN_REGULAR;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   972
            setMapInfo(MapModel::MapInfoRandom);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   973
            lblMapList->setText(tr("Map size:"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   974
            lblMapList->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   975
            generationStyles->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   976
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   977
        case MapModel::GeneratedMaze:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   978
            mapgen = MAPGEN_MAZE;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   979
            setMapInfo(MapModel::MapInfoMaze);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   980
            lblMapList->setText(tr("Maze style:"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   981
            lblMapList->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   982
            mazeStyles->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   983
            break;
10391
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   984
        case MapModel::GeneratedPerlin:
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   985
            mapgen = MAPGEN_PERLIN;
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   986
            setMapInfo(MapModel::MapInfoPerlin);
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   987
            lblMapList->setText(tr("Style:"));
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   988
            lblMapList->show();
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   989
            mazeStyles->show();
ce3ccc45d790 Add separate option for perlin gen
unc0rr
parents: 10336
diff changeset
   990
            break;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   991
        case MapModel::HandDrawnMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   992
            mapgen = MAPGEN_DRAWN;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   993
            setMapInfo(MapModel::MapInfoDrawn);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   994
            btnLoadMap->show();
14416
96624a6cdb93 Allow scaling hand drawn maps
nemo
parents: 13676
diff changeset
   995
            //mapFeatureSize->hide();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   996
            btnEditMap->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   997
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   998
        case MapModel::MissionMap:
9744
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
   999
            setupMissionMapsView();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1000
            mapgen = MAPGEN_MAP;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1001
            missionMapChanged(newMap.isValid() ? newMap : missionMapList->currentIndex());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1002
            lblMapList->setText(tr("Mission:"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1003
            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
  1004
            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
  1005
            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
  1006
            {
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
  1007
                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
  1008
            }
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
  1009
            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
  1010
            {
13251
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1011
                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
  1012
            }
10480
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
  1013
            mapFeatureSize->hide();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1014
            lblDesc->setText(m_mapInfo.desc);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1015
            lblDesc->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1016
            emit mapChanged(m_curMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1017
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1018
        case MapModel::StaticMap:
9744
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1019
            setupStaticMapsView();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1020
            mapgen = MAPGEN_MAP;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1021
            staticMapChanged(newMap.isValid() ? newMap : staticMapList->currentIndex());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1022
            lblMapList->setText(tr("Map:"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1023
            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
  1024
            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
  1025
            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
  1026
            {
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
                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
  1028
            }
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
            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
  1030
            {
13251
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1031
                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
  1032
            }
10480
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
  1033
            mapFeatureSize->hide();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1034
            emit mapChanged(m_curMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1035
            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
  1036
        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
  1037
            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
  1038
            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
  1039
            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
  1040
            break;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1041
        default:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1042
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1043
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1044
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1045
    // Update theme button size
10477
b219c5a2317f Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents: 10472
diff changeset
  1046
    updateThemeButtonSize();
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1047
11809
f412d539284e Add various “What's This?” texts to multiplayer, net and team editor frontend pages
Wuzzy <almikes@aol.com>
parents: 11785
diff changeset
  1048
    // 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
  1049
    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
  1050
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1051
    // Update cType combobox
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1052
    for (int i = 0; i < cType->count(); i++)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1053
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1054
        if ((MapModel::MapType)cType->itemData(i).toInt() == type)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1055
        {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1056
            cType->setCurrentIndex(i);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1057
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1058
        }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1059
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1060
8467
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
  1061
    repaint();
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
  1062
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1063
    emit mapgenChanged(mapgen);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1064
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1065
10480
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
  1066
void HWMapContainer::intSetFeatureSize(int val)
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
  1067
{
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
  1068
    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
  1069
    updateHelpTexts((MapModel::MapType)cType->itemData(cType->currentIndex()).toInt());
10480
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
  1070
    emit mapFeatureSizeChanged(val);
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
  1071
}
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
  1072
void HWMapContainer::setFeatureSize(int val)
10471
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
  1073
{
10477
b219c5a2317f Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents: 10472
diff changeset
  1074
    m_mapFeatureSize = val;
10480
43c6b9cfb569 Copypasta to hopefully hook up net sync correctly.
nemo
parents: 10477
diff changeset
  1075
    intSetFeatureSize(val);
10477
b219c5a2317f Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents: 10472
diff changeset
  1076
    //m_mapFeatureSize = val>>2<<2;
b219c5a2317f Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents: 10472
diff changeset
  1077
    //if (qAbs(m_prevMapFeatureSize-m_mapFeatureSize) > 4)
10472
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10471
diff changeset
  1078
    {
10477
b219c5a2317f Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents: 10472
diff changeset
  1079
        m_prevMapFeatureSize = m_mapFeatureSize;
14416
96624a6cdb93 Allow scaling hand drawn maps
nemo
parents: 13676
diff changeset
  1080
		if(m_mapInfo.type!= MapModel::HandDrawnMap)
96624a6cdb93 Allow scaling hand drawn maps
nemo
parents: 13676
diff changeset
  1081
			updatePreview();
10472
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10471
diff changeset
  1082
    }
10471
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
  1083
}
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
  1084
d968b1ac130c sheepluva and unc0rr didn't like the idea of slider over preview.
nemo
parents: 10465
diff changeset
  1085
// 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
  1086
void HWMapContainer::updateThemeButtonSize()
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1087
{
14416
96624a6cdb93 Allow scaling hand drawn maps
nemo
parents: 13676
diff changeset
  1088
    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
  1089
    {
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1090
        btnTheme->setIconSize(QSize(30, 30));
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1091
        btnTheme->setFixedHeight(30);
11785
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
  1092
        btnRandTheme->setFixedHeight(30);
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
  1093
        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
  1094
    }
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1095
    else
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1096
    {
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1097
        QSize iconSize = btnTheme->icon().actualSize(QSize(65535, 65535));
11785
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
  1098
        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
  1099
        btnTheme->setFixedHeight(64);
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1100
        btnTheme->setIconSize(iconSize);
11785
947e2d53afc1 add button to randomize theme only
sheepluva
parents: 11757
diff changeset
  1101
        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
  1102
    }
8430
5a5c34a75e1a Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents: 8424
diff changeset
  1103
5a5c34a75e1a Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents: 8424
diff changeset
  1104
    repaint();
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
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1107
void HWMapContainer::showThemePrompt()
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1108
{
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
  1109
    ThemePrompt prompt(m_themeID, this);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1110
    int theme = prompt.exec() - 1; // Since 0 means canceled, so all indexes are +1'd
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1111
    if (theme < 0) return;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1112
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1113
    QModelIndex current = m_themeModel->index(theme, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1114
    updateTheme(current);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1115
    emit themeChanged(m_theme);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1116
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1117
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1118
void HWMapContainer::updateTheme(const QModelIndex & current)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1119
{
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
  1120
    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
  1121
    m_themeID = current.row();
12897
fc47fc4af6bd Finish porting. Seems to work, but no thorough testing has been performed
unc0rr
parents: 11910
diff changeset
  1122
    QIcon icon = current.data(Qt::DecorationRole).value<QIcon>();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1123
    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
  1124
    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
  1125
    btnTheme->setText(themeLabel);
10477
b219c5a2317f Fiddling with slider, unbreak maze. Next to mess around w/ perlin params.
nemo
parents: 10472
diff changeset
  1126
    updateThemeButtonSize();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1127
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1128
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1129
void HWMapContainer::staticMapChanged(const QModelIndex & map, const QModelIndex & old)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1130
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1131
    mapChanged(map, 0, old);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1132
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1133
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1134
void HWMapContainer::missionMapChanged(const QModelIndex & map, const QModelIndex & old)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1135
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1136
    mapChanged(map, 1, old);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1137
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1138
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1139
// Type: 0 = static, 1 = mission
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1140
void HWMapContainer::mapChanged(const QModelIndex & map, int type, const QModelIndex & old)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1141
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1142
    QListView * mapList;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1143
13258
66dd7b5f7d33 Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents: 13256
diff changeset
  1144
    if (type == 0)
66dd7b5f7d33 Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents: 13256
diff changeset
  1145
    {
66dd7b5f7d33 Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents: 13256
diff changeset
  1146
        mapList = staticMapList;
66dd7b5f7d33 Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents: 13256
diff changeset
  1147
        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
  1148
    }
66dd7b5f7d33 Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents: 13256
diff changeset
  1149
    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
  1150
    {
66dd7b5f7d33 Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents: 13256
diff changeset
  1151
        mapList = missionMapList;
66dd7b5f7d33 Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents: 13256
diff changeset
  1152
        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
  1153
    }
66dd7b5f7d33 Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents: 13256
diff changeset
  1154
    else
66dd7b5f7d33 Fix incorrect preview when selecting image map the first time in session
Wuzzy <Wuzzy2@mail.ru>
parents: 13256
diff changeset
  1155
        return;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1156
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1157
    // Make sure it is a valid index
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1158
    if (!map.isValid())
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1159
    {
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
  1160
        // Make sure there's always a valid selection in the map list
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1161
        if (old.isValid())
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1162
        {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1163
            mapList->setCurrentIndex(old);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1164
            mapList->scrollTo(old);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1165
        }
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
  1166
        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
  1167
        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
  1168
        updatePreview();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1169
        return;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1170
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1171
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1172
    // If map changed, update list selection
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1173
    if (mapList->currentIndex() != map)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1174
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1175
        mapList->setCurrentIndex(map);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1176
        mapList->scrollTo(map);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1177
    }
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
  1178
    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
  1179
    {
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
  1180
        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
  1181
        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
  1182
    }
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1183
10463
987ac036c453 Fix map preview desync
unC0Rr
parents: 10394
diff changeset
  1184
    Q_ASSERT(map.data(Qt::UserRole + 1).canConvert<MapModel::MapInfo>()); // Houston, we have a problem.
987ac036c453 Fix map preview desync
unC0Rr
parents: 10394
diff changeset
  1185
    setMapInfo(map.data(Qt::UserRole + 1).value<MapModel::MapInfo>());
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1186
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1187
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1188
void HWMapContainer::setMapInfo(MapModel::MapInfo mapInfo)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1189
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1190
    m_mapInfo = mapInfo;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1191
    m_curMap = m_mapInfo.name;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1192
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1193
    // 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
  1194
    if (m_mapInfo.theme.isNull() || m_mapInfo.theme.isEmpty())
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1195
    {
13259
e13777374583 Add some isNull checks for some strings in mapContainer
Wuzzy <Wuzzy2@mail.ru>
parents: 13258
diff changeset
  1196
        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
  1197
        {
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1198
            setTheme(selectedTheme);
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1199
            emit themeChanged(selectedTheme);
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1200
        }
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1201
    }
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1202
    else
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1203
    {
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1204
        setTheme(m_mapInfo.theme);
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1205
        emit themeChanged(m_mapInfo.theme);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1206
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1207
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1208
    lblDesc->setText(mapInfo.desc);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1209
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1210
    updatePreview();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1211
    emit mapChanged(m_curMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1212
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1213
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1214
void HWMapContainer::loadDrawing()
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1215
{
13212
e9e4cc867b6e Add default directory DrawnMaps to put hand-drawn maps into
Wuzzy <Wuzzy2@mail.ru>
parents: 12897
diff changeset
  1216
    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
  1217
    QString fileName = QFileDialog::getOpenFileName(this, tr("Load drawn map"), loadDir, tr("Drawn Maps") + " (*.hwmap);;" + tr("All files") + " (*)");
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1218
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1219
    if(fileName.isEmpty()) return;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1220
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1221
    QFile f(fileName);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1222
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1223
    if(!f.open(QIODevice::ReadOnly))
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1224
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1225
        QMessageBox errorMsg(parentWidget());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1226
        errorMsg.setIcon(QMessageBox::Warning);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1227
        errorMsg.setWindowTitle(QMessageBox::tr("File error"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1228
        errorMsg.setText(QMessageBox::tr("Cannot open '%1' for reading").arg(fileName));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1229
        errorMsg.setWindowModality(Qt::WindowModal);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1230
        errorMsg.exec();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1231
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1232
    else
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1233
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1234
        drawMapScene.decode(qUncompress(QByteArray::fromBase64(f.readAll())));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1235
        mapDrawingFinished();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1236
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1237
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1238
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1239
void HWMapContainer::showSeedPrompt()
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1240
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1241
    SeedPrompt prompt(parentWidget()->parentWidget(), getCurrentSeed(), isMaster());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1242
    connect(&prompt, SIGNAL(seedSelected(const QString &)), this, SLOT(setNewSeed(const QString &)));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1243
    prompt.exec();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1244
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1245
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1246
bool HWMapContainer::isMaster()
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1247
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1248
    return m_master;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1249
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1250
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1251
void HWMapContainer::setMaster(bool master)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1252
{
8467
dc53b4b66fa0 Made map preview a random/edit button again.
dag10
parents: 8453
diff changeset
  1253
    if (master == m_master) return;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1254
    m_master = master;
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8430
diff changeset
  1255
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1256
    foreach (QWidget *widget, m_childWidgets)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1257
        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
  1258
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
  1259
    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
  1260
    {
13251
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1261
        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
  1262
        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
  1263
    }
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
  1264
    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
  1265
    {
13251
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1266
        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
  1267
        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
  1268
    }
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
  1269
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
  1270
    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
  1271
    {
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
  1272
        // 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
  1273
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
  1274
        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
  1275
        {
13266
df1db657bbb4 If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13265
diff changeset
  1276
            // 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
  1277
            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
  1278
            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
  1279
            {
df1db657bbb4 If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13265
diff changeset
  1280
                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
  1281
            }
df1db657bbb4 If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13265
diff changeset
  1282
            else
df1db657bbb4 If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13265
diff changeset
  1283
            {
df1db657bbb4 If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13265
diff changeset
  1284
                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
  1285
                {
df1db657bbb4 If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13265
diff changeset
  1286
                    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
  1287
                }
df1db657bbb4 If delegating room control, reset map of new master, if map is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13265
diff changeset
  1288
                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
  1289
            }
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
  1290
        }
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
  1291
        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
  1292
        {
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
  1293
            // 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
  1294
            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
  1295
            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
  1296
                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
  1297
        }
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
  1298
    }
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
  1299
    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
  1300
    {
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
  1301
        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
  1302
    }
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
  1303
}
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1304
13249
d2b58cf339fe Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13248
diff changeset
  1305
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
  1306
{
13259
e13777374583 Add some isNull checks for some strings in mapContainer
Wuzzy <Wuzzy2@mail.ru>
parents: 13258
diff changeset
  1307
    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
  1308
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
  1309
    m_theme = name;
13249
d2b58cf339fe Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13248
diff changeset
  1310
    QPixmap pixMissing = QPixmap(":/res/missingTheme@2x.png");
d2b58cf339fe Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13248
diff changeset
  1311
    QIcon iconMissing  = QIcon();
d2b58cf339fe Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13248
diff changeset
  1312
    iconMissing.addPixmap(pixMissing, QIcon::Normal);
d2b58cf339fe Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13248
diff changeset
  1313
    iconMissing.addPixmap(pixMissing, QIcon::Disabled);
d2b58cf339fe Show error icon when selected theme is missing
Wuzzy <Wuzzy2@mail.ru>
parents: 13248
diff changeset
  1314
    btnTheme->setIcon(iconMissing);
13255
7f8f2c77a9cc Map container: Add question mark in front of missing theme name
Wuzzy <Wuzzy2@mail.ru>
parents: 13254
diff changeset
  1315
    // 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
  1316
    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
  1317
    updateThemeButtonSize();
8401
87410ae372f6 Server messages localization using Qt's l10n subsystem:
unc0rr
parents: 8393
diff changeset
  1318
}
9744
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1319
13261
01ac67500f50 Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents: 13260
diff changeset
  1320
void HWMapContainer::setupMissionMapsView(const QString & initialMap)
9744
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1321
{
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1322
    if(m_missionsViewSetup) return;
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1323
    m_missionsViewSetup = true;
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1324
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1325
    m_missionMapModel->loadMaps();
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1326
    missionMapList->setModel(m_missionMapModel);
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1327
    missionMapList->setEditTriggers(QAbstractItemView::NoEditTriggers);
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1328
    QItemSelectionModel * missionSelectionModel = missionMapList->selectionModel();
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1329
    connect(missionSelectionModel,
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1330
            SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)),
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1331
            this,
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1332
            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
  1333
    int m = 0;
01ac67500f50 Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents: 13260
diff changeset
  1334
    if(!initialMap.isNull())
01ac67500f50 Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents: 13260
diff changeset
  1335
        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
  1336
    missionSelectionModel->setCurrentIndex(m_missionMapModel->index(m, 0), QItemSelectionModel::Clear | QItemSelectionModel::SelectCurrent);
9744
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1337
}
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1338
13261
01ac67500f50 Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents: 13260
diff changeset
  1339
void HWMapContainer::setupStaticMapsView(const QString & initialMap)
9744
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1340
{
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1341
    if(m_staticViewSetup) return;
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1342
    m_staticViewSetup = true;
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1343
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1344
    m_staticMapModel->loadMaps();
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1345
    staticMapList->setModel(m_staticMapModel);
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1346
    staticMapList->setEditTriggers(QAbstractItemView::NoEditTriggers);
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1347
    QItemSelectionModel * staticSelectionModel = staticMapList->selectionModel();
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1348
    connect(staticSelectionModel,
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1349
            SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)),
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1350
            this,
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1351
            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
  1352
    int m = 0;
01ac67500f50 Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents: 13260
diff changeset
  1353
    if(!initialMap.isNull())
01ac67500f50 Fix initial map preview being broken when joining room, part 2
Wuzzy <Wuzzy2@mail.ru>
parents: 13260
diff changeset
  1354
        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
  1355
    staticSelectionModel->setCurrentIndex(m_staticMapModel->index(m, 0), QItemSelectionModel::Clear | QItemSelectionModel::SelectCurrent);
9744
1ee4842a9c86 Be lazy in loading maps list
unc0rr
parents: 9739
diff changeset
  1356
}
13251
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1357
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1358
// 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
  1359
// 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
  1360
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
  1361
{
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1362
    // 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
  1363
    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
  1364
    {
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1365
        mapName.truncate(84);
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1366
        mapName.append(" (...)");
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1367
    }
edb2f654f8f6 Shorten and wrap map name properly when viewing room as non-master
Wuzzy <Wuzzy2@mail.ru>
parents: 13250
diff changeset
  1368
    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
  1369
    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
  1370
        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
  1371
    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
  1372
        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
  1373
}