QTfrontend/gamecfgwidget.cpp
author Henek
Mon, 22 Nov 2010 00:34:53 +0100
changeset 4410 f9e38ce1e813
parent 4396 3cfd2e15464a
child 4416 29d2d1548387
permissions -rw-r--r--
a Henek-koda production: nicer game config screen, fixed scheme-weapon lock, added scheme editing to config page and some minor stuff
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
3236
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 3133
diff changeset
     3
 * Copyright (c) 2006-2010 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"
1517
27caa8c6e73a Store ammo info directly in combobox
unc0rr
parents: 1479
diff changeset
    31
#include "hwconsts.h"
1884
40e59e9f82ce Continue work on new schemes implementation
unc0rr
parents: 1878
diff changeset
    32
#include "ammoSchemeModel.h"
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    33
349
5b37d6a39829 disable widgets if we are slave network client
displacer
parents: 326
diff changeset
    34
GameCFGWidget::GameCFGWidget(QWidget* parent, bool externalControl) :
1217
d6d91eec00f2 Remake gamecfgwidget
unc0rr
parents: 1214
diff changeset
    35
  QGroupBox(parent), mainLayout(this)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    36
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    37
    mainLayout.setMargin(0);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    38
//  mainLayout.setSizeConstraint(QLayout::SetMinimumSize);
218
6e64db60222c Better-looking game config widget
unc0rr
parents: 184
diff changeset
    39
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    40
    pMapContainer = new HWMapContainer(this);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    41
    mainLayout.addWidget(pMapContainer, 0, 0);
218
6e64db60222c Better-looking game config widget
unc0rr
parents: 184
diff changeset
    42
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    43
    IconedGroupBox *GBoxOptions = new IconedGroupBox(this);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    44
    GBoxOptions->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    45
    mainLayout.addWidget(GBoxOptions);
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
    QGridLayout *GBoxOptionsLayout = new QGridLayout(GBoxOptions);
1884
40e59e9f82ce Continue work on new schemes implementation
unc0rr
parents: 1878
diff changeset
    48
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    49
    GameSchemes = new QComboBox(GBoxOptions);
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
    50
    GBoxOptionsLayout->addWidget(GameSchemes, 0, 2);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    51
    connect(GameSchemes, SIGNAL(currentIndexChanged(int)), this, SLOT(schemeChanged(int)));
1885
75489216b5b0 Continue work on new schemes
unc0rr
parents: 1884
diff changeset
    52
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    53
    GBoxOptionsLayout->addWidget(new QLabel(QLabel::tr("Game scheme"), GBoxOptions), 0, 0);
1979
912e450d4db2 - Add gameServer to build system
unc0rr
parents: 1921
diff changeset
    54
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    55
    QPixmap pmEdit(":/res/edit.png");
3743
234ce4da76d4 Flag for AI survival mode
nemo
parents: 3697
diff changeset
    56
    
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    57
    QPushButton * goToSchemePage = new QPushButton(GBoxOptions);
2888
69d04079fb46 Graphic for dead mines
nemo
parents: 2882
diff changeset
    58
    goToSchemePage->setToolTip(tr("Edit schemes"));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    59
    goToSchemePage->setIconSize(pmEdit.size());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    60
    goToSchemePage->setIcon(pmEdit);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    61
    goToSchemePage->setMaximumWidth(pmEdit.width() + 6);
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
    62
    GBoxOptionsLayout->addWidget(goToSchemePage, 0, 3);
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
    63
    connect(goToSchemePage, SIGNAL(clicked()), this, SLOT(jumpToSchemes()));
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
    64
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    65
    GBoxOptionsLayout->addWidget(new QLabel(QLabel::tr("Weapons"), GBoxOptions), 1, 0);
311
b8905423f19f - Limit list of teams in game with 200 px
unc0rr
parents: 249
diff changeset
    66
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    67
    WeaponsName = new QComboBox(GBoxOptions);
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
    68
    GBoxOptionsLayout->addWidget(WeaponsName, 1, 2);
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
    69
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    70
    connect(WeaponsName, SIGNAL(currentIndexChanged(int)), this, SLOT(ammoChanged(int)));
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
    71
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    72
    QPushButton * goToWeaponPage = new QPushButton(GBoxOptions);
