QTfrontend/ui/widget/gamecfgwidget.cpp
author nemo
Mon, 30 Jan 2012 17:32:18 -0500
changeset 6616 f77bb02b669f
parent 6174 2d5717595471
child 6700 e04da46ee43c
permissions -rw-r--r--
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
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: 703
diff changeset
     2
 * Hedgewars, a free turn based strategy game
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4941
diff changeset
     3
 * Copyright (c) 2006-2011 Andrey Korotaev <unC0Rr@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 <QResizeEvent>
218
6e64db60222c Better-looking game config widget
unc0rr
parents: 184
diff changeset
    20
#include <QGroupBox>
311
b8905423f19f - Limit list of teams in game with 200 px
unc0rr
parents: 249
diff changeset
    21
#include <QCheckBox>
b8905423f19f - Limit list of teams in game with 200 px
unc0rr
parents: 249
diff changeset
    22
#include <QGridLayout>
b8905423f19f - Limit list of teams in game with 200 px
unc0rr
parents: 249
diff changeset
    23
#include <QSpinBox>
b8905423f19f - Limit list of teams in game with 200 px
unc0rr
parents: 249
diff changeset
    24
#include <QLabel>
1517
27caa8c6e73a Store ammo info directly in combobox
unc0rr
parents: 1479
diff changeset
    25
#include <QMessageBox>
1884
40e59e9f82ce Continue work on new schemes implementation
unc0rr
parents: 1878
diff changeset
    26
#include <QTableView>
1885
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1884
diff changeset
    27
#include <QPushButton>
1217
d6d91eec00f2 Remake gamecfgwidget
unc0rr
parents: 1214
diff changeset
    28
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    29
#include "gamecfgwidget.h"
1217
d6d91eec00f2 Remake gamecfgwidget
unc0rr
parents: 1214
diff changeset
    30
#include "igbox.h"
6174
2d5717595471 fix multiplayer script loading
sheepluva
parents: 6088
diff changeset
    31
#include "HWDataManager.h"
1517
27caa8c6e73a Store ammo info directly in combobox
unc0rr
parents: 1479
diff changeset
    32
#include "hwconsts.h"
1884
40e59e9f82ce Continue work on new schemes implementation
unc0rr
parents: 1878
diff changeset
    33
#include "ammoSchemeModel.h"
4494
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
    34
#include "proto.h"
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    35
4560
5d6c7f88db73 - Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents: 4557
diff changeset
    36
GameCFGWidget::GameCFGWidget(QWidget* parent) :
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
    37
    QGroupBox(parent)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
    38
    , mainLayout(this)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
    39
    , seedRegexp("\\{[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\\}")
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    40
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    41
    mainLayout.setMargin(0);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    42
//  mainLayout.setSizeConstraint(QLayout::SetMinimumSize);
218
6e64db60222c Better-looking game config widget
unc0rr
parents: 184
diff changeset
    43
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    44
    pMapContainer = new HWMapContainer(this);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    45
    mainLayout.addWidget(pMapContainer, 0, 0);
218
6e64db60222c Better-looking game config widget
unc0rr
parents: 184
diff changeset
    46
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    47
    IconedGroupBox *GBoxOptions = new IconedGroupBox(this);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    48
    GBoxOptions->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
4557
4004bef2aa9d fix layout in game config widget as per nemo's request
Henek
parents: 4551
diff changeset
    49
    mainLayout.addWidget(GBoxOptions, 1, 0);
218
6e64db60222c Better-looking game config widget
unc0rr
parents: 184
diff changeset
    50
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    51
    QGridLayout *GBoxOptionsLayout = new QGridLayout(GBoxOptions);
1884
40e59e9f82ce Continue work on new schemes implementation
unc0rr
parents: 1878
diff changeset
    52
5925
2a9353b800cd Move options caption to box title. This frees up quite a bit of space at 800x600
nemo
parents: 5717
diff changeset
    53
    GBoxOptions->setTitle(tr("Game Options"));
5468
8a7264a094fb annoying translators like it was no thing
koda
parents: 5352
diff changeset
    54
    GBoxOptionsLayout->addWidget(new QLabel(QLabel::tr("Style"), GBoxOptions), 1, 0);
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
    55
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    56
    Scripts = new QComboBox(GBoxOptions);
5468
8a7264a094fb annoying translators like it was no thing
koda
parents: 5352
diff changeset
    57
    GBoxOptionsLayout->addWidget(Scripts, 1, 1);
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
    58
