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