2888
69d04079fb46 Graphic for dead mines
nemo
parents: 2882
diff changeset
    73
    goToWeaponPage->setToolTip(tr("Edit weapons"));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    74
    goToWeaponPage->setIconSize(pmEdit.size());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    75
    goToWeaponPage->setIcon(pmEdit);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    76
    goToWeaponPage->setMaximumWidth(pmEdit.width() + 6);
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
    77
    GBoxOptionsLayout->addWidget(goToWeaponPage, 1, 3);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    78
    connect(goToWeaponPage, SIGNAL(clicked()), this, SLOT(jumpToWeapons()));
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 452
diff changeset
    79
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
    80
    //GBoxOptionsLayout->addWidget(new QLabel(QLabel::tr("Bind schemes with weapons"), GBoxOptions), 2, 0);
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
    81
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
    82
    bindEntries = new QCheckBox(GBoxOptions);
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
    83
    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
    84
    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
    85
    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
    86
    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
    87
                                "QCheckBox::indicator:unchecked { image: url(\":/res/unlock.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
    88
    GBoxOptionsLayout->addWidget(bindEntries, 0, 1, 0, 1, Qt::AlignVCenter);
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
    89
    //GBoxOptionsLayout->addWidget(bindEntries, 2, 2);
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
    90
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    91
    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
    92
    connect(pMapContainer, SIGNAL(mapChanged(const QString &)), this, SLOT(mapChanged(const QString &)));
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
    93
    connect(pMapContainer, SIGNAL(mapgenChanged(MapGenerator)), this, SLOT(mapgenChanged(MapGenerator)));
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
    94
    connect(pMapContainer, SIGNAL(maze_sizeChanged(int)), this, SLOT(maze_sizeChanged(int)));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
    95
    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
    96
    connect(pMapContainer, SIGNAL(newTemplateFilter(int)), this, SLOT(templateFilterChanged(int)));
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    97
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    98
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
    99
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
   100
{
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
   101
    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
   102
}
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
   103
2009
91f461c218ab TheXception's patch:
unc0rr
parents: 1979
diff changeset
   104
void GameCFGWidget::jumpToWeapons()
91f461c218ab TheXception's patch:
unc0rr
parents: 1979
diff changeset
   105
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   106
    emit goToWeapons(WeaponsName->currentText());
2009
91f461c218ab TheXception's patch:
unc0rr
parents: 1979
diff changeset
   107
}
91f461c218ab TheXception's patch:
unc0rr
parents: 1979
diff changeset
   108
1890
de5cfe3beb22 Scheme options work now
unc0rr
parents: 1887
diff changeset
   109
QVariant GameCFGWidget::schemeData(int column) const
de5cfe3beb22 Scheme options work now
unc0rr
parents: 1887
diff changeset
   110
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   111
    return GameSchemes->model()->data(GameSchemes->model()->index(GameSchemes->currentIndex(), column));
1890
de5cfe3beb22 Scheme options work now
unc0rr
parents: 1887
diff changeset
   112
}
de5cfe3beb22 Scheme options work now
unc0rr
parents: 1887
diff changeset
   113
318
46a43b02bbb3 Game config commands are generated by GameCFGWidget
unc0rr
parents: 312
diff changeset
   114