4709
c224bfb5d41c fixed strange config on room join and untranslated "Normal" gameplay option
Henek
parents: 4584
diff changeset
    59
    Scripts->addItem("Normal");
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
    60
    Scripts->insertSeparator(1);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    61
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
    62
    for (int i = 0; i < scriptList->size(); ++i)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
    63
    {
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
    64
        QString script = (*scriptList)[i].remove(".lua", Qt::CaseInsensitive);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    65
        QList<QVariant> scriptInfo;
4551
05c32ee166b6 added replacement of "_" to " " in gameplay scripts
Henek
parents: 4537
diff changeset
    66
        scriptInfo.push_back(script);
6174
2d5717595471 fix multiplayer script loading
sheepluva
parents: 6088
diff changeset
    67
        QFile scriptCfgFile(HWDataManager::instance().findFileForRead(
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
    68
                                QString("Scripts/Multiplayer/%2.cfg").arg(script)));
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
    69
        if (scriptCfgFile.exists() && scriptCfgFile.open(QFile::ReadOnly))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
    70
        {
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
    71
            QString scheme;
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    72
            QString weapons;
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    73
            QTextStream input(&scriptCfgFile);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    74
            input >> scheme;
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    75
            input >> weapons;
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    76
            if (scheme.isEmpty())
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    77
                scheme = "locked";
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    78
            scheme.replace("_", " ");
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    79
            if (weapons.isEmpty())
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    80
                weapons = "locked";
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    81
            weapons.replace("_", " ");
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    82
            scriptInfo.push_back(scheme);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    83
            scriptInfo.push_back(weapons);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    84
            scriptCfgFile.close();
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    85
        }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    86
        else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    87
        {
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    88
            scriptInfo.push_back("locked");
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    89
            scriptInfo.push_back("locked");
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    90
        }
4551
05c32ee166b6 added replacement of "_" to " " in gameplay scripts
Henek
parents: 4537
diff changeset
    91
        Scripts->addItem(script.replace("_", " "), scriptInfo);
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
    92
    }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    93
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    94
    connect(Scripts, SIGNAL(currentIndexChanged(int)), this, SLOT(scriptChanged(int)));
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    95
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    96
    QWidget *SchemeWidget = new QWidget(GBoxOptions);
5468
8a7264a094fb annoying translators like it was no thing
koda
parents: 5352
diff changeset
    97
    GBoxOptionsLayout->addWidget(SchemeWidget, 2, 0, 1, 2);
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
    98
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
    99
    QGridLayout *SchemeWidgetLayout = new QGridLayout(SchemeWidget);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   100
    SchemeWidgetLayout->setMargin(0);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   101
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   102
    GameSchemes = new QComboBox(SchemeWidget);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   103
    SchemeWidgetLayout->addWidget(GameSchemes, 0, 2);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   104
    connect(GameSchemes, SIGNAL(currentIndexChanged(int)), this, SLOT(schemeChanged(int)));
1885
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1884
diff changeset
   105
5468
8a7264a094fb annoying translators like it was no thing
koda
parents: 5352
diff changeset
   106
    SchemeWidgetLayout->addWidget(new QLabel(QLabel::tr("Scheme"), SchemeWidget), 0, 0);
1979
912e450d4db2 - Add gameServer to build system
unc0rr
parents: 1921
diff changeset
   107
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   108
    QPixmap pmEdit(":/res/edit.png");
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   109
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
   110
    QPushButton * goToSchemePage = new QPushButton(SchemeWidget);
2888
69d04079fb46 Graphic for dead mines
nemo
parents: 2882
diff changeset
   111
    goToSchemePage->setToolTip(tr("Edit schemes"));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   112
    goToSchemePage->setIconSize(pmEdit.size());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   113
    goToSchemePage->setIcon(pmEdit);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   114
    goToSchemePage->setMaximumWidth(pmEdit.width() + 6);
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
   115
    SchemeWidgetLayout->addWidget(goToSchemePage, 0, 3);
4410
f9e38ce1e813 a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
Henek
parents: 4396
diff changeset
   116
    connect(goToSchemePage, SIGNAL(clicked()), this, SLOT(jumpToSchemes()));
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
   117
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
   118
    SchemeWidgetLayout->addWidget(new QLabel(QLabel::tr("Weapons"), SchemeWidget), 1, 0);
311
b8905423f19f - Limit list of teams in game with 200 px
unc0rr
parents: 249
diff changeset
   119
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
   120
    WeaponsName = new QComboBox(SchemeWidget);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   121
    SchemeWidgetLayout->addWidget(WeaponsName, 1, 2);
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
   122
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   123
    connect(WeaponsName, SIGNAL(currentIndexChanged(int)), this, SLOT(ammoChanged(int)));
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
   124
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
   125
    QPushButton * goToWeaponPage = new QPushButton(SchemeWidget);
2888
69d04079fb46 Graphic for dead mines
nemo
parents: 2882
diff changeset
   126
    goToWeaponPage->setToolTip(tr("Edit weapons"));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   127
    goToWeaponPage->setIconSize(pmEdit.size());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   128
    goToWeaponPage->setIcon(pmEdit);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   129
    goToWeaponPage->setMaximumWidth(pmEdit.width() + 6);
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
   130
    SchemeWidgetLayout->addWidget(goToWeaponPage, 1, 3);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   131
    connect(goToWeaponPage, SIGNAL(clicked()), this, SLOT(jumpToWeapons()));
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 452
diff changeset
   132
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
   133
    bindEntries = new QCheckBox(SchemeWidget);
