QTfrontend/ui/widget/mapContainer.cpp
author dag10 <gottlieb.drew@gmail.com>
Wed, 16 Jan 2013 18:34:43 -0500
changeset 8393 85bd6c7b2641
parent 8377 869f80966a77
child 8401 87410ae372f6
permissions -rw-r--r--
Can now change theme for static and mission maps. Fixed mission map descriptions that had commas which broke them. Now, you must escape commas in map descriptions. Made bgwidget repaint on animation tick to avoid buffer-not-clearing issue with widgets that change overtop the background leaving a ghost image of the widget's previous state. Generated map is now the default map in the mapconfig widget.
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
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    17
 */
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    18
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    19
#include <QPushButton>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    20
#include <QBuffer>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    21
#include <QUuid>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    22
#include <QBitmap>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    23
#include <QPainter>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    24
#include <QLinearGradient>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    25
#include <QColor>
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
    26
#include <QTextStream>
1209
7f6cb1d7be2a Start remaking multiplayer page
unc0rr
parents: 1164
diff changeset
    27
#include <QLabel>
5289
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5252
diff changeset
    28
#include <QListView>
1209
7f6cb1d7be2a Start remaking multiplayer page
unc0rr
parents: 1164
diff changeset
    29
#include <QVBoxLayout>
1224
0b9fbee5ceda - Add icons for each theme
unc0rr
parents: 1215
diff changeset
    30
#include <QIcon>
4519
aee36896d46b exposing seed for editing and viewing
Henek
parents: 4513
diff changeset
    31
#include <QLineEdit>
5289
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5252
diff changeset
    32
#include <QStringListModel>
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    33
#include <QListWidget>
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    34
#include <QListWidgetItem>
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    35
#include <QDebug>
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    36
#include <QFile>
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    37
#include <QFileDialog>
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    38
#include <QInputDialog>
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    39
#include <QMessageBox>
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
    40
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
    41
#include "hwconsts.h"
788
00720357601f - Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents: 682
diff changeset
    42
#include "mapContainer.h"
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    43
#include "themeprompt.h"
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    44
#include "seedprompt.h"
1209
7f6cb1d7be2a Start remaking multiplayer page
unc0rr
parents: 1164
diff changeset
    45
#include "igbox.h"
5252
ded882439548 file association for mac!
koda
parents: 5238
diff changeset
    46
#include "HWApplication.h"
7258
722e8a0d89dc - Move colorsModel to appropriate place
unc0rr
parents: 7018
diff changeset
    47
#include "ThemeModel.h"
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    48
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    49
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    50
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    51
HWMapContainer::HWMapContainer(QWidget * parent) :
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    52
    QWidget(parent),
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    53
    mainLayout(this),
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
    54
    pMap(0),
7017
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
    55
    mapgen(MAPGEN_REGULAR),
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
    56
    m_previewSize(256, 128)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    57
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    58
    hhSmall.load(":/res/hh_small.png");
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    59
    hhLimit = 18;
1797
fedd8649fdd9 Templates filter by nemo
unc0rr
parents: 1790
diff changeset
    60
    templateFilter = 0;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    61
    m_master = true;
2377
f3fab2b09e0c And in frontend
nemo
parents: 2021
diff changeset
    62
7017
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
    63
    linearGrad = QLinearGradient(QPoint(128, 0), QPoint(128, 128));
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
    64
    linearGrad.setColorAt(1, QColor(0, 0, 192));
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
    65
    linearGrad.setColorAt(0, QColor(66, 115, 225));
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
    66
5252
ded882439548 file association for mac!
koda
parents: 5238
diff changeset
    67
    mainLayout.setContentsMargins(HWApplication::style()->pixelMetric(QStyle::PM_LayoutLeftMargin),
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
    68
                                  1,
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
    69
                                  HWApplication::style()->pixelMetric(QStyle::PM_LayoutRightMargin),
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
    70
                                  HWApplication::style()->pixelMetric(QStyle::PM_LayoutBottomMargin));
2377
f3fab2b09e0c And in frontend
nemo
parents: 2021
diff changeset
    71
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    72
    m_staticMapModel = DataManager::instance().staticMapModel();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    73
    m_missionMapModel = DataManager::instance().missionMapModel();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    74
    m_themeModel = DataManager::instance().themeModel();