quint32 GameCFGWidget::getGameFlags() const
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   115
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   116
    quint32 result = 0;
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1218
diff changeset
   117
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   118
    if (schemeData(1).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   119
        result |= 0x00001000;       // fort
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   120
    if (schemeData(2).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   121
        result |= 0x00000010;       // divide teams
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   122
    if (schemeData(3).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   123
        result |= 0x00000004;       // solid land
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   124
    if (schemeData(4).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   125
        result |= 0x00000008;       // border
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   126
    if (schemeData(5).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   127
        result |= 0x00000020;       // low gravity
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   128
    if (schemeData(6).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   129
        result |= 0x00000040;       // laser sight
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   130
    if (schemeData(7).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   131
        result |= 0x00000080;       // invulnerable
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   132
    if (schemeData(8).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   133
        result |= 0x00000100;       // mines
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   134
    if (schemeData(9).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   135
        result |= 0x00000200;       // vampirism
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   136
    if (schemeData(10).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   137
        result |= 0x00000400;       // karma
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   138
    if (schemeData(11).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   139
        result |= 0x00000800;       // artillery
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   140
    if (schemeData(12).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   141
        result |= 0x00002000;       // random
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   142
    if (schemeData(13).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   143
        result |= 0x00004000;       // king
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   144
    if (schemeData(14).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   145
        result |= 0x00008000;       // place hogs
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   146
    if (schemeData(15).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   147
        result |= 0x00010000;       // shared ammo
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   148
    if (schemeData(16).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   149
        result |= 0x00020000;       // disable girders
3287
4f7b57ed18b6 New game scheme option to turn off land objects
nemo
parents: 3236
diff changeset
   150
    if (schemeData(17).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   151
        result |= 0x00040000;       // disable land obj
3743
234ce4da76d4 Flag for AI survival mode
nemo
parents: 3697
diff changeset
   152
    if (schemeData(18).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   153
        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
   154
    if (schemeData(19).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   155
        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
   156
    if (schemeData(20).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   157
        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
   158
    if (schemeData(21).toBool())
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 4000
diff changeset
   159
        result |= 0x00400000;       // per hog ammo
4250
d83b53997e0b exposing Henek's no wind flag
koda
parents: 4248
diff changeset
   160
    if (schemeData(22).toBool())
d83b53997e0b exposing Henek's no wind flag
koda
parents: 4248
diff changeset
   161
        result |= 0x00800000;       // no wind
4303
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   162
    if (schemeData(23).toBool())
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   163
        result |= 0x01000000;       // more wind
1427
b510f7a74ef6 Add 'Divide teams' option to frontend
unc0rr
parents: 1218
diff changeset
   164
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   165
    return result;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   166
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   167
312
c36d0b34ac3d Use new parameters, small protocol change
unc0rr
parents: 311
diff changeset
   168
quint32 GameCFGWidget::getInitHealth() const
c36d0b34ac3d Use new parameters, small protocol change
unc0rr
parents: 311
diff changeset
   169
{
4303
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   170
    return schemeData(26).toInt();
312
c36d0b34ac3d Use new parameters, small protocol change
unc0rr
parents: 311
diff changeset
   171
}
c36d0b34ac3d Use new parameters, small protocol change
unc0rr
parents: 311
diff changeset
   172
318
46a43b02bbb3 Game config commands are generated by GameCFGWidget
unc0rr
parents: 312
diff changeset
   173
QStringList GameCFGWidget::getFullConfig() const
46a43b02bbb3 Game config commands are generated by GameCFGWidget
unc0rr
parents: 312
diff changeset
   174
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   175
    QStringList sl;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   176
    sl.append("eseed " + pMapContainer->getCurrentSeed());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   177
    sl.append(QString("e$gmflags %1").arg(getGameFlags()));
4303
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   178
    sl.append(QString("e$damagepct %1").arg(schemeData(24).toInt()));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   179
    sl.append(QString("e$turntime %1").arg(schemeData(25).toInt() * 1000));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   180
    sl.append(QString("e$sd_turns %1").arg(schemeData(27).toInt()));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   181
    sl.append(QString("e$casefreq %1").arg(schemeData(28).toInt()));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   182
    sl.append(QString("e$minestime %1").arg(schemeData(29).toInt()));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   183
    sl.append(QString("e$minesnum %1").arg(schemeData(30).toInt()));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   184
    sl.append(QString("e$minedudpct %1").arg(schemeData(31).toInt()));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   185
    sl.append(QString("e$explosives %1").arg(schemeData(32).toInt()));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   186
    sl.append(QString("e$healthprob %1").arg(schemeData(33).toInt()));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   187
    sl.append(QString("e$hcaseamount %1").arg(schemeData(34).toInt()));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   188
    sl.append(QString("e$waterrise %1").arg(schemeData(35).toInt()));
9057d4d85830 check in frontend flag for more wind mode
nemo
parents: 4269
diff changeset
   189
    sl.append(QString("e$healthdec %1").arg(schemeData(36).toInt()));
4396
3cfd2e15464a After repeated requests, variable length rope. Intended for the infinite rope folks, but values less than 100 make rope more interesting IMO.
nemo
parents: 4337
diff changeset
   190
    sl.append(QString("e$ropepct %1").arg(schemeData(37).toInt()));
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   191
    sl.append(QString("e$template_filter %1").arg(pMapContainer->getTemplateFilter()));
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   192
    sl.append(QString("e$mapgen %1").arg(pMapContainer->get_mapgen()));
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   193
    sl.append(QString("e$maze_size %1").arg(pMapContainer->get_maze_size()));
1782
e7589e37a6d6 Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents: 1628
diff changeset
   194
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   195
    QString currentMap = pMapContainer->getCurrentMap();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   196
    if (currentMap.size() > 0)
2999
30c4d62cd0c3 Engine:
smxx
parents: 2948
diff changeset
   197
    {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   198
        sl.append("emap " + currentMap);
3008
e57cafce4227 Frontend:
smxx
parents: 2999
diff changeset
   199
        if(pMapContainer->getCurrentIsMission())
3919
76d5b32758d9 Engine/Frontend:
smaxx
parents: 3743
diff changeset
   200
            sl.append(QString("escript Maps/%1/map.lua")
2999
30c4d62cd0c3 Engine:
smxx
parents: 2948
diff changeset
   201
                .arg(currentMap));
30c4d62cd0c3 Engine:
smxx
parents: 2948
diff changeset
   202
    }
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   203
    sl.append("etheme " + pMapContainer->getCurrentTheme());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   204
    return sl;
318
46a43b02bbb3 Game config commands are generated by GameCFGWidget
unc0rr
parents: 312
diff changeset
   205
}
320
1ee7f087195a - HWMapContainer sets and stores the theme
unc0rr
parents: 318
diff changeset
   206
703
424297e3165a weapon names transmitted over network
displacer
parents: 697
diff changeset
   207
void GameCFGWidget::setNetAmmo(const QString& name, const QString& ammo)
697
44f167938201 pre-alpha network weapons selection
displacer
parents: 696
diff changeset
   208
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   209
    bool illegal = ammo.size() != cDefaultAmmoStore->size();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   210
    if (illegal)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   211
        QMessageBox::critical(this, tr("Error"), tr("Illegal ammo scheme"));
703
424297e3165a weapon names transmitted over network
displacer
parents: 697
diff changeset
   212
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   213
    int pos = WeaponsName->findText(name);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   214
    if ((pos == -1) || illegal) { // prevent from overriding schemes with bad ones
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   215
        WeaponsName->addItem(name, ammo);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   216
        WeaponsName->setCurrentIndex(WeaponsName->count() - 1);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   217
    } else {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   218
        WeaponsName->setItemData(pos, ammo);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   219
        WeaponsName->setCurrentIndex(pos);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   220
    }
1530
3b8d723661b2 Implement Solid Land checkbox
unc0rr
parents: 1517
diff changeset
   221
}
1531
f404233b6d9b - Less crossclass dependancies
unc0rr
parents: 1530
diff changeset
   222
1875
189370d394db - Send initial room config
unc0rr
parents: 1874
diff changeset
   223
void GameCFGWidget::fullNetConfig()
189370d394db - Send initial room config
unc0rr
parents: 1874
diff changeset
   224
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   225
    ammoChanged(WeaponsName->currentIndex());
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
   226
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   227
    seedChanged(pMapContainer->getCurrentSeed());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   228
    templateFilterChanged(pMapContainer->getTemplateFilter());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   229
    themeChanged(pMapContainer->getCurrentTheme());
1875
189370d394db - Send initial room config
unc0rr
parents: 1874
diff changeset
   230
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   231
    schemeChanged(GameSchemes->currentIndex());
1921
2a09f7f786a0 - User from localhost is server admin
unc0rr
parents: 1898
diff changeset
   232
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   233
    mapgenChanged(pMapContainer->get_mapgen());
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   234
    maze_sizeChanged(pMapContainer->get_maze_size());
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   235
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   236
    // map must be the last
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   237
    QString map = pMapContainer->getCurrentMap();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   238
    if (map.size())
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   239
        mapChanged(map);
1875
189370d394db - Send initial room config
unc0rr
parents: 1874
diff changeset
   240
}
189370d394db - Send initial room config
unc0rr
parents: 1874
diff changeset
   241
1873
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1802
diff changeset
   242
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
   243
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   244
    if (slValue.size() == 1)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   245
    {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   246
        QString value = slValue[0];
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   247
        if (param == "MAP") {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   248
            pMapContainer->setMap(value);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   249
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   250
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   251
        if (param == "SEED") {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   252
            pMapContainer->setSeed(value);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   253
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   254
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   255
        if (param == "THEME") {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   256
            pMapContainer->setTheme(value);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   257
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   258
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   259
        if (param == "TEMPLATE") {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   260
            pMapContainer->setTemplateFilter(value.toUInt());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   261
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   262
        }
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   263
        if (param == "MAPGEN") {
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   264
            pMapContainer->setMapgen((MapGenerator)value.toUInt());
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   265
            return;
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   266
        }
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   267
        if (param == "MAZE_SIZE") {
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   268
            pMapContainer->setMaze_size(value.toUInt());
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   269
            return;
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   270
        }
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   271
    }
1873
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1802
diff changeset
   272
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   273
    if (slValue.size() == 2)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   274
    {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   275
        if (param == "AMMO") {
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   276
            setNetAmmo(slValue[0], slValue[1]);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   277
            return;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   278
        }
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   279
    }
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
   280
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   281
    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
   282
}
815a3ff1fe4b Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents: 1802
diff changeset
   283
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   284
void GameCFGWidget::ammoChanged(int index)
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   285
{
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
   286
    if (index >= 0) {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   287
        emit paramChanged(
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   288
            "AMMO",
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   289
            QStringList() << WeaponsName->itemText(index) << WeaponsName->itemData(index).toString()
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   290
        );
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
   291
    }
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   292
}
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   293
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   294
void GameCFGWidget::mapChanged(const QString & value)
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   295
{
3010
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   296
    if(pMapContainer->getCurrentIsMission())
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   297
    {
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   298
        GameSchemes->setEnabled(false);
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   299
        WeaponsName->setEnabled(false);
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
   300
        bindEntries->setEnabled(false);
3010
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   301
        GameSchemes->setCurrentIndex(GameSchemes->findText("Default"));
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   302
        WeaponsName->setCurrentIndex(WeaponsName->findText("Default"));
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   303
    }
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   304
    else
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   305
    {
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   306
        GameSchemes->setEnabled(true);
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   307
        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
   308
        bindEntries->setEnabled(true);
3010
3aa3675d97eb Frontend:
smxx
parents: 3009
diff changeset
   309
    }
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   310
    emit paramChanged("MAP", QStringList(value));
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   311
}
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   312
1876
b13dd4e6e98e Pass template filter
unc0rr
parents: 1875
diff changeset
   313
void GameCFGWidget::templateFilterChanged(int value)
b13dd4e6e98e Pass template filter
unc0rr
parents: 1875
diff changeset
   314
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   315
    emit paramChanged("TEMPLATE", QStringList(QString::number(value)));
1876
b13dd4e6e98e Pass template filter
unc0rr
parents: 1875
diff changeset
   316
}
b13dd4e6e98e Pass template filter
unc0rr
parents: 1875
diff changeset
   317
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   318
void GameCFGWidget::seedChanged(const QString & value)
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   319
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   320
    emit paramChanged("SEED", QStringList(value));
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   321
}
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   322
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   323
void GameCFGWidget::themeChanged(const QString & value)
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   324
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   325
    emit paramChanged("THEME", QStringList(value));
1874
1b145e099b75 - Fix a bug in map widget
unc0rr
parents: 1873
diff changeset
   326
}
1898
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1895
diff changeset
   327
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
   328
void GameCFGWidget::schemeChanged(int index)
1898
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1895
diff changeset
   329
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   330
    QStringList sl;
1898
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1895
diff changeset
   331
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   332
    int size = GameSchemes->model()->columnCount();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   333
    for(int i = 0; i < size; ++i)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   334
        sl << schemeData(i).toString();
2377
f3fab2b09e0c And in frontend
nemo
parents: 2080
diff changeset
   335
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   336
    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
   337
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
   338
    if (bindEntries->isChecked() == true) {
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
   339
        QString schemeName = GameSchemes->itemText(index);
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
   340
        for (int i = 0; i < WeaponsName->count(); i++) {
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
   341
             QString weapName = WeaponsName->itemText(i);
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
   342
             int res = QString::compare(weapName, schemeName, Qt::CaseSensitive);
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
   343
             if (0 == res) {
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
   344
                 WeaponsName->setCurrentIndex(i);
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
   345
                 emit ammoChanged(i);
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
   346
                 break;
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
   347
             }
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
   348
        }
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
   349
    }
1898
f0ab0c77946d Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents: 1895
diff changeset
   350
}
2080
6d29370dc0dd This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents: 2031
diff changeset
   351
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   352
void GameCFGWidget::mapgenChanged(MapGenerator m)
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   353
{
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   354
    emit paramChanged("MAPGEN", QStringList(QString::number(m)));
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   355
}
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   356
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   357
void GameCFGWidget::maze_sizeChanged(int s)
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   358
{
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   359
    emit paramChanged("MAZE_SIZE", QStringList(QString::number(s)));
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   360
}
1ab5f18f4df8 prg's maze generator
nemo
parents: 3044
diff changeset
   361
2080
6d29370dc0dd This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents: 2031
diff changeset
   362
void GameCFGWidget::resendSchemeData()
6d29370dc0dd This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents: 2031
diff changeset
   363
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2915
diff changeset
   364
    schemeChanged(GameSchemes->currentIndex());
2080
6d29370dc0dd This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents: 2031
diff changeset
   365
}