4410
f9e38ce1e813 a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
Henek
parents: 4396
diff changeset
   134
    bindEntries->setToolTip(tr("When this option is enabled selecting a game scheme will auto-select a weapon"));
4237
ef9b201c97fe by default selecting a game mode will select a weapon with the same name, and viceversa; toggable for every game
koda
parents: 4225
diff changeset
   135
    bindEntries->setChecked(true);
4410
f9e38ce1e813 a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
Henek
parents: 4396
diff changeset
   136
    bindEntries->setMaximumWidth(42);
f9e38ce1e813 a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
Henek
parents: 4396
diff changeset
   137
    bindEntries->setStyleSheet( "QCheckBox::indicator:checked   { image: url(\":/res/lock.png\"); }"
f9e38ce1e813 a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
Henek
parents: 4396
diff changeset
   138
                                "QCheckBox::indicator:unchecked { image: url(\":/res/unlock.png\");   }" );
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
   139
    SchemeWidgetLayout->addWidget(bindEntries, 0, 1, 0, 1, Qt::AlignVCenter);
4237
ef9b201c97fe by default selecting a game mode will select a weapon with the same name, and viceversa; toggable for every game
koda
parents: 4225
diff changeset
   140
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   141
    connect(pMapContainer, SIGNAL(seedChanged(const QString &)), this, SLOT(seedChanged(const QString &)));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   142
    connect(pMapContainer, SIGNAL(mapChanged(const QString &)), this, SLOT(mapChanged(const QString &)));
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   143
    connect(pMapContainer, SIGNAL(mapgenChanged(MapGenerator)), this, SLOT(mapgenChanged(MapGenerator)));
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   144
    connect(pMapContainer, SIGNAL(mazeSizeChanged(int)), this, SLOT(maze_sizeChanged(int)));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   145
    connect(pMapContainer, SIGNAL(themeChanged(const QString &)), this, SLOT(themeChanged(const QString &)));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   146
    connect(pMapContainer, SIGNAL(newTemplateFilter(int)), this, SLOT(templateFilterChanged(int)));
4511
df827e70ae63 Pretension to switch to draw map page
unc0rr
parents: 4494
diff changeset
   147
    connect(pMapContainer, SIGNAL(drawMapRequested()), this, SIGNAL(goToDrawMap()));
4525
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4513
diff changeset
   148
    connect(pMapContainer, SIGNAL(drawnMapChanged(const QByteArray &)), this, SLOT(onDrawnMapChanged(const QByteArray &)));
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   149
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   150
4410
f9e38ce1e813 a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
Henek
parents: 4396
diff changeset
   151
void GameCFGWidget::jumpToSchemes()
f9e38ce1e813 a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
Henek
parents: 4396
diff changeset
   152
{
f9e38ce1e813 a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
Henek
parents: 4396
diff changeset
   153
    emit goToSchemes(GameSchemes->currentIndex());
f9e38ce1e813 a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
Henek
parents: 4396
diff changeset
   154
}
f9e38ce1e813 a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
Henek
parents: 4396
diff changeset
   155
2009
91f461c218ab TheXception's patch:
unc0rr
parents: 1979
diff changeset
   156
void GameCFGWidget::jumpToWeapons()
91f461c218ab TheXception's patch:
unc0rr
parents: 1979
diff changeset
   157
{
4416
29d2d1548387 adding a combobox to weapon editor as scheme editor, added a few notices for deleting and some buttons in this area.
Henek
parents: 4410
diff changeset
   158
    emit goToWeapons(WeaponsName->currentIndex());
2009
91f461c218ab TheXception's patch:
unc0rr
parents: 1979
diff changeset
   159
}
91f461c218ab TheXception's patch:
unc0rr
parents: 1979
diff changeset
   160
1890
de5cfe3beb22 Scheme options work now
unc0rr
parents: 1887
diff changeset
   161
QVariant GameCFGWidget::schemeData(int column) const
de5cfe3beb22 Scheme options work now
unc0rr
parents: 1887
diff changeset
   162
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   163
    return GameSchemes->model()->data(GameSchemes->model()->index(GameSchemes->currentIndex(), column));
1890
de5cfe3beb22 Scheme options work now
unc0rr
parents: 1887
diff changeset
   164
}
de5cfe3beb22 Scheme options work now
unc0rr
parents: 1887
diff changeset
   165
318
46a43b02bbb3 Game config commands are generated by GameCFGWidget
unc0rr
parents: 312
diff changeset
   166