4557
4004bef2aa9d fix layout in game config widget as per nemo's request
Henek
parents: 4550
diff changeset
    75
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    76
    /* Layouts */
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
    77
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    78
    QHBoxLayout * typeLayout = new QHBoxLayout();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    79
    QHBoxLayout * seedLayout = new QHBoxLayout();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    80
    QHBoxLayout * twoColumnLayout = new QHBoxLayout();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    81
    QVBoxLayout * leftLayout = new QVBoxLayout();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    82
    QVBoxLayout * rightLayout = new QVBoxLayout();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    83
    twoColumnLayout->addLayout(leftLayout, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    84
    twoColumnLayout->addStretch(1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    85
    twoColumnLayout->addLayout(rightLayout, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    86
    QVBoxLayout * drawnControls = new QVBoxLayout();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    87
    leftLayout->addLayout(typeLayout, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    88
    rightLayout->addLayout(seedLayout, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    89
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    90
    /* Map type combobox */
4487
dbf69c7c5e00 Add drawn map into the list of map generators
unc0rr
parents: 4419
diff changeset
    91
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    92
    typeLayout->setSpacing(10);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    93
    typeLayout->addWidget(new QLabel(tr("Map type:")), 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    94
    cType = new QComboBox(this);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    95
    typeLayout->addWidget(cType, 1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    96
    cType->insertItem(0, tr("Image map"), MapModel::StaticMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    97
    cType->insertItem(1, tr("Mission map"), MapModel::MissionMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    98
    cType->insertItem(2, tr("Hand-drawn"), MapModel::HandDrawnMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
    99
    cType->insertItem(3, tr("Randomly generated"), MapModel::GeneratedMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   100
    cType->insertItem(4, tr("Random maze"), MapModel::GeneratedMaze);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   101
    connect(cType, SIGNAL(currentIndexChanged(int)), this, SLOT(mapTypeChanged(int)));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   102
    m_childWidgets << cType;
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   103
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   104
    /* Randomize button */
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   105
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   106
    seedLayout->addStretch(1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   107
    const QIcon& lp = QIcon(":/res/dice.png");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   108
    QSize sz = lp.actualSize(QSize(65535, 65535));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   109
    btnRandomize = new QPushButton();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   110
    btnRandomize->setText(tr("Random"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   111
    btnRandomize->setIcon(lp);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   112
    btnRandomize->setFixedHeight(30);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   113
    btnRandomize->setIconSize(sz);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   114
    btnRandomize->setFlat(true);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   115
    btnRandomize->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   116
    connect(btnRandomize, SIGNAL(clicked()), this, SLOT(setRandomMap()));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   117
    m_childWidgets << btnRandomize;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   118
    btnRandomize->setStyleSheet("padding: 5px;");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   119
    btnRandomize->setFixedHeight(cType->height());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   120
    seedLayout->addWidget(btnRandomize, 1);
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   121
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   122
    /* Seed button */
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   123
    btnSeed = new QPushButton(parentWidget()->parentWidget());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   124
    btnSeed->setText(tr("Seed"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   125
    btnSeed->setStyleSheet("padding: 5px;");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   126
    btnSeed->setFixedHeight(cType->height());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   127
    connect(btnSeed, SIGNAL(clicked()), this, SLOT(showSeedPrompt()));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   128
    seedLayout->addWidget(btnSeed, 0);
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   129
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   130
    /* Map preview label */
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   131
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   132
    QLabel * lblMapPreviewText = new QLabel(this);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   133
    lblMapPreviewText->setText(tr("Map preview:"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   134
    leftLayout->addWidget(lblMapPreviewText, 0, Qt::AlignLeft);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   135
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   136
    /* Map Preview */
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   137
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   138
    mapPreview = new QLabel(this);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   139
    mapPreview->setObjectName("mapPreview");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   140
    mapPreview->setFixedSize(256, 128);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   141
    leftLayout->addWidget(mapPreview, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   142
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   143
    /* Bottom-Left layout */
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   144
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   145
    QVBoxLayout * bottomLeftLayout = new QVBoxLayout();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   146
    leftLayout->addLayout(bottomLeftLayout, 1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   147
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   148
    /* Map list label */
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   149
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   150
    lblMapList = new QLabel();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   151
    rightLayout->addWidget(lblMapList, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   152
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   153
    /* Static maps list */
1248
8c77eec56bf4 Better theme selection widget look
unc0rr
parents: 1228
diff changeset
   154
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   155
    staticMapList = new QListView;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   156
    staticMapList->setModel(m_staticMapModel);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   157
    rightLayout->addWidget(staticMapList, 1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   158
    staticMapList->setEditTriggers(QAbstractItemView::NoEditTriggers);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   159
    m_childWidgets << staticMapList;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   160
    QItemSelectionModel * staticSelectionModel = staticMapList->selectionModel();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   161
    connect(staticSelectionModel,
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   162
            SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)),
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   163
            this,
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   164
            SLOT(staticMapChanged(const QModelIndex &, const QModelIndex &)));
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
   165
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   166
    /* Mission maps list */
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   167
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   168
    missionMapList = new QListView;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   169
    missionMapList->setModel(m_missionMapModel);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   170
    missionMapList->setEditTriggers(QAbstractItemView::NoEditTriggers);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   171
    rightLayout->addWidget(missionMapList, 1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   172
    m_childWidgets << missionMapList;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   173
    QItemSelectionModel * missionSelectionModel = missionMapList->selectionModel();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   174
    connect(missionSelectionModel,
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   175
            SIGNAL(currentRowChanged(const QModelIndex &, const QModelIndex &)),
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   176
            this,
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   177
            SLOT(missionMapChanged(const QModelIndex &, const QModelIndex &)));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   178
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   179
    /* Map load and edit buttons */
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   180
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   181
    drawnControls->addStretch(1);
2377
f3fab2b09e0c And in frontend
nemo
parents: 2021
diff changeset
   182
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   183
    btnLoadMap = new QPushButton(tr("Load map drawing"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   184
    btnLoadMap->setStyleSheet("padding: 20px;");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   185
    drawnControls->addWidget(btnLoadMap, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   186
    m_childWidgets << btnLoadMap;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   187
    connect(btnLoadMap, SIGNAL(clicked()), this, SLOT(loadDrawing()));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   188
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   189
    btnEditMap = new QPushButton(tr("Edit map drawing"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   190
    btnEditMap->setStyleSheet("padding: 20px;");
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   191
    drawnControls->addWidget(btnEditMap, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   192
    m_childWidgets << btnEditMap;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   193
    connect(btnEditMap, SIGNAL(clicked()), this, SIGNAL(drawMapRequested()));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   194
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   195
    drawnControls->addStretch(1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   196
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   197
    rightLayout->addLayout(drawnControls);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   198
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   199
    /* Generator style list */
2377
f3fab2b09e0c And in frontend
nemo
parents: 2021
diff changeset
   200
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   201
    generationStyles = new QListWidget();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   202
    new QListWidgetItem(tr("All"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   203
    new QListWidgetItem(tr("Small"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   204
    new QListWidgetItem(tr("Medium"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   205
    new QListWidgetItem(tr("Large"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   206
    new QListWidgetItem(tr("Cavern"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   207
    new QListWidgetItem(tr("Wacky"), generationStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   208
    connect(generationStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setTemplateFilter(int)));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   209
    m_childWidgets << generationStyles;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   210
    rightLayout->addWidget(generationStyles, 1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   211
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   212
    /* Maze style list */
4557
4004bef2aa9d fix layout in game config widget as per nemo's request
Henek
parents: 4550
diff changeset
   213
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   214
    mazeStyles = new QListWidget();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   215
    new QListWidgetItem(tr("Small tunnels"), mazeStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   216
    new QListWidgetItem(tr("Medium tunnels"), mazeStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   217
    new QListWidgetItem(tr("Largetunnels"), mazeStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   218
    new QListWidgetItem(tr("Small islands"), mazeStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   219
    new QListWidgetItem(tr("Medium islands"), mazeStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   220
    new QListWidgetItem(tr("Large islands"), mazeStyles);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   221
    connect(mazeStyles, SIGNAL(currentRowChanged(int)), this, SLOT(setMazeSize(int)));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   222
    m_childWidgets << mazeStyles;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   223
    rightLayout->addWidget(mazeStyles, 1);
4557
4004bef2aa9d fix layout in game config widget as per nemo's request
Henek
parents: 4550
diff changeset
   224
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   225
    /* Mission description */
4557
4004bef2aa9d fix layout in game config widget as per nemo's request
Henek
parents: 4550
diff changeset
   226
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   227
    lblDesc = new QLabel();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   228
    lblDesc->setWordWrap(true);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   229
    lblDesc->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   230
    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
   231
    lblDesc->setStyleSheet("font: 10px;");
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   232
    bottomLeftLayout->addWidget(lblDesc, 1);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   233
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   234
    /* Add stretch above theme button */
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   235
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   236
    bottomLeftLayout->addStretch(1);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   237
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   238
    /* Theme chooser */
1215
0c1c294c0f7e Themes list now works
unc0rr
parents: 1214
diff changeset
   239
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   240
    btnTheme = new QPushButton();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   241
    connect(btnTheme, SIGNAL(clicked()), this, SLOT(showThemePrompt()));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   242
    m_childWidgets << btnTheme;
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   243
    bottomLeftLayout->addWidget(btnTheme, 0);
4699
47d8a524780a hide seed...
koda
parents: 4566
diff changeset
   244
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   245
    /* Add everything to main layout */
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   246
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   247
    mainLayout.addLayout(twoColumnLayout, 0);
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   248
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   249
    /* Set defaults */
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   250
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   251
    setRandomTheme();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   252
    setRandomSeed();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   253
    setMazeSize(0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   254
    setTemplateFilter(0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   255
    staticMapChanged(m_staticMapModel->index(0, 0));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   256
    missionMapChanged(m_missionMapModel->index(0, 0));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   257
    updateTheme(m_themeModel->index(0, 0));
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   258
    changeMapType(MapModel::GeneratedMap);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   259
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   260
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   261
void HWMapContainer::setImage(const QImage newImage)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   262
{
7017
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   263
    QPixmap px(m_previewSize);
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   264
    QPixmap pxres(px.size());
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   265
    QPainter p(&pxres);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   266
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   267
    px.fill(Qt::yellow);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   268
    QBitmap bm = QBitmap::fromImage(newImage);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   269
    px.setMask(bm);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   270
7017
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   271
    p.fillRect(pxres.rect(), linearGrad);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   272
    p.drawPixmap(QPoint(0, 0), px);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   273
1790
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   274
    addInfoToPreview(pxres);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   275
    pMap = 0;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   276
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   277
    cType->setEnabled(isMaster());
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   278
}
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   279
1790
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   280
void HWMapContainer::setHHLimit(int newHHLimit)
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   281
{
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   282
    hhLimit = newHHLimit;
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   283
}
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
// Should this add text to identify map size?
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   286
void HWMapContainer::addInfoToPreview(QPixmap image)
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   287
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   288
    QPixmap finalImage = QPixmap(image.size());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   289
    finalImage.fill(QColor(0, 0, 0, 0));
2377
f3fab2b09e0c And in frontend
nemo
parents: 2021
diff changeset
   290
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   291
    QPainter p(&finalImage);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   292
    p.drawPixmap(image.rect(), image);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   293
    //p.setPen(QColor(0xf4,0x9e,0xe9));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   294
    p.setPen(QColor(0xff,0xcc,0x00));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   295
    p.setBrush(QColor(0, 0, 0));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   296
    p.drawRect(image.rect().width() - hhSmall.rect().width() - 28, 3, 40, 20);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   297
    p.setFont(QFont("MS Shell Dlg", 10));
7017
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   298
    QString text = (hhLimit > 0) ? QString::number(hhLimit) : "?";
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   299
    p.drawText(image.rect().width() - hhSmall.rect().width() - 14 - (hhLimit > 9 ? 10 : 0), 18, text);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   300
    p.drawPixmap(image.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
   301
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   302
    mapPreview->setPixmap(finalImage);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   303
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   304
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   305
void HWMapContainer::askForGeneratedPreview()
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   306
{
8070
66bc20d089fc Okay, remove previous request only if it has same parent
unc0rr
parents: 8049
diff changeset
   307
    pMap = new HWMap(this);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   308
    connect(pMap, SIGNAL(ImageReceived(const QImage)), this, SLOT(setImage(const QImage)));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   309
    connect(pMap, SIGNAL(HHLimitReceived(int)), this, SLOT(setHHLimit(int)));
7008
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   310
    connect(pMap, SIGNAL(destroyed(QObject *)), this, SLOT(onPreviewMapDestroyed(QObject *)));
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   311
    pMap->getImage(m_seed,
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   312
                   getTemplateFilter(),
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   313
                   get_mapgen(),
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   314
                   getMazeSize(),
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   315
                   getDrawnMapData()
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   316
                  );
7017
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   317
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   318
    setHHLimit(0);
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   319
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   320
    const QPixmap waitIcon(":/res/iconTime.png");
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   321
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   322
    QPixmap waitImage(m_previewSize);
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   323
    QPainter p(&waitImage);
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   324
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   325
    p.fillRect(waitImage.rect(), linearGrad);
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   326
    int x = (waitImage.width() - waitIcon.width()) / 2;
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   327
    int y = (waitImage.height() - waitIcon.height()) / 2;
19a434fc91fc visually indicate when map preview generation is in progress.
sheepluva
parents: 7014
diff changeset
   328
    p.drawPixmap(QPoint(x, y), waitIcon);
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
    addInfoToPreview(waitImage);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   331
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   332
    cType->setEnabled(false);
1215
0c1c294c0f7e Themes list now works
unc0rr
parents: 1214
diff changeset
   333
}
0c1c294c0f7e Themes list now works
unc0rr
parents: 1214
diff changeset
   334
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   335
QString HWMapContainer::getCurrentSeed() const
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   336
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   337
    return m_seed;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   338
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   339
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   340
QString HWMapContainer::getCurrentMap() const
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   341
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   342
    switch (m_mapInfo.type)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   343
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   344
        case MapModel::StaticMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   345
        case MapModel::MissionMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   346
            return m_curMap;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   347
        default:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   348
            return QString();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   349
    }
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   350
}
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   351
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   352
QString HWMapContainer::getCurrentTheme() const
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   353
{
6940
211aca8c1f4f decouple current theme from map theme (fixes theme confusion bugs of last commit)
sheepluva
parents: 6939
diff changeset
   354
    return(m_theme);
3008
e57cafce4227 Frontend:
smxx
parents: 2948
diff changeset
   355
}
e57cafce4227 Frontend:
smxx
parents: 2948
diff changeset
   356
e57cafce4227 Frontend:
smxx
parents: 2948
diff changeset
   357
bool HWMapContainer::getCurrentIsMission() const
e57cafce4227 Frontend:
smxx
parents: 2948
diff changeset
   358
{
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   359
    return(m_mapInfo.type == MapModel::MissionMap);
1790
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   360
}
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   361
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   362
int HWMapContainer::getCurrentHHLimit() const
c84223511ca8 frontend's part of nemo patch
unc0rr
parents: 1366
diff changeset
   363
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   364
    return hhLimit;
249
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   365
}
ff85fa029541 map choose from files added
displacer
parents: 216
diff changeset
   366
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
   367
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
   368
{
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   369
    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
   370
}
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   371
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   372
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
   373
{
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   374
    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
   375
}
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   376
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   377
quint32 HWMapContainer::getTemplateFilter() const
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   378
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   379
    return generationStyles->currentRow();
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   380
}
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   381
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   382
void HWMapContainer::resizeEvent ( QResizeEvent * event )
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   383
{
4560
5d6c7f88db73 - Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents: 4557
diff changeset
   384
    Q_UNUSED(event);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   385
}
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   386
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
   387
void HWMapContainer::intSetSeed(const QString & seed)
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   388
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   389
    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
   390
}
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
   391
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
   392
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
   393
{
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
   394
    intSetSeed(seed);
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   395
    if ((m_mapInfo.type == MapModel::GeneratedMap) || (m_mapInfo.type == MapModel::GeneratedMaze))
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   396
        updatePreview();
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   397
}
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   398
4936
d65d438acd23 Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents: 4701
diff changeset
   399
void HWMapContainer::intSetMap(const QString & map)
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   400
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   401
    if (map == "+rnd+")
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   402
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   403
        changeMapType(MapModel::GeneratedMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   404
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   405
    else if (map == "+maze+")
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   406
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   407
        changeMapType(MapModel::GeneratedMaze);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   408
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   409
    else if (map == "+drawn+")
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   410
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   411
        changeMapType(MapModel::HandDrawnMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   412
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   413
    else if (m_staticMapModel->mapExists(map))
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   414
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   415
        changeMapType(MapModel::StaticMap, m_staticMapModel->index(m_staticMapModel->findMap(map), 0));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   416
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   417
    else if (m_missionMapModel->mapExists(map))
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   418
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   419
        changeMapType(MapModel::MissionMap, m_missionMapModel->index(m_missionMapModel->findMap(map), 0));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   420
    } else
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   421
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   422
        qDebug() << "HWMapContainer::intSetMap: Map doesn't exist: " << map;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   423
    }
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   424
}
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   425
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   426
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
   427
{
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   428
    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
   429
        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
   430
}
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
   431
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   432
void HWMapContainer::setTheme(const QString & theme)
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   433
{
6937
7f77fa908a4e messing with the theme model a bit (gets now auto-updated after DLC download too)
sheepluva
parents: 6933
diff changeset
   434
    QModelIndexList mdl = m_themeModel->match(m_themeModel->index(0), Qt::DisplayRole, 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
   435
9d18b61bd3eb - Implement ThemesModel (load theme icons once, store in memory, don't reload from disk every time selection changes)
unc0rr
parents: 5252
diff changeset
   436
    if(mdl.size())
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   437
        updateTheme(mdl.at(0));
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   438
    else
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   439
        intSetIconlessTheme(theme);
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   440
}
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   441
4337
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   442
void HWMapContainer::setRandomMap()
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   443
{
4419
3d99c2c806ec fix for frontend desync
prg
parents: 4337
diff changeset
   444
    setRandomSeed();
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   445
    switch(m_mapInfo.type)
4337
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   446
    {
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   447
        case MapModel::GeneratedMap:
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   448
        case MapModel::GeneratedMaze:
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   449
            setRandomTheme();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   450
            break;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   451
        case MapModel::MissionMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   452
            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
   453
            break;
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   454
        case MapModel::StaticMap:
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   455
            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
   456
            break;
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   457
        default:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   458
            break;
4337
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   459
    }
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   460
}
85e02b1a8e8f merge 0.9.14.1 to trunk
nemo
parents: 4322
diff changeset
   461
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   462
void HWMapContainer::setRandomSeed()
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   463
{
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   464
    setSeed(QUuid::createUuid().toString());
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
   465
    emit seedChanged(m_seed);
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 314
diff changeset
   466
}
1318
18da1c5e960d - Shut the client's tries to configure server up
unc0rr
parents: 1248
diff changeset
   467
18da1c5e960d - Shut the client's tries to configure server up
unc0rr
parents: 1248
diff changeset
   468
void HWMapContainer::setRandomTheme()
18da1c5e960d - Shut the client's tries to configure server up
unc0rr
parents: 1248
diff changeset
   469
{
6937
7f77fa908a4e messing with the theme model a bit (gets now auto-updated after DLC download too)
sheepluva
parents: 6933
diff changeset
   470
    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
   471
    quint32 themeNum = rand() % m_themeModel->rowCount();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   472
    updateTheme(m_themeModel->index(themeNum));
1318
18da1c5e960d - Shut the client's tries to configure server up
unc0rr
parents: 1248
diff changeset
   473
}
1797
fedd8649fdd9 Templates filter by nemo
unc0rr
parents: 1790
diff changeset
   474
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   475
void HWMapContainer::intSetTemplateFilter(int filter)
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   476
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   477
    generationStyles->setCurrentRow(filter);
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   478
    emit newTemplateFilter(filter);
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   479
}
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   480
1797
fedd8649fdd9 Templates filter by nemo
unc0rr
parents: 1790
diff changeset
   481
void HWMapContainer::setTemplateFilter(int filter)
fedd8649fdd9 Templates filter by nemo
unc0rr
parents: 1790
diff changeset
   482
{
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   483
    intSetTemplateFilter(filter);
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   484
    if (m_mapInfo.type == MapModel::GeneratedMap)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   485
        updatePreview();
1802
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   486
}
dd148e2506e2 Move template filter to map widget (by nemo)
unc0rr
parents: 1797
diff changeset
   487
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   488
MapGenerator HWMapContainer::get_mapgen(void) const
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   489
{
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   490
    return mapgen;
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   491
}
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   492
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   493
int HWMapContainer::getMazeSize(void) const
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   494
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   495
    return mazeStyles->currentRow();
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   496
}
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   497
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   498
void HWMapContainer::intSetMazeSize(int size)
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   499
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   500
    mazeStyles->setCurrentRow(size);
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   501
    emit mazeSizeChanged(size);
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   502
}
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   503
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   504
void HWMapContainer::setMazeSize(int size)
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   505
{
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   506
    intSetMazeSize(size);
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   507
    if (m_mapInfo.type == MapModel::GeneratedMaze)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   508
        updatePreview();
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   509
}
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   510
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
   511
void HWMapContainer::intSetMapgen(MapGenerator m)
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   512
{
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   513
    if (mapgen != m)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   514
    {
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   515
        mapgen = m;
5793
401ab167bd9f This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents: 5789
diff changeset
   516
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   517
        switch (m)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   518
        {
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   519
            case MAPGEN_REGULAR:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   520
                m_mapInfo.type = MapModel::GeneratedMap;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   521
                break;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   522
            case MAPGEN_MAZE:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   523
                m_mapInfo.type = MapModel::GeneratedMaze;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   524
                break;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   525
            case MAPGEN_DRAWN:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   526
                m_mapInfo.type = MapModel::HandDrawnMap;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   527
                break;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   528
            case MAPGEN_MAP:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   529
                switch (m_mapInfo.type)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   530
                {
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   531
                    case MapModel::GeneratedMap:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   532
                    case MapModel::GeneratedMaze:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   533
                    case MapModel::HandDrawnMap:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   534
                        m_mapInfo.type = MapModel::Invalid;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   535
                    default:
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   536
                        break;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   537
                }
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   538
                break;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   539
        }
5793
401ab167bd9f This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents: 5789
diff changeset
   540
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   541
        emit mapgenChanged(m);
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   542
    }
4936
d65d438acd23 Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents: 4701
diff changeset
   543
}
d65d438acd23 Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents: 4701
diff changeset
   544
d65d438acd23 Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents: 4701
diff changeset
   545
void HWMapContainer::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
   546
{
d65d438acd23 Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents: 4701
diff changeset
   547
    intSetMapgen(m);
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   548
    if(m != MAPGEN_MAP)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   549
        updatePreview();
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3009
diff changeset
   550
}
4489
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4487
diff changeset
   551
4537
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4534
diff changeset
   552
void HWMapContainer::setDrawnMapData(const QByteArray & ar)
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4534
diff changeset
   553
{
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4534
diff changeset
   554
    drawMapScene.decode(ar);
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   555
    updatePreview();
4537
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4534
diff changeset
   556
}
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4534
diff changeset
   557
4489
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4487
diff changeset
   558
QByteArray HWMapContainer::getDrawnMapData()
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4487
diff changeset
   559
{
4520
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   560
    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
   561
}
4519
aee36896d46b exposing seed for editing and viewing
Henek
parents: 4513
diff changeset
   562
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   563
void HWMapContainer::setNewSeed(const QString & newSeed)
4519
aee36896d46b exposing seed for editing and viewing
Henek
parents: 4513
diff changeset
   564
{
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   565
    setSeed(newSeed);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   566
    emit seedChanged(newSeed);
4519
aee36896d46b exposing seed for editing and viewing
Henek
parents: 4513
diff changeset
   567
}
4520
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   568
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   569
DrawMapScene * HWMapContainer::getDrawMapScene()
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   570
{
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   571
    return &drawMapScene;
e7882bd1a894 Allow to draw maps in frontend and play them (only locally, some bugs to fix)
unc0rr
parents: 4519
diff changeset
   572
}
4525
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4520
diff changeset
   573
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4520
diff changeset
   574
void HWMapContainer::mapDrawingFinished()
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4520
diff changeset
   575
{
4526
38afca1e4248 Debug messages
unc0rr
parents: 4525
diff changeset
   576
    emit drawnMapChanged(getDrawnMapData());
4525
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4520
diff changeset
   577
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   578
    updatePreview();
4550
d300ea498486 added set button to seed edit so maps won't regenerate as often
Henek
parents: 4537
diff changeset
   579
}
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   580
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   581
void HWMapContainer::updatePreview()
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   582
{
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   583
    if (pMap)
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   584
    {
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   585
        disconnect(pMap, 0, this, SLOT(setImage(const QImage)));
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   586
        disconnect(pMap, 0, this, SLOT(setHHLimit(int)));
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   587
        pMap = 0;
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   588
    }
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   589
7014
c0b32404ef74 + display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents: 7008
diff changeset
   590
    QPixmap failIcon;
c0b32404ef74 + display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents: 7008
diff changeset
   591
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   592
    switch(m_mapInfo.type)
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   593
    {
7014
c0b32404ef74 + display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents: 7008
diff changeset
   594
        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
   595
            failIcon = QPixmap(":/res/btnDisabled.png");
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   596
            mapPreview->setPixmap(failIcon);
7014
c0b32404ef74 + display lack of map in a nice way, don't generate bogus preview in the background
sheepluva
parents: 7008
diff changeset
   597
            break;
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   598
        case MapModel::GeneratedMap:
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   599
            askForGeneratedPreview();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   600
            break;
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   601
        case MapModel::GeneratedMaze:
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   602
            askForGeneratedPreview();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   603
            break;
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   604
        case MapModel::HandDrawnMap:
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   605
            askForGeneratedPreview();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   606
            break;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   607
        default:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   608
            QPixmap mapImage;
8049
133e22b5c410 Get rid of DataManager::findFileForRead
unc0rr
parents: 7794
diff changeset
   609
            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
   610
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
   611
            if(!success)
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   612
            {
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   613
                mapPreview->setPixmap(QPixmap());
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   614
                return;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   615
            }
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   616
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   617
            hhLimit = m_mapInfo.limit;
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6157
diff changeset
   618
            addInfoToPreview(mapImage);
4562
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   619
    }
b55f78fd2bf6 - Simplify map container code a bit
unc0rr
parents: 4561
diff changeset
   620
}
4936
d65d438acd23 Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents: 4701
diff changeset
   621
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   622
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
   623
{
5793
401ab167bd9f This should be a real fix (7643cbb88f09 reverted). Not tested.
unc0rr
parents: 5789
diff changeset
   624
    intSetMapgen(m);
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   625
    intSetMazeSize(mazesize);
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   626
    intSetSeed(seed);
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   627
    intSetTemplateFilter(tmpl);
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   628
    // 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
   629
    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
   630
}
6933
78d194a30520 mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents: 6700
diff changeset
   631
78d194a30520 mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents: 6700
diff changeset
   632
6938
217ed62e872c MapModel, various cleanups. TODO/FIXME: QComboBox separator not working with custom models
sheepluva
parents: 6937
diff changeset
   633
void HWMapContainer::updateModelViews()
6933
78d194a30520 mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents: 6700
diff changeset
   634
{
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
   635
    // 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
   636
    // 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
   637
    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
   638
    {
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
   639
        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
   640
        if (mdl.size() > 0)
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   641
            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
   642
        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
   643
            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
   644
    }
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
   645
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
   646
    // restore map selection
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   647
    if (!m_curMap.isEmpty())
7018
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   648
        intSetMap(m_curMap);
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   649
    else
6a1f46c026bf some tweaks/fixes/etc to the map preview and reload stuff
sheepluva
parents: 7017
diff changeset
   650
        updatePreview();
6933
78d194a30520 mapContainer: use DataManager, reload maps after data update (e.g. by DLC)
sheepluva
parents: 6700
diff changeset
   651
}
7008
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   652
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   653
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   654
void HWMapContainer::onPreviewMapDestroyed(QObject * map)
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   655
{
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   656
    if (map == pMap)
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   657
        pMap = 0;
25563f054ef3 fix a previewmap-related QObject::disconnect segfault
sheepluva
parents: 6983
diff changeset
   658
}
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   659
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   660
void HWMapContainer::mapTypeChanged(int index)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   661
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   662
    changeMapType((MapModel::MapType)cType->itemData(index).toInt());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   663
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   664
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   665
void HWMapContainer::changeMapType(MapModel::MapType type, const QModelIndex & newMap)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   666
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   667
    staticMapList->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   668
    missionMapList->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   669
    lblMapList->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   670
    generationStyles->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   671
    mazeStyles->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   672
    lblDesc->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   673
    btnLoadMap->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   674
    btnEditMap->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   675
    btnRandomize->hide();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   676
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   677
    switch (type)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   678
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   679
        case MapModel::GeneratedMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   680
            mapgen = MAPGEN_REGULAR;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   681
            setMapInfo(MapModel::MapInfoRandom);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   682
            lblMapList->setText(tr("Map size:"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   683
            lblMapList->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   684
            generationStyles->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   685
            btnRandomize->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   686
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   687
        case MapModel::GeneratedMaze:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   688
            mapgen = MAPGEN_MAZE;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   689
            setMapInfo(MapModel::MapInfoMaze);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   690
            lblMapList->setText(tr("Maze style:"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   691
            lblMapList->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   692
            mazeStyles->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   693
            btnRandomize->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   694
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   695
        case MapModel::HandDrawnMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   696
            mapgen = MAPGEN_DRAWN;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   697
            setMapInfo(MapModel::MapInfoDrawn);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   698
            btnLoadMap->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   699
            btnEditMap->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   700
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   701
        case MapModel::MissionMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   702
            mapgen = MAPGEN_MAP;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   703
            missionMapChanged(newMap.isValid() ? newMap : missionMapList->currentIndex());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   704
            lblMapList->setText(tr("Mission:"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   705
            lblMapList->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   706
            missionMapList->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   707
            lblDesc->setText(m_mapInfo.desc);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   708
            lblDesc->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   709
            btnRandomize->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   710
            emit mapChanged(m_curMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   711
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   712
        case MapModel::StaticMap:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   713
            mapgen = MAPGEN_MAP;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   714
            staticMapChanged(newMap.isValid() ? newMap : staticMapList->currentIndex());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   715
            lblMapList->setText(tr("Map:"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   716
            lblMapList->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   717
            staticMapList->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   718
            btnRandomize->show();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   719
            emit mapChanged(m_curMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   720
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   721
        default:
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   722
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   723
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   724
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   725
    // Update theme button size
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   726
    updateThemeButtonSize();
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   727
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   728
    // Update cType combobox
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   729
    for (int i = 0; i < cType->count(); i++)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   730
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   731
        if ((MapModel::MapType)cType->itemData(i).toInt() == type)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   732
        {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   733
            cType->setCurrentIndex(i);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   734
            break;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   735
        }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   736
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   737
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   738
    emit mapgenChanged(mapgen);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   739
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   740
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   741
void HWMapContainer::updateThemeButtonSize()
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   742
{
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   743
    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
   744
    {
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   745
        btnTheme->setIconSize(QSize(30, 30));
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   746
        btnTheme->setFixedHeight(30);
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   747
    }
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   748
    else
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   749
    {
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   750
        QSize iconSize = btnTheme->icon().actualSize(QSize(65535, 65535));
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   751
        btnTheme->setIconSize(iconSize);
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   752
        btnTheme->setFixedHeight(64);
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   753
    }
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   754
}
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   755
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   756
void HWMapContainer::showThemePrompt()
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   757
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   758
    ThemePrompt prompt(this);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   759
    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
   760
    if (theme < 0) return;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   761
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   762
    QModelIndex current = m_themeModel->index(theme, 0);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   763
    updateTheme(current);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   764
    emit themeChanged(m_theme);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   765
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   766
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   767
void HWMapContainer::updateTheme(const QModelIndex & current)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   768
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   769
    m_theme = selectedTheme = current.data().toString();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   770
    QIcon icon = qVariantValue<QIcon>(current.data(Qt::UserRole));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   771
    QSize iconSize = icon.actualSize(QSize(65535, 65535));
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   772
    btnTheme->setFixedHeight(64);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   773
    btnTheme->setIconSize(iconSize);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   774
    btnTheme->setIcon(icon);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   775
    btnTheme->setText(tr("Theme: ") + current.data(Qt::DisplayRole).toString());
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   776
    updateThemeButtonSize();
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   777
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   778
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   779
void HWMapContainer::staticMapChanged(const QModelIndex & map, const QModelIndex & old)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   780
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   781
    mapChanged(map, 0, old);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   782
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   783
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   784
void HWMapContainer::missionMapChanged(const QModelIndex & map, const QModelIndex & old)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   785
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   786
    mapChanged(map, 1, old);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   787
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   788
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   789
// Type: 0 = static, 1 = mission
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   790
void HWMapContainer::mapChanged(const QModelIndex & map, int type, const QModelIndex & old)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   791
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   792
    QListView * mapList;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   793
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   794
    if (type == 0)      mapList = staticMapList;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   795
    else if (type == 1) mapList = missionMapList;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   796
    else                return;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   797
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   798
    // Make sure it is a valid index
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   799
    if (!map.isValid())
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   800
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   801
        if (old.isValid())
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   802
        {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   803
            mapList->setCurrentIndex(old);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   804
            mapList->scrollTo(old);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   805
        }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   806
        else
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   807
        {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   808
            m_mapInfo.type = MapModel::Invalid;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   809
            updatePreview();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   810
        }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   811
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   812
        return;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   813
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   814
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   815
    // If map changed, update list selection
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   816
    if (mapList->currentIndex() != map)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   817
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   818
        mapList->setCurrentIndex(map);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   819
        mapList->scrollTo(map);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   820
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   821
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   822
    if (map.data(Qt::UserRole + 1).canConvert<MapModel::MapInfo>())
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   823
        setMapInfo(map.data(Qt::UserRole + 1).value<MapModel::MapInfo>());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   824
    else
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   825
        Q_ASSERT(false); // Houston, we have a problem.
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   826
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   827
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   828
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   829
void HWMapContainer::setMapInfo(MapModel::MapInfo mapInfo)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   830
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   831
    m_mapInfo = mapInfo;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   832
    m_curMap = m_mapInfo.name;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   833
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   834
    // 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
   835
    if (m_mapInfo.theme.isEmpty())
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   836
    {
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   837
        if (!selectedTheme.isEmpty())
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   838
        {
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   839
            setTheme(selectedTheme);
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   840
            emit themeChanged(selectedTheme);
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   841
        }
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   842
    }
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   843
    else
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   844
    {
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   845
        setTheme(m_mapInfo.theme);
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   846
        emit themeChanged(m_mapInfo.theme);
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   847
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   848
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   849
    lblDesc->setText(mapInfo.desc);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   850
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   851
    updatePreview();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   852
    emit mapChanged(m_curMap);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   853
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   854
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   855
void HWMapContainer::loadDrawing()
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   856
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   857
    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
   858
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   859
    if(fileName.isEmpty()) return;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   860
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   861
    QFile f(fileName);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   862
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   863
    if(!f.open(QIODevice::ReadOnly))
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   864
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   865
        QMessageBox errorMsg(parentWidget());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   866
        errorMsg.setIcon(QMessageBox::Warning);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   867
        errorMsg.setWindowTitle(QMessageBox::tr("File error"));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   868
        errorMsg.setText(QMessageBox::tr("Cannot open '%1' for reading").arg(fileName));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   869
        errorMsg.setWindowModality(Qt::WindowModal);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   870
        errorMsg.exec();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   871
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   872
    else
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   873
    {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   874
        drawMapScene.decode(qUncompress(QByteArray::fromBase64(f.readAll())));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   875
        mapDrawingFinished();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   876
    }
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   877
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   878
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   879
void HWMapContainer::showSeedPrompt()
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   880
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   881
    SeedPrompt prompt(parentWidget()->parentWidget(), getCurrentSeed(), isMaster());
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   882
    connect(&prompt, SIGNAL(seedSelected(const QString &)), this, SLOT(setNewSeed(const QString &)));
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   883
    prompt.exec();
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   884
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   885
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   886
bool HWMapContainer::isMaster()
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   887
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   888
    return m_master;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   889
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   890
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   891
void HWMapContainer::setMaster(bool master)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   892
{
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   893
    if (master == m_master) return;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   894
    m_master = master;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   895
    
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   896
    foreach (QWidget *widget, m_childWidgets)
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   897
        widget->setEnabled(master);
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8070
diff changeset
   898
}
8393
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   899
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   900
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
   901
{
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   902
    if (name.isEmpty()) return;
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   903
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   904
    m_theme = name;
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   905
    btnTheme->setIcon(QIcon());
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   906
    btnTheme->setText(tr("Theme: ") + name);
85bd6c7b2641 Can now change theme for static and mission maps.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   907
}