quint32 GameCFGWidget::getGameFlags() const
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   167
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   168
    quint32 result = 0;
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1218
diff changeset
   169
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   170
    if (schemeData(1).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   171
        result |= 0x00001000;       // fort
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   172
    if (schemeData(2).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   173
        result |= 0x00000010;       // divide teams
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   174
    if (schemeData(3).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   175
        result |= 0x00000004;       // solid land
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   176
    if (schemeData(4).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   177
        result |= 0x00000008;       // border
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   178
    if (schemeData(5).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   179
        result |= 0x00000020;       // low gravity
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   180
    if (schemeData(6).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   181
        result |= 0x00000040;       // laser sight
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   182
    if (schemeData(7).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   183
        result |= 0x00000080;       // invulnerable
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   184
    if (schemeData(8).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   185
        result |= 0x00000100;       // mines
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   186
    if (schemeData(9).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   187
        result |= 0x00000200;       // vampirism
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   188
    if (schemeData(10).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   189
        result |= 0x00000400;       // karma
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   190
    if (schemeData(11).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   191
        result |= 0x00000800;       // artillery
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   192
    if (schemeData(12).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   193
        result |= 0x00002000;       // random
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   194
    if (schemeData(13).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   195
        result |= 0x00004000;       // king
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   196
    if (schemeData(14).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   197
        result |= 0x00008000;       // place hogs
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   198
    if (schemeData(15).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   199
        result |= 0x00010000;       // shared ammo
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   200
    if (schemeData(16).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   201
        result |= 0x00020000;       // disable girders
3287
4f7b57ed18b6 New game scheme option to turn off land objects
nemo
parents: 3236
diff changeset
   202
    if (schemeData(17).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   203
        result |= 0x00040000;       // disable land obj
3743
234ce4da76d4 Flag for AI survival mode
nemo
parents: 3697
diff changeset
   204
    if (schemeData(18).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   205
        result |= 0x00080000;       // ai survival
3943
9835060e5c01 Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents: 3919
diff changeset
   206
    if (schemeData(19).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   207
        result |= 0x00100000;       // infinite attacks
3943
9835060e5c01 Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents: 3919
diff changeset
   208
    if (schemeData(20).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   209
        result |= 0x00200000;       // reset weaps
3943
9835060e5c01 Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents: 3919
diff changeset
   210
    if (schemeData(21).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   211
        result |= 0x00400000;       // per hog ammo
4250
d83b53997e0b exposing Henek's no wind flag
koda
parents: 4248
diff changeset
   212
    if (schemeData(22).toBool())
d83b53997e0b exposing Henek's no wind flag
koda
parents: 4248
diff changeset
   213
        result |= 0x00800000;       // no wind
4303
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   214
    if (schemeData(23).toBool())
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   215
        result |= 0x01000000;       // more wind
5016
9347d82a26cc added game mode Tag Team, mostly untested, please test :)
Henek
parents: 4976
diff changeset
   216
    if (schemeData(24).toBool())
9347d82a26cc added game mode Tag Team, mostly untested, please test :)
Henek
parents: 4976
diff changeset
   217
        result |= 0x02000000;       // tag team
5717
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   218
    if (schemeData(25).toBool())
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   219
        result |= 0x04000000;       // bottom border
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1218
diff changeset
   220
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   221
    return result;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   222
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   223
312
c36d0b34ac3d Use new parameters, small protocol change
unc0rr
parents: 311
diff changeset
   224
quint32 GameCFGWidget::getInitHealth() const
c36d0b34ac3d Use new parameters, small protocol change
unc0rr
parents: 311
diff changeset
   225
{
5717
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   226
    return schemeData(28).toInt();
312
c36d0b34ac3d Use new parameters, small protocol change
unc0rr
parents: 311
diff changeset
   227
}
c36d0b34ac3d Use new parameters, small protocol change
unc0rr
parents: 311
diff changeset
   228
4494
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   229
QByteArray GameCFGWidget::getFullConfig() const
318
46a43b02bbb3 Game config commands are generated by GameCFGWidget
unc0rr
parents: 312
diff changeset
   230
{
4494
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   231
    QList<QByteArray> bcfg;
4489
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   232
    int mapgen = pMapContainer->get_mapgen();
4494
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   233
5352
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   234
    QString currentMap = pMapContainer->getCurrentMap();
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   235
    if (currentMap.size() > 0)
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   236
    {
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   237
        bcfg << QString("emap " + currentMap).toUtf8();
6088
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 6060
diff changeset
   238
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 6060
diff changeset
   239
// engine should figure it out on its own
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 6060
diff changeset
   240
//        if(pMapContainer->getCurrentIsMission())
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 6060
diff changeset
   241
//            bcfg << QString("escript Maps/%1/map.lua").arg(currentMap).toUtf8();
5352
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   242
    }
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   243
    bcfg << QString("etheme " + pMapContainer->getCurrentTheme()).toUtf8();
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   244
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   245
    if (Scripts->currentIndex() > 0)
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   246
    {
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   247
        bcfg << QString("escript Scripts/Multiplayer/%1.lua").arg(Scripts->itemData(Scripts->currentIndex()).toList()[0].toString()).toUtf8();
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   248
    }
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5238
diff changeset
   249
4494
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   250
    bcfg << QString("eseed " + pMapContainer->getCurrentSeed()).toUtf8();
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   251
    bcfg << QString("e$gmflags %1").arg(getGameFlags()).toUtf8();
5717
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   252
    bcfg << QString("e$damagepct %1").arg(schemeData(26).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   253
    bcfg << QString("e$turntime %1").arg(schemeData(27).toInt() * 1000).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   254
    bcfg << QString("e$sd_turns %1").arg(schemeData(29).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   255
    bcfg << QString("e$casefreq %1").arg(schemeData(30).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   256
    bcfg << QString("e$minestime %1").arg(schemeData(31).toInt() * 1000).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   257
    bcfg << QString("e$minesnum %1").arg(schemeData(32).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   258
    bcfg << QString("e$minedudpct %1").arg(schemeData(33).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   259
    bcfg << QString("e$explosives %1").arg(schemeData(34).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   260
    bcfg << QString("e$healthprob %1").arg(schemeData(35).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   261
    bcfg << QString("e$hcaseamount %1").arg(schemeData(36).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   262
    bcfg << QString("e$waterrise %1").arg(schemeData(37).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   263
    bcfg << QString("e$healthdec %1").arg(schemeData(38).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   264
    bcfg << QString("e$ropepct %1").arg(schemeData(39).toInt()).toUtf8();
6d513913b7a9 Add option for a bottom border. Needs testing.
nemo
parents: 5468
diff changeset
   265
    bcfg << QString("e$getawaytime %1").arg(schemeData(40).toInt()).toUtf8();
4494
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   266
    bcfg << QString("e$template_filter %1").arg(pMapContainer->getTemplateFilter()).toUtf8();
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   267
    bcfg << QString("e$mapgen %1").arg(mapgen).toUtf8();
4489
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   268
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   269
    switch (mapgen)
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   270
    {
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   271
        case MAPGEN_MAZE:
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   272
            bcfg << QString("e$maze_size %1").arg(pMapContainer->getMazeSize()).toUtf8();
4584
66bc6e45be83 Add those stupid breaks
unc0rr
parents: 4560
diff changeset
   273
            break;
4489
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   274
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   275
        case MAPGEN_DRAWN:
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   276
        {
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   277
            QByteArray data = pMapContainer->getDrawnMapData();
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   278
            while(data.size() > 0)
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   279
            {
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   280
                QByteArray tmp = data;
4494
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   281
                tmp.truncate(200);
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   282
                tmp.prepend("edraw ");
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   283
                bcfg << tmp;
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   284
                data.remove(0, 200);
4489
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   285
            }
4584
66bc6e45be83 Add those stupid breaks
unc0rr
parents: 4560
diff changeset
   286
            break;
4489
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   287
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   288
        default:
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   289
            ;
4489
c4ca9ced258b - Pass map drawing data to engine
unc0rr
parents: 4482
diff changeset
   290
    }
1782
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1628
diff changeset
   291
4494
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   292
    QByteArray result;
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   293
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   294
    foreach(QByteArray ba, bcfg)
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   295
    HWProto::addByteArrayToBuffer(result, ba);
4494
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   296
9585435e20f7 Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents: 4489
diff changeset
   297
    return result;
318
46a43b02bbb3 Game config commands are generated by GameCFGWidget
unc0rr
parents: 312
diff changeset
   298
}
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 318
diff changeset
   299
703
424297e3165a weapon names transmitted over network
displacer
parents: 697
diff changeset
   300
void GameCFGWidget::setNetAmmo(const QString& name, const QString& ammo)
697
44f167938201 pre-alpha network weapons selection
displacer
parents: 696
diff changeset
   301
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   302
    bool illegal = ammo.size() != cDefaultAmmoStore->size();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   303
    if (illegal)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   304
        QMessageBox::critical(this, tr("Error"), tr("Illegal ammo scheme"));
703
424297e3165a weapon names transmitted over network
displacer
parents: 697
diff changeset
   305
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   306
    int pos = WeaponsName->findText(name);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   307
    if ((pos == -1) || illegal)   // prevent from overriding schemes with bad ones
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   308
    {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   309
        WeaponsName->addItem(name, ammo);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   310
        WeaponsName->setCurrentIndex(WeaponsName->count() - 1);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   311
    }
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   312
    else
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   313
    {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   314
        WeaponsName->setItemData(pos, ammo);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   315
        WeaponsName->setCurrentIndex(pos);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   316
    }
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1517
diff changeset
   317
}
1531
f404233b6d9b - Less crossclass dependancies
unc0rr
parents: 1530
diff changeset
   318
1875
189370d394db - Send initial room config
unc0rr
parents: 1874
diff changeset
   319
void GameCFGWidget::fullNetConfig()
189370d394db - Send initial room config
unc0rr
parents: 1874
diff changeset
   320
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   321
    ammoChanged(WeaponsName->currentIndex());
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
   322
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   323
    seedChanged(pMapContainer->getCurrentSeed());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   324
    templateFilterChanged(pMapContainer->getTemplateFilter());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   325
    themeChanged(pMapContainer->getCurrentTheme());
1875
189370d394db - Send initial room config
unc0rr
parents: 1874
diff changeset
   326
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   327
    schemeChanged(GameSchemes->currentIndex());
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
   328
    scriptChanged(Scripts->currentIndex());
1921
2a09f7f786a0 - User from localhost is server admin
unc0rr
parents: 1898
diff changeset
   329
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   330
    mapgenChanged(pMapContainer->get_mapgen());
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   331
    maze_sizeChanged(pMapContainer->getMazeSize());
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   332
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   333
    // map must be the last
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   334
    QString map = pMapContainer->getCurrentMap();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   335
    if (map.size())
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   336
        mapChanged(map);
1875
189370d394db - Send initial room config
unc0rr
parents: 1874
diff changeset
   337
}
189370d394db - Send initial room config
unc0rr
parents: 1874
diff changeset
   338
1873
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1802
diff changeset
   339
void GameCFGWidget::setParam(const QString & param, const QStringList & slValue)
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1802
diff changeset
   340
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   341
    if (slValue.size() == 1)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   342
    {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   343
        QString value = slValue[0];
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   344
        if (param == "MAP")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   345
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   346
            pMapContainer->setMap(value);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   347
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   348
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   349
        if (param == "SEED")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   350
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   351
            pMapContainer->setSeed(value);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   352
            if (!seedRegexp.exactMatch(value))
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   353
            {
4720
a9f9c96db60c Allow people to see my clever seed names if I set to something other than random seed hash.
nemo
parents: 4709
diff changeset
   354
                pMapContainer->seedEdit->setVisible(true);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   355
            }
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   356
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   357
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   358
        if (param == "THEME")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   359
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   360
            pMapContainer->setTheme(value);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   361
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   362
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   363
        if (param == "TEMPLATE")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   364
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   365
            pMapContainer->setTemplateFilter(value.toUInt());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   366
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   367
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   368
        if (param == "MAPGEN")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   369
        {
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   370
            pMapContainer->setMapgen((MapGenerator)value.toUInt());
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   371
            return;
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   372
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   373
        if (param == "MAZE_SIZE")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   374
        {
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   375
            pMapContainer->setMazeSize(value.toUInt());
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   376
            return;
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   377
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   378
        if (param == "SCRIPT")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   379
        {
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
   380
            Scripts->setCurrentIndex(Scripts->findText(value));
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   381
            return;
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   382
        }
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   383
        if (param == "DRAWNMAP")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   384
        {
4537
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4535
diff changeset
   385
            pMapContainer->setDrawnMapData(qUncompress(QByteArray::fromBase64(slValue[0].toLatin1())));
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4535
diff changeset
   386
            return;
f95f7218531a Recieve and parse DRAWNMAP config
unc0rr
parents: 4535
diff changeset
   387
        }
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   388
    }
1873
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1802
diff changeset
   389
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   390
    if (slValue.size() == 2)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   391
    {
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   392
        if (param == "AMMO")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   393
        {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   394
            setNetAmmo(slValue[0], slValue[1]);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   395
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   396
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   397
    }
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
   398
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   399
    if (slValue.size() == 5)
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: 4720
diff changeset
   400
    {
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   401
        if (param == "FULLMAPCONFIG")
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: 4720
diff changeset
   402
        {
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   403
            QString seed = slValue[3];
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: 4720
diff changeset
   404
            if (!seedRegexp.exactMatch(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: 4720
diff changeset
   405
                pMapContainer->seedEdit->setVisible(true);
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: 4720
diff changeset
   406
4941
90572c338e60 Fix for my last commit (which was all nonsense)
unc0rr
parents: 4936
diff changeset
   407
            pMapContainer->setAllMapParameters(
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   408
                slValue[0],
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   409
                (MapGenerator)slValue[1].toUInt(),
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   410
                slValue[2].toUInt(),
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   411
                seed,
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   412
                slValue[4].toUInt()
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   413
            );
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: 4720
diff changeset
   414
            return;
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: 4720
diff changeset
   415
        }
d65d438acd23 Merge MAP, MAPGEN and SEED params into one on room join, so engine isn't spawned three times for a preview. Not tested as I'm unable to see my rooms (why?)
unc0rr
parents: 4720
diff changeset
   416
    }
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: 4720
diff changeset
   417
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   418
    qWarning("Got bad config param from net");
1873
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1802
diff changeset
   419
}
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1802
diff changeset
   420
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   421
void GameCFGWidget::ammoChanged(int index)
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   422
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   423
    if (index >= 0)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   424
    {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   425
        emit paramChanged(
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   426
            "AMMO",
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   427
            QStringList() << WeaponsName->itemText(index) << WeaponsName->itemData(index).toString()
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   428
        );
4237
ef9b201c97fe by default selecting a game mode will select a weapon with the same name, and viceversa; toggable for every game
koda
parents: 4225
diff changeset
   429
    }
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   430
}
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   431
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   432
void GameCFGWidget::mapChanged(const QString & value)
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   433
{
4709
c224bfb5d41c fixed strange config on room join and untranslated "Normal" gameplay option
Henek
parents: 4584
diff changeset
   434
    if(isEnabled() && pMapContainer->getCurrentIsMission())
3010
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   435
    {
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
   436
        Scripts->setEnabled(false);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   437
        Scripts->setCurrentIndex(0);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   438
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   439
        if (pMapContainer->getCurrentScheme() == "locked")
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   440
        {
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   441
            GameSchemes->setEnabled(false);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   442
            GameSchemes->setCurrentIndex(GameSchemes->findText("Default"));
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   443
        }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   444
        else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   445
        {
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   446
            GameSchemes->setEnabled(true);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   447
            int num = GameSchemes->findText(pMapContainer->getCurrentScheme());
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   448
            if (num != -1)
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   449
                GameSchemes->setCurrentIndex(num);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   450
            else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   451
                GameSchemes->setCurrentIndex(GameSchemes->findText("Default"));
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   452
        }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   453
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   454
        if (pMapContainer->getCurrentWeapons() == "locked")
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   455
        {
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   456
            WeaponsName->setEnabled(false);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   457
            WeaponsName->setCurrentIndex(WeaponsName->findText("Default"));
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   458
        }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   459
        else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   460
        {
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   461
            WeaponsName->setEnabled(true);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   462
            int num = WeaponsName->findText(pMapContainer->getCurrentWeapons());
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   463
            if (num != -1)
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   464
                WeaponsName->setCurrentIndex(num);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   465
            else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   466
                WeaponsName->setCurrentIndex(WeaponsName->findText("Default"));
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   467
        }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   468
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   469
        if (pMapContainer->getCurrentScheme() != "locked" && pMapContainer->getCurrentWeapons() != "locked")
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   470
            bindEntries->setEnabled(true);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   471
        else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   472
            bindEntries->setEnabled(false);
3010
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   473
    }
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   474
    else
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   475
    {
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
   476
        Scripts->setEnabled(true);
3010
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   477
        GameSchemes->setEnabled(true);
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   478
        WeaponsName->setEnabled(true);
4237
ef9b201c97fe by default selecting a game mode will select a weapon with the same name, and viceversa; toggable for every game
koda
parents: 4225
diff changeset
   479
        bindEntries->setEnabled(true);
3010
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   480
    }
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   481
    emit paramChanged("MAP", QStringList(value));
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   482
}
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   483
1876
b13dd4e6e98e Pass template filter
unc0rr
parents: 1875
diff changeset
   484
void GameCFGWidget::templateFilterChanged(int value)
b13dd4e6e98e Pass template filter
unc0rr
parents: 1875
diff changeset
   485
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   486
    emit paramChanged("TEMPLATE", QStringList(QString::number(value)));
1876
b13dd4e6e98e Pass template filter
unc0rr
parents: 1875
diff changeset
   487
}
b13dd4e6e98e Pass template filter
unc0rr
parents: 1875
diff changeset
   488
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   489
void GameCFGWidget::seedChanged(const QString & value)
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   490
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   491
    emit paramChanged("SEED", QStringList(value));
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   492
}
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   493
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   494
void GameCFGWidget::themeChanged(const QString & value)
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   495
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   496
    emit paramChanged("THEME", QStringList(value));
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   497
}
1898
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1895
diff changeset
   498
4237
ef9b201c97fe by default selecting a game mode will select a weapon with the same name, and viceversa; toggable for every game
koda
parents: 4225
diff changeset
   499
void GameCFGWidget::schemeChanged(int index)
1898
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1895
diff changeset
   500
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   501
    QStringList sl;
1898
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1895
diff changeset
   502
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   503
    int size = GameSchemes->model()->columnCount();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   504
    for(int i = 0; i < size; ++i)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   505
        sl << schemeData(i).toString();
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
   506
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   507
    emit paramChanged("SCHEME", sl);
4237
ef9b201c97fe by default selecting a game mode will select a weapon with the same name, and viceversa; toggable for every game
koda
parents: 4225
diff changeset
   508
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   509
    if (isEnabled() && bindEntries->isEnabled() && bindEntries->isChecked())
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   510
    {
4237
ef9b201c97fe by default selecting a game mode will select a weapon with the same name, and viceversa; toggable for every game
koda
parents: 4225
diff changeset
   511
        QString schemeName = GameSchemes->itemText(index);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   512
        for (int i = 0; i < WeaponsName->count(); i++)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   513
        {
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   514
            QString weapName = WeaponsName->itemText(i);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   515
            int res = QString::compare(weapName, schemeName, Qt::CaseSensitive);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   516
            if (0 == res)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   517
            {
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   518
                WeaponsName->setCurrentIndex(i);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   519
                emit ammoChanged(i);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   520
                break;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6174
diff changeset
   521
            }
4237
ef9b201c97fe by default selecting a game mode will select a weapon with the same name, and viceversa; toggable for every game
koda
parents: 4225
diff changeset
   522
        }
ef9b201c97fe by default selecting a game mode will select a weapon with the same name, and viceversa; toggable for every game
koda
parents: 4225
diff changeset
   523
    }
1898
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1895
diff changeset
   524
}
2080
6d29370dc0dd This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents: 2031
diff changeset
   525
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
   526
void GameCFGWidget::scriptChanged(int index)
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   527
{
4709
c224bfb5d41c fixed strange config on room join and untranslated "Normal" gameplay option
Henek
parents: 4584
diff changeset
   528
    if(isEnabled() && index > 0)
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
   529
    {
4551
05c32ee166b6 added replacement of "_" to " " in gameplay scripts
Henek
parents: 4537
diff changeset
   530
        QString scheme = Scripts->itemData(Scripts->currentIndex()).toList()[1].toString();
05c32ee166b6 added replacement of "_" to " " in gameplay scripts
Henek
parents: 4537
diff changeset
   531
        QString weapons = Scripts->itemData(Scripts->currentIndex()).toList()[2].toString();
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
   532
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   533
        if (scheme == "locked")
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   534
        {
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   535
            GameSchemes->setEnabled(false);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   536
            GameSchemes->setCurrentIndex(GameSchemes->findText("Default"));
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   537
        }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   538
        else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   539
        {
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   540
            GameSchemes->setEnabled(true);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   541
            int num = GameSchemes->findText(scheme);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   542
            if (num != -1)
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   543
                GameSchemes->setCurrentIndex(num);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   544
            else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   545
                GameSchemes->setCurrentIndex(GameSchemes->findText("Default"));
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   546
        }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   547
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   548
        if (weapons == "locked")
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   549
        {
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   550
            WeaponsName->setEnabled(false);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   551
            WeaponsName->setCurrentIndex(WeaponsName->findText("Default"));
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   552
        }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   553
        else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   554
        {
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   555
            WeaponsName->setEnabled(true);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   556
            int num = WeaponsName->findText(weapons);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   557
            if (num != -1)
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   558
                WeaponsName->setCurrentIndex(num);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   559
            else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   560
                WeaponsName->setCurrentIndex(WeaponsName->findText("Default"));
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
        }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   562
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   563
        if (scheme != "locked" && weapons != "locked")
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   564
            bindEntries->setEnabled(true);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   565
        else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   566
            bindEntries->setEnabled(false);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   567
    }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   568
    else
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   569
    {
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   570
        GameSchemes->setEnabled(true);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   571
        WeaponsName->setEnabled(true);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   572
        bindEntries->setEnabled(true);
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   573
    }
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   574
    emit paramChanged("SCRIPT", QStringList(Scripts->itemText(index)));
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   575
}
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4511
diff changeset
   576
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   577
void GameCFGWidget::mapgenChanged(MapGenerator m)
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   578
{
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   579
    emit paramChanged("MAPGEN", QStringList(QString::number(m)));
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   580
}
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   581
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   582
void GameCFGWidget::maze_sizeChanged(int s)
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   583
{
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   584
    emit paramChanged("MAZE_SIZE", QStringList(QString::number(s)));
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   585
}
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   586
2080
6d29370dc0dd This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents: 2031
diff changeset
   587
void GameCFGWidget::resendSchemeData()
6d29370dc0dd This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents: 2031
diff changeset
   588
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   589
    schemeChanged(GameSchemes->currentIndex());
2080
6d29370dc0dd This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents: 2031
diff changeset
   590
}
4525
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4513
diff changeset
   591
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4513
diff changeset
   592
void GameCFGWidget::onDrawnMapChanged(const QByteArray & data)
0a81be113e21 Try to send drawn map data to net server
unc0rr
parents: 4513
diff changeset
   593
{
4527
d5d563a0ca54 Compess at highest ratio
unc0rr
parents: 4526
diff changeset
   594
    emit paramChanged("DRAWNMAP", QStringList(qCompress(data, 9).toBase64()));
4526
38afca1e4248 Debug messages
unc0rr
parents: 4525
diff changeset
   595
}