author | nemo |
Wed, 05 Dec 2018 09:50:25 -0500 | |
branch | 0.9.25 |
changeset 14368 | c2a3d15df7d3 |
parent 13264 | ad6c8069fe1a |
child 14513 | 5230c063214a |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
184 | 17 |
*/ |
18 |
||
19 |
#include <QResizeEvent> |
|
218 | 20 |
#include <QGroupBox> |
311 | 21 |
#include <QCheckBox> |
22 |
#include <QGridLayout> |
|
23 |
#include <QSpinBox> |
|
24 |
#include <QLabel> |
|
1517 | 25 |
#include <QMessageBox> |
1884 | 26 |
#include <QTableView> |
8430
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
27 |
#include <QScrollBar> |
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
28 |
#include <QTabWidget> |
1885 | 29 |
#include <QPushButton> |
8377 | 30 |
#include <QDebug> |
31 |
#include <QList> |
|
1217 | 32 |
|
184 | 33 |
#include "gamecfgwidget.h" |
1217 | 34 |
#include "igbox.h" |
6930 | 35 |
#include "DataManager.h" |
1517 | 36 |
#include "hwconsts.h" |
13197
0bc5f618ca7c
Rename the misleadingly-named AmmoSchemeModel to GameSchemeModel
Wuzzy <Wuzzy2@mail.ru>
parents:
12900
diff
changeset
|
37 |
#include "gameSchemeModel.h" |
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
38 |
#include "proto.h" |
7258 | 39 |
#include "GameStyleModel.h" |
8377 | 40 |
#include "themeprompt.h" |
184 | 41 |
|
11757
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11674
diff
changeset
|
42 |
GameCFGWidget::GameCFGWidget(QWidget* parent, bool randomWithoutDLC) : |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
43 |
QGroupBox(parent) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
44 |
, mainLayout(this) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
45 |
, seedRegexp("\\{[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\\}") |
184 | 46 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
47 |
mainLayout.setMargin(0); |
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
48 |
setMinimumHeight(310); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
49 |
setMaximumHeight(447); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
50 |
setMinimumWidth(470); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
51 |
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
8467 | 52 |
m_master = true; |
218 | 53 |
|
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
54 |
// Easy containers for the map/game options in either stacked or tabbed mode |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
55 |
|
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
56 |
mapContainerFree = new QWidget(); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
57 |
mapContainerTabbed = new QWidget(); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
58 |
optionsContainerFree = new QWidget(); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
59 |
optionsContainerTabbed = new QWidget(); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
60 |
tabbed = false; |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
61 |
|
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
62 |
// Container for when in tabbed mode |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
63 |
|
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
64 |
tabs = new QTabWidget(this); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
65 |
tabs->setFixedWidth(470); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
66 |
tabs->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
67 |
tabs->addTab(mapContainerTabbed, tr("Map")); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
68 |
tabs->addTab(optionsContainerTabbed, tr("Game options")); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
69 |
tabs->setObjectName("gameCfgWidgetTabs"); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
70 |
mainLayout.addWidget(tabs, 1); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
71 |
tabs->setVisible(false); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
72 |
|
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
73 |
// Container for when in stacked mode |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
74 |
|
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
75 |
StackContainer = new QWidget(); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
76 |
StackContainer->setObjectName("gameStackContainer"); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
77 |
mainLayout.addWidget(StackContainer, 1); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
78 |
QVBoxLayout * stackLayout = new QVBoxLayout(StackContainer); |
218 | 79 |
|
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
80 |
// Map options |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
81 |
|
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
82 |
pMapContainer = new HWMapContainer(mapContainerFree); |
11757
6874644a2d00
in non-local games, don't include DLC-themes/maps/missions during random selection. thanks to unC0Rr for helping me realize that I was stupid in a different way than I thought :P
sheepluva
parents:
11674
diff
changeset
|
83 |
pMapContainer->setRandomWithoutDLC(randomWithoutDLC); |
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
84 |
stackLayout->addWidget(mapContainerFree, 0, Qt::AlignHCenter); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
85 |
pMapContainer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
86 |
pMapContainer->setFixedSize(width() - 14, 278); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
87 |
mapContainerFree->setFixedSize(pMapContainer->width(), pMapContainer->height()); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
88 |
|
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
89 |
// Horizontal divider |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
90 |
|
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
91 |
QFrame * divider = new QFrame(); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
92 |
divider->setFrameShape(QFrame::HLine); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
93 |
divider->setFrameShadow(QFrame::Plain); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
94 |
stackLayout->addWidget(divider, 0, Qt::AlignBottom); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
95 |
//stackLayout->setRowMinimumHeight(1, 10); |
218 | 96 |
|
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
97 |
// Game options |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
98 |
|
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
99 |
optionsContainerTabbed->setContentsMargins(0, 0, 0, 0); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
100 |
optionsContainerFree->setFixedSize(width() - 14, 140); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
101 |
stackLayout->addWidget(optionsContainerFree, 0, Qt::AlignHCenter); |
1884 | 102 |
|
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
103 |
OptionsInnerContainer = new QWidget(optionsContainerFree); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
104 |
m_childWidgets << OptionsInnerContainer; |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
105 |
OptionsInnerContainer->setFixedSize(optionsContainerFree->width(), optionsContainerFree->height()); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
106 |
OptionsInnerContainer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
107 |
GBoxOptionsLayout = new QGridLayout(OptionsInnerContainer); |
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
|
108 |
|
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
109 |
lblScript = new QLabel(QLabel::tr("Style"), this); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
110 |
GBoxOptionsLayout->addWidget(lblScript, 1, 0); |
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
111 |
|
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
112 |
Scripts = new QComboBox(this); |
11674
d59b6f289e30
Increase size of many drop-down lists
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
113 |
Scripts->setMaxVisibleItems(30); |
5468 | 114 |
GBoxOptionsLayout->addWidget(Scripts, 1, 1); |
6958 | 115 |
Scripts->setModel(DataManager::instance().gameStyleModel()); |
6983
ede55af89e78
roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps
sheepluva
parents:
6960
diff
changeset
|
116 |
m_curScript = Scripts->currentText(); |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
117 |
|
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
118 |
ScriptsLabel = new QLabel(this); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
119 |
ScriptsLabel->setHidden(true); |
13264
ad6c8069fe1a
Set plain text mode for gamecfg labels (scheme, style)
Wuzzy <Wuzzy2@mail.ru>
parents:
13263
diff
changeset
|
120 |
ScriptsLabel->setTextFormat(Qt::PlainText); |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
121 |
GBoxOptionsLayout->addWidget(ScriptsLabel, 1, 1); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
122 |
|
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
|
123 |
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
|
124 |
|
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
125 |
QWidget *SchemeWidget = new QWidget(this); |
5468 | 126 |
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
|
127 |
|
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
128 |
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
|
129 |
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
|
130 |
|
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
131 |
GameSchemes = new QComboBox(SchemeWidget); |
11674
d59b6f289e30
Increase size of many drop-down lists
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
132 |
GameSchemes->setMaxVisibleItems(30); |
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 |
SchemeWidgetLayout->addWidget(GameSchemes, 0, 2); |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
134 |
|
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
135 |
GameSchemesLabel = new QLabel(SchemeWidget); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
136 |
GameSchemesLabel->setHidden(true); |
13264
ad6c8069fe1a
Set plain text mode for gamecfg labels (scheme, style)
Wuzzy <Wuzzy2@mail.ru>
parents:
13263
diff
changeset
|
137 |
GameSchemesLabel->setTextFormat(Qt::PlainText); |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
138 |
SchemeWidgetLayout->addWidget(GameSchemesLabel, 0, 2); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
139 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
140 |
connect(GameSchemes, SIGNAL(currentIndexChanged(int)), this, SLOT(schemeChanged(int))); |
1885 | 141 |
|
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
142 |
lblScheme = new QLabel(QLabel::tr("Scheme"), SchemeWidget); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
143 |
SchemeWidgetLayout->addWidget(lblScheme, 0, 0); |
1979 | 144 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
145 |
QPixmap pmEdit(":/res/edit.png"); |
13228
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13197
diff
changeset
|
146 |
QIcon iconEdit = QIcon(pmEdit); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
147 |
|
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
148 |
goToSchemePage = new QPushButton(SchemeWidget); |
8382 | 149 |
goToSchemePage->setWhatsThis(tr("Edit schemes")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
150 |
goToSchemePage->setIconSize(pmEdit.size()); |
13228
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13197
diff
changeset
|
151 |
goToSchemePage->setIcon(iconEdit); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
152 |
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
|
153 |
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
|
154 |
connect(goToSchemePage, SIGNAL(clicked()), this, SLOT(jumpToSchemes())); |
2377 | 155 |
|
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
156 |
lblWeapons = new QLabel(QLabel::tr("Weapons"), SchemeWidget); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
157 |
SchemeWidgetLayout->addWidget(lblWeapons, 1, 0); |
311 | 158 |
|
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
|
159 |
WeaponsName = new QComboBox(SchemeWidget); |
11674
d59b6f289e30
Increase size of many drop-down lists
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
160 |
WeaponsName->setMaxVisibleItems(30); |
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
|
161 |
SchemeWidgetLayout->addWidget(WeaponsName, 1, 2); |
2377 | 162 |
|
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
163 |
WeaponsNameLabel = new QLabel(SchemeWidget); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
164 |
WeaponsNameLabel->setHidden(true); |
13264
ad6c8069fe1a
Set plain text mode for gamecfg labels (scheme, style)
Wuzzy <Wuzzy2@mail.ru>
parents:
13263
diff
changeset
|
165 |
WeaponsNameLabel->setTextFormat(Qt::PlainText); |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
166 |
SchemeWidgetLayout->addWidget(WeaponsNameLabel, 1, 2); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
167 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
168 |
connect(WeaponsName, SIGNAL(currentIndexChanged(int)), this, SLOT(ammoChanged(int))); |
2377 | 169 |
|
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
170 |
goToWeaponPage = new QPushButton(SchemeWidget); |
8382 | 171 |
goToWeaponPage->setWhatsThis(tr("Edit weapons")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
172 |
goToWeaponPage->setIconSize(pmEdit.size()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
173 |
goToWeaponPage->setIcon(pmEdit); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
174 |
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
|
175 |
SchemeWidgetLayout->addWidget(goToWeaponPage, 1, 3); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
176 |
connect(goToWeaponPage, SIGNAL(clicked()), this, SLOT(jumpToWeapons())); |
486 | 177 |
|
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
|
178 |
bindEntries = new QCheckBox(SchemeWidget); |
8382 | 179 |
bindEntries->setWhatsThis(tr("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
|
180 |
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
|
181 |
bindEntries->setMaximumWidth(42); |
13228
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13197
diff
changeset
|
182 |
bindEntries->setStyleSheet( "QCheckBox::indicator:checked:enabled { image: url(\":/res/lock.png\"); }" |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13197
diff
changeset
|
183 |
"QCheckBox::indicator:checked:disabled { image: url(\":/res/lock_disabled.png\"); }" |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13197
diff
changeset
|
184 |
"QCheckBox::indicator:unchecked:enabled { image: url(\":/res/unlock.png\"); }" |
d23742ccf92b
Frontend: Properly “gray out” most disabled widgets (a lot of them weren't)
Wuzzy <Wuzzy2@mail.ru>
parents:
13197
diff
changeset
|
185 |
"QCheckBox::indicator:unchecked:disabled { image: url(\":/res/unlock_disabled.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
|
186 |
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
|
187 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
188 |
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
|
189 |
connect(pMapContainer, SIGNAL(mapChanged(const QString &)), this, SLOT(mapChanged(const QString &))); |
3133 | 190 |
connect(pMapContainer, SIGNAL(mapgenChanged(MapGenerator)), this, SLOT(mapgenChanged(MapGenerator))); |
4941 | 191 |
connect(pMapContainer, SIGNAL(mazeSizeChanged(int)), this, SLOT(maze_sizeChanged(int))); |
10480 | 192 |
connect(pMapContainer, SIGNAL(mapFeatureSizeChanged(int)), this, SLOT(slMapFeatureSizeChanged(int))); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
193 |
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
|
194 |
connect(pMapContainer, SIGNAL(newTemplateFilter(int)), this, SLOT(templateFilterChanged(int))); |
4511 | 195 |
connect(pMapContainer, SIGNAL(drawMapRequested()), this, SIGNAL(goToDrawMap())); |
4525 | 196 |
connect(pMapContainer, SIGNAL(drawnMapChanged(const QByteArray &)), this, SLOT(onDrawnMapChanged(const QByteArray &))); |
6960
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
197 |
|
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
198 |
connect(&DataManager::instance(), SIGNAL(updated()), this, SLOT(updateModelViews())); |
184 | 199 |
} |
200 |
||
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
201 |
void GameCFGWidget::setTabbed(bool tabbed) |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
202 |
{ |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
203 |
if (tabbed && !this->tabbed) |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
204 |
{ // Make tabbed |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
205 |
tabs->setCurrentIndex(0); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
206 |
StackContainer->setVisible(false); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
207 |
tabs->setVisible(true); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
208 |
pMapContainer->setParent(mapContainerTabbed); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
209 |
OptionsInnerContainer->setParent(optionsContainerTabbed); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
210 |
pMapContainer->setVisible(true); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
211 |
setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
212 |
this->tabbed = true; |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
213 |
} |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
214 |
else if (!tabbed && this->tabbed) |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
215 |
{ // Make stacked |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
216 |
pMapContainer->setParent(mapContainerFree); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
217 |
OptionsInnerContainer->setParent(optionsContainerFree); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
218 |
tabs->setVisible(false); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
219 |
StackContainer->setVisible(true); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
220 |
pMapContainer->setVisible(true); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
221 |
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
222 |
this->tabbed = false; |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
223 |
} |
8430
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
224 |
|
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
225 |
// Restore scrollbar palettes, since Qt seems to forget them easily when switching parents |
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
226 |
QList<QScrollBar *> allSBars = findChildren<QScrollBar *>(); |
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
227 |
QPalette pal = palette(); |
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
228 |
pal.setColor(QPalette::WindowText, QColor(0xff, 0xcc, 0x00)); |
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
229 |
pal.setColor(QPalette::Button, QColor(0x00, 0x35, 0x1d)); |
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
230 |
pal.setColor(QPalette::Base, QColor(0x00, 0x35, 0x1d)); |
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
231 |
pal.setColor(QPalette::Window, QColor(0x00, 0x00, 0x00)); |
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
232 |
|
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
233 |
for (int i = 0; i < allSBars.size(); ++i) |
5a5c34a75e1a
Aesthetic improvements to chat widget. Also fixed the ghosting issue in a few areas by using repaint().
dag10
parents:
8424
diff
changeset
|
234 |
allSBars.at(i)->setPalette(pal); |
8424
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
235 |
} |
225ede46e3dc
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible.
dag10
parents:
8382
diff
changeset
|
236 |
|
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
|
237 |
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
|
238 |
{ |
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
|
239 |
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
|
240 |
} |
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
|
241 |
|
2009 | 242 |
void GameCFGWidget::jumpToWeapons() |
243 |
{ |
|
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
|
244 |
emit goToWeapons(WeaponsName->currentIndex()); |
2009 | 245 |
} |
246 |
||
1890 | 247 |
QVariant GameCFGWidget::schemeData(int column) const |
248 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
249 |
return GameSchemes->model()->data(GameSchemes->model()->index(GameSchemes->currentIndex(), column)); |
1890 | 250 |
} |
251 |
||
318 | 252 |
quint32 GameCFGWidget::getGameFlags() const |
184 | 253 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
254 |
quint32 result = 0; |
1427 | 255 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
256 |
if (schemeData(1).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
257 |
result |= 0x00001000; // fort |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
258 |
if (schemeData(2).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
259 |
result |= 0x00000010; // divide teams |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
260 |
if (schemeData(3).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
261 |
result |= 0x00000004; // solid land |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
262 |
if (schemeData(4).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
263 |
result |= 0x00000008; // border |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
264 |
if (schemeData(5).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
265 |
result |= 0x00000020; // low gravity |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
266 |
if (schemeData(6).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
267 |
result |= 0x00000040; // laser sight |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
268 |
if (schemeData(7).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
269 |
result |= 0x00000080; // invulnerable |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
270 |
if (schemeData(8).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
271 |
result |= 0x00000100; // mines |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
272 |
if (schemeData(9).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
273 |
result |= 0x00000200; // vampirism |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
274 |
if (schemeData(10).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
275 |
result |= 0x00000400; // karma |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
276 |
if (schemeData(11).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
277 |
result |= 0x00000800; // artillery |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
278 |
if (schemeData(12).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
279 |
result |= 0x00002000; // random |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
280 |
if (schemeData(13).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
281 |
result |= 0x00004000; // king |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
282 |
if (schemeData(14).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
283 |
result |= 0x00008000; // place hogs |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
284 |
if (schemeData(15).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
285 |
result |= 0x00010000; // shared ammo |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
286 |
if (schemeData(16).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
287 |
result |= 0x00020000; // disable girders |
3287 | 288 |
if (schemeData(17).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
289 |
result |= 0x00040000; // disable land obj |
3743 | 290 |
if (schemeData(18).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
291 |
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
|
292 |
if (schemeData(19).toBool()) |
8434 | 293 |
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
|
294 |
if (schemeData(20).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
295 |
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
|
296 |
if (schemeData(21).toBool()) |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
4000
diff
changeset
|
297 |
result |= 0x00400000; // per hog ammo |
4250 | 298 |
if (schemeData(22).toBool()) |
299 |
result |= 0x00800000; // no wind |
|
4303 | 300 |
if (schemeData(23).toBool()) |
301 |
result |= 0x01000000; // more wind |
|
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
302 |
if (schemeData(24).toBool()) |
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
303 |
result |= 0x02000000; // tag team |
5717 | 304 |
if (schemeData(25).toBool()) |
8377 | 305 |
result |= 0x04000000; // bottom |
1427 | 306 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
307 |
return result; |
184 | 308 |
} |
309 |
||
312 | 310 |
quint32 GameCFGWidget::getInitHealth() const |
311 |
{ |
|
5717 | 312 |
return schemeData(28).toInt(); |
312 | 313 |
} |
314 |
||
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
315 |
QByteArray GameCFGWidget::getFullConfig() const |
318 | 316 |
{ |
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
317 |
QList<QByteArray> bcfg; |
4489 | 318 |
int mapgen = pMapContainer->get_mapgen(); |
7771 | 319 |
if (Scripts->currentIndex() > 0) |
320 |
{ |
|
321 |
bcfg << QString("escript Scripts/Multiplayer/%1.lua").arg(Scripts->itemData(Scripts->currentIndex(), GameStyleModel::ScriptRole).toString()).toUtf8(); |
|
322 |
} |
|
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
323 |
|
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
|
324 |
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
|
325 |
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
|
326 |
{ |
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
|
327 |
bcfg << QString("emap " + currentMap).toUtf8(); |
6088 | 328 |
|
329 |
// engine should figure it out on its own |
|
330 |
// if(pMapContainer->getCurrentIsMission()) |
|
331 |
// 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
|
332 |
} |
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
|
333 |
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
|
334 |
|
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
335 |
bcfg << QString("eseed " + pMapContainer->getCurrentSeed()).toUtf8(); |
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
336 |
bcfg << QString("e$gmflags %1").arg(getGameFlags()).toUtf8(); |
5717 | 337 |
bcfg << QString("e$damagepct %1").arg(schemeData(26).toInt()).toUtf8(); |
338 |
bcfg << QString("e$turntime %1").arg(schemeData(27).toInt() * 1000).toUtf8(); |
|
339 |
bcfg << QString("e$sd_turns %1").arg(schemeData(29).toInt()).toUtf8(); |
|
340 |
bcfg << QString("e$casefreq %1").arg(schemeData(30).toInt()).toUtf8(); |
|
341 |
bcfg << QString("e$minestime %1").arg(schemeData(31).toInt() * 1000).toUtf8(); |
|
342 |
bcfg << QString("e$minesnum %1").arg(schemeData(32).toInt()).toUtf8(); |
|
343 |
bcfg << QString("e$minedudpct %1").arg(schemeData(33).toInt()).toUtf8(); |
|
344 |
bcfg << QString("e$explosives %1").arg(schemeData(34).toInt()).toUtf8(); |
|
10822 | 345 |
bcfg << QString("e$airmines %1").arg(schemeData(35).toInt()).toUtf8(); |
346 |
bcfg << QString("e$healthprob %1").arg(schemeData(36).toInt()).toUtf8(); |
|
347 |
bcfg << QString("e$hcaseamount %1").arg(schemeData(37).toInt()).toUtf8(); |
|
348 |
bcfg << QString("e$waterrise %1").arg(schemeData(38).toInt()).toUtf8(); |
|
349 |
bcfg << QString("e$healthdec %1").arg(schemeData(39).toInt()).toUtf8(); |
|
350 |
bcfg << QString("e$ropepct %1").arg(schemeData(40).toInt()).toUtf8(); |
|
351 |
bcfg << QString("e$getawaytime %1").arg(schemeData(41).toInt()).toUtf8(); |
|
352 |
bcfg << QString("e$worldedge %1").arg(schemeData(42).toInt()).toUtf8(); |
|
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
353 |
bcfg << QString("e$template_filter %1").arg(pMapContainer->getTemplateFilter()).toUtf8(); |
10472
8d04cebedb16
Partially hook up feature size so horrorcat has something to test.
nemo
parents:
10399
diff
changeset
|
354 |
bcfg << QString("e$feature_size %1").arg(pMapContainer->getFeatureSize()).toUtf8(); |
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
355 |
bcfg << QString("e$mapgen %1").arg(mapgen).toUtf8(); |
10822 | 356 |
if(!schemeData(43).isNull()) |
357 |
bcfg << QString("e$scriptparam %1").arg(schemeData(43).toString()).toUtf8(); |
|
12813
d6c75b27db58
Fix frontend not sending script param if empty
Wuzzy <Wuzzy2@mail.ru>
parents:
12811
diff
changeset
|
358 |
else |
d6c75b27db58
Fix frontend not sending script param if empty
Wuzzy <Wuzzy2@mail.ru>
parents:
12811
diff
changeset
|
359 |
bcfg << QString("e$scriptparam ").toUtf8(); |
8377 | 360 |
|
361 |
||
4489 | 362 |
switch (mapgen) |
363 |
{ |
|
364 |
case MAPGEN_MAZE: |
|
10399
22fbc79acd5b
Also pass maze_size parameter to perlin generator in game mode
unc0rr
parents:
10336
diff
changeset
|
365 |
case MAPGEN_PERLIN: |
4941 | 366 |
bcfg << QString("e$maze_size %1").arg(pMapContainer->getMazeSize()).toUtf8(); |
4584 | 367 |
break; |
4489 | 368 |
|
369 |
case MAPGEN_DRAWN: |
|
370 |
{ |
|
371 |
QByteArray data = pMapContainer->getDrawnMapData(); |
|
372 |
while(data.size() > 0) |
|
373 |
{ |
|
374 |
QByteArray tmp = data; |
|
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
375 |
tmp.truncate(200); |
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
376 |
tmp.prepend("edraw "); |
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
377 |
bcfg << tmp; |
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
378 |
data.remove(0, 200); |
4489 | 379 |
} |
4584 | 380 |
break; |
4489 | 381 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
382 |
default: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
383 |
; |
4489 | 384 |
} |
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1628
diff
changeset
|
385 |
|
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
386 |
QByteArray result; |
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
387 |
|
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
388 |
foreach(QByteArray ba, bcfg) |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
389 |
HWProto::addByteArrayToBuffer(result, ba); |
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
390 |
|
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
391 |
return result; |
318 | 392 |
} |
320 | 393 |
|
703 | 394 |
void GameCFGWidget::setNetAmmo(const QString& name, const QString& ammo) |
697 | 395 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
396 |
bool illegal = ammo.size() != cDefaultAmmoStore->size(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
397 |
if (illegal) |
7794
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7771
diff
changeset
|
398 |
{ |
8377 | 399 |
QMessageBox illegalMsg(parentWidget()); |
7794
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7771
diff
changeset
|
400 |
illegalMsg.setIcon(QMessageBox::Warning); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7771
diff
changeset
|
401 |
illegalMsg.setWindowTitle(QMessageBox::tr("Error")); |
12900
a9e4e8fa852c
Fix various typos in translatable strings
Wuzzy <Wuzzy2@mail.ru>
parents:
12813
diff
changeset
|
402 |
illegalMsg.setText(QMessageBox::tr("Cannot use the weapon scheme '%1'!").arg(name)); |
7794
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7771
diff
changeset
|
403 |
illegalMsg.setWindowModality(Qt::WindowModal); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7771
diff
changeset
|
404 |
illegalMsg.exec(); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7771
diff
changeset
|
405 |
} |
703 | 406 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
407 |
int pos = WeaponsName->findText(name); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
408 |
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
|
409 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
410 |
WeaponsName->addItem(name, ammo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
411 |
WeaponsName->setCurrentIndex(WeaponsName->count() - 1); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
412 |
} |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
413 |
else |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
414 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
415 |
WeaponsName->setItemData(pos, ammo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
416 |
WeaponsName->setCurrentIndex(pos); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
417 |
} |
1530 | 418 |
} |
1531 | 419 |
|
1875 | 420 |
void GameCFGWidget::fullNetConfig() |
421 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
422 |
ammoChanged(WeaponsName->currentIndex()); |
2377 | 423 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
424 |
seedChanged(pMapContainer->getCurrentSeed()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
425 |
templateFilterChanged(pMapContainer->getTemplateFilter()); |
9771 | 426 |
|
427 |
QString t = pMapContainer->getCurrentTheme(); |
|
428 |
if(!t.isEmpty()) |
|
429 |
themeChanged(t); |
|
1875 | 430 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
431 |
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
|
432 |
scriptChanged(Scripts->currentIndex()); |
1921 | 433 |
|
3133 | 434 |
mapgenChanged(pMapContainer->get_mapgen()); |
4941 | 435 |
maze_sizeChanged(pMapContainer->getMazeSize()); |
10480 | 436 |
slMapFeatureSizeChanged(pMapContainer->getFeatureSize()); |
3133 | 437 |
|
10336 | 438 |
if(pMapContainer->get_mapgen() == 2) |
439 |
onDrawnMapChanged(pMapContainer->getDrawnMapData()); |
|
440 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
441 |
// map must be the last |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
442 |
QString map = pMapContainer->getCurrentMap(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
443 |
if (map.size()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
444 |
mapChanged(map); |
1875 | 445 |
} |
446 |
||
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
447 |
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
|
448 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
449 |
if (slValue.size() == 1) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
450 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
451 |
QString value = slValue[0]; |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
452 |
if (param == "MAP") |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
453 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
454 |
pMapContainer->setMap(value); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
455 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
456 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
457 |
if (param == "SEED") |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
458 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
459 |
pMapContainer->setSeed(value); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
460 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
461 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
462 |
if (param == "THEME") |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
463 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
464 |
pMapContainer->setTheme(value); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
465 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
466 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
467 |
if (param == "TEMPLATE") |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
468 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
469 |
pMapContainer->setTemplateFilter(value.toUInt()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
470 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
471 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
472 |
if (param == "MAPGEN") |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
473 |
{ |
3133 | 474 |
pMapContainer->setMapgen((MapGenerator)value.toUInt()); |
475 |
return; |
|
476 |
} |
|
10480 | 477 |
if (param == "FEATURE_SIZE") |
478 |
{ |
|
479 |
pMapContainer->setFeatureSize(value.toUInt()); |
|
480 |
return; |
|
481 |
} |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
482 |
if (param == "MAZE_SIZE") |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
483 |
{ |
4941 | 484 |
pMapContainer->setMazeSize(value.toUInt()); |
3133 | 485 |
return; |
486 |
} |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
487 |
if (param == "SCRIPT") |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
488 |
{ |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
489 |
int in = Scripts->findText(value); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
490 |
Scripts->setCurrentIndex(in); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
491 |
ScriptsLabel->setText(value); |
10959
1225f42f61e2
Pass ScriptParams to preview to support techracer. Proof of concept for techracer, generate a preview for m=4
nemo
parents:
10830
diff
changeset
|
492 |
pMapContainer->setScript(Scripts->itemData(Scripts->currentIndex(), GameStyleModel::ScriptRole).toString().toUtf8(), schemeData(43).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
|
493 |
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
|
494 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
495 |
if (param == "DRAWNMAP") |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
496 |
{ |
4537 | 497 |
pMapContainer->setDrawnMapData(qUncompress(QByteArray::fromBase64(slValue[0].toLatin1()))); |
498 |
return; |
|
499 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
500 |
} |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
501 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
502 |
if (slValue.size() == 2) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
503 |
{ |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
504 |
if (param == "AMMO") |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
505 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
506 |
setNetAmmo(slValue[0], slValue[1]); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
507 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
508 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
509 |
} |
2377 | 510 |
|
10481 | 511 |
if (slValue.size() == 6) |
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
|
512 |
{ |
4941 | 513 |
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
|
514 |
{ |
10482 | 515 |
QString seed = slValue[4]; |
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
|
516 |
|
4941 | 517 |
pMapContainer->setAllMapParameters( |
10482 | 518 |
slValue[1], |
519 |
(MapGenerator)slValue[2].toUInt(), |
|
520 |
slValue[3].toUInt(), |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
521 |
seed, |
10482 | 522 |
slValue[5].toUInt(), |
523 |
slValue[0].toUInt() |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
524 |
); |
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
|
525 |
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
|
526 |
} |
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
|
527 |
} |
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
|
528 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
529 |
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
|
530 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
531 |
|
1874 | 532 |
void GameCFGWidget::ammoChanged(int index) |
533 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
534 |
if (index >= 0) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
535 |
{ |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
536 |
WeaponsNameLabel->setText(WeaponsName->currentText()); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
537 |
emit paramChanged( |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
538 |
"AMMO", |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
539 |
QStringList() << WeaponsName->itemText(index) << WeaponsName->itemData(index).toString() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
540 |
); |
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
|
541 |
} |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
542 |
else |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
543 |
{ |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
544 |
WeaponsNameLabel->setText(""); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
545 |
} |
1874 | 546 |
} |
547 |
||
548 |
void GameCFGWidget::mapChanged(const QString & value) |
|
549 |
{ |
|
4709
c224bfb5d41c
fixed strange config on room join and untranslated "Normal" gameplay option
Henek
parents:
4584
diff
changeset
|
550 |
if(isEnabled() && pMapContainer->getCurrentIsMission()) |
3010 | 551 |
{ |
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
|
552 |
Scripts->setEnabled(false); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
553 |
lblScript->setEnabled(false); |
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
|
554 |
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
|
555 |
|
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 |
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
|
557 |
{ |
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 |
GameSchemes->setEnabled(false); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
559 |
goToSchemePage->setEnabled(false); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
560 |
lblScheme->setEnabled(false); |
4513
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
561 |
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
|
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 |
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
|
564 |
{ |
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 |
GameSchemes->setEnabled(true); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
566 |
goToSchemePage->setEnabled(true); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
567 |
lblScheme->setEnabled(true); |
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
|
568 |
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
|
569 |
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
|
570 |
GameSchemes->setCurrentIndex(num); |
10830
f3e903ace2d3
Make hedgewars frontend not change scheme/weps to Default if script cfg doesn't match a known scheme. That is, will leave on whatever is selected. Also set a bunch of schemes where we don't care what the scheme/weps are to *
nemo
parents:
10826
diff
changeset
|
571 |
//else |
f3e903ace2d3
Make hedgewars frontend not change scheme/weps to Default if script cfg doesn't match a known scheme. That is, will leave on whatever is selected. Also set a bunch of schemes where we don't care what the scheme/weps are to *
nemo
parents:
10826
diff
changeset
|
572 |
// GameSchemes->setCurrentIndex(GameSchemes->findText("Default")); |
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
|
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 |
|
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 |
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
|
576 |
{ |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
577 |
WeaponsName->setEnabled(false); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
578 |
goToWeaponPage->setEnabled(false); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
579 |
lblWeapons->setEnabled(false); |
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
|
580 |
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
|
581 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
582 |
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
|
583 |
{ |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
584 |
WeaponsName->setEnabled(true); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
585 |
goToWeaponPage->setEnabled(true); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
586 |
lblWeapons->setEnabled(true); |
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
|
587 |
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
|
588 |
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
|
589 |
WeaponsName->setCurrentIndex(num); |
10830
f3e903ace2d3
Make hedgewars frontend not change scheme/weps to Default if script cfg doesn't match a known scheme. That is, will leave on whatever is selected. Also set a bunch of schemes where we don't care what the scheme/weps are to *
nemo
parents:
10826
diff
changeset
|
590 |
//else |
f3e903ace2d3
Make hedgewars frontend not change scheme/weps to Default if script cfg doesn't match a known scheme. That is, will leave on whatever is selected. Also set a bunch of schemes where we don't care what the scheme/weps are to *
nemo
parents:
10826
diff
changeset
|
591 |
// WeaponsName->setCurrentIndex(WeaponsName->findText("Default")); |
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
|
592 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
593 |
|
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
594 |
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
|
595 |
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
|
596 |
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
|
597 |
bindEntries->setEnabled(false); |
3010 | 598 |
} |
599 |
else |
|
600 |
{ |
|
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
|
601 |
Scripts->setEnabled(true); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
602 |
lblScript->setEnabled(true); |
3010 | 603 |
GameSchemes->setEnabled(true); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
604 |
goToSchemePage->setEnabled(true); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
605 |
lblScheme->setEnabled(true); |
3010 | 606 |
WeaponsName->setEnabled(true); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
607 |
goToWeaponPage->setEnabled(true); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
608 |
lblWeapons->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
|
609 |
bindEntries->setEnabled(true); |
3010 | 610 |
} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
611 |
emit paramChanged("MAP", QStringList(value)); |
1874 | 612 |
} |
613 |
||
1876 | 614 |
void GameCFGWidget::templateFilterChanged(int value) |
615 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
616 |
emit paramChanged("TEMPLATE", QStringList(QString::number(value))); |
1876 | 617 |
} |
618 |
||
1874 | 619 |
void GameCFGWidget::seedChanged(const QString & value) |
620 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
621 |
emit paramChanged("SEED", QStringList(value)); |
1874 | 622 |
} |
623 |
||
624 |
void GameCFGWidget::themeChanged(const QString & value) |
|
625 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
626 |
emit paramChanged("THEME", QStringList(value)); |
1874 | 627 |
} |
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
628 |
|
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
|
629 |
void GameCFGWidget::schemeChanged(int index) |
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
630 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
631 |
QStringList sl; |
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
632 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
633 |
int size = GameSchemes->model()->columnCount(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
634 |
for(int i = 0; i < size; ++i) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
635 |
sl << schemeData(i).toString(); |
2377 | 636 |
|
9904
ef3321c86912
Prepend '!' to 42nd scheme parameter in network traffic
unc0rr
parents:
9902
diff
changeset
|
637 |
if (sl.size() >= 42) |
ef3321c86912
Prepend '!' to 42nd scheme parameter in network traffic
unc0rr
parents:
9902
diff
changeset
|
638 |
{ |
10826 | 639 |
sl[sl.size()-1].prepend('!'); |
9904
ef3321c86912
Prepend '!' to 42nd scheme parameter in network traffic
unc0rr
parents:
9902
diff
changeset
|
640 |
emit paramChanged("SCHEME", sl); // this is a stupid hack for the fact that SCHEME is being sent once, empty. Still need to find out why. |
ef3321c86912
Prepend '!' to 42nd scheme parameter in network traffic
unc0rr
parents:
9902
diff
changeset
|
641 |
} |
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
|
642 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
643 |
if (isEnabled() && bindEntries->isEnabled() && bindEntries->isChecked()) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
644 |
{ |
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
|
645 |
QString schemeName = GameSchemes->itemText(index); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
646 |
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
|
647 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
648 |
QString weapName = WeaponsName->itemText(i); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
649 |
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
|
650 |
if (0 == res) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
651 |
{ |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
652 |
WeaponsName->setCurrentIndex(i); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
653 |
emit ammoChanged(i); |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
654 |
break; |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6174
diff
changeset
|
655 |
} |
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
|
656 |
} |
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
|
657 |
} |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
658 |
|
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
659 |
if(index == -1) |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
660 |
GameSchemesLabel->setText(""); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
661 |
else |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
662 |
GameSchemesLabel->setText(GameSchemes->currentText()); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
663 |
|
10963
e061da85f32d
call setScript update if scheme changes, due to scriptparams
nemo
parents:
10959
diff
changeset
|
664 |
pMapContainer->setScript(Scripts->itemData(Scripts->currentIndex(), GameStyleModel::ScriptRole).toString().toUtf8(), schemeData(43).toString()); |
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
665 |
} |
2080
6d29370dc0dd
This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents:
2031
diff
changeset
|
666 |
|
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
|
667 |
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
|
668 |
{ |
6960
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
669 |
const QString & name = Scripts->itemText(index); |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
670 |
m_curScript = name; |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
671 |
|
4709
c224bfb5d41c
fixed strange config on room join and untranslated "Normal" gameplay option
Henek
parents:
4584
diff
changeset
|
672 |
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
|
673 |
{ |
6960
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
674 |
QString scheme = Scripts->itemData(index, GameStyleModel::SchemeRole).toString(); |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
675 |
QString weapons = Scripts->itemData(index, GameStyleModel::WeaponsRole).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
|
676 |
|
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
677 |
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
|
678 |
{ |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
679 |
GameSchemes->setEnabled(false); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
680 |
goToSchemePage->setEnabled(false); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
681 |
lblScheme->setEnabled(false); |
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
|
682 |
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
|
683 |
} |
8893
8f92e94d0b32
Don't set Default scheme/ammo when switching script if not room admin. Prevents game config desync.
unc0rr
parents:
8467
diff
changeset
|
684 |
else if (m_master) |
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
|
685 |
{ |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
686 |
GameSchemes->setEnabled(true); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
687 |
goToSchemePage->setEnabled(true); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
688 |
lblScheme->setEnabled(true); |
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
|
689 |
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
|
690 |
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
|
691 |
GameSchemes->setCurrentIndex(num); |
10830
f3e903ace2d3
Make hedgewars frontend not change scheme/weps to Default if script cfg doesn't match a known scheme. That is, will leave on whatever is selected. Also set a bunch of schemes where we don't care what the scheme/weps are to *
nemo
parents:
10826
diff
changeset
|
692 |
//else |
f3e903ace2d3
Make hedgewars frontend not change scheme/weps to Default if script cfg doesn't match a known scheme. That is, will leave on whatever is selected. Also set a bunch of schemes where we don't care what the scheme/weps are to *
nemo
parents:
10826
diff
changeset
|
693 |
// GameSchemes->setCurrentIndex(GameSchemes->findText("Default")); |
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
|
694 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
695 |
|
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
696 |
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
|
697 |
{ |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
698 |
WeaponsName->setEnabled(false); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
699 |
goToWeaponPage->setEnabled(false); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
700 |
lblWeapons->setEnabled(false); |
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
|
701 |
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
|
702 |
} |
8893
8f92e94d0b32
Don't set Default scheme/ammo when switching script if not room admin. Prevents game config desync.
unc0rr
parents:
8467
diff
changeset
|
703 |
else if (m_master) |
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
|
704 |
{ |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
705 |
WeaponsName->setEnabled(true); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
706 |
goToWeaponPage->setEnabled(true); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
707 |
lblWeapons->setEnabled(true); |
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
|
708 |
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
|
709 |
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
|
710 |
WeaponsName->setCurrentIndex(num); |
10830
f3e903ace2d3
Make hedgewars frontend not change scheme/weps to Default if script cfg doesn't match a known scheme. That is, will leave on whatever is selected. Also set a bunch of schemes where we don't care what the scheme/weps are to *
nemo
parents:
10826
diff
changeset
|
711 |
//else |
f3e903ace2d3
Make hedgewars frontend not change scheme/weps to Default if script cfg doesn't match a known scheme. That is, will leave on whatever is selected. Also set a bunch of schemes where we don't care what the scheme/weps are to *
nemo
parents:
10826
diff
changeset
|
712 |
// WeaponsName->setCurrentIndex(WeaponsName->findText("Default")); |
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
|
713 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
714 |
|
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
715 |
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
|
716 |
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
|
717 |
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
|
718 |
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
|
719 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
720 |
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
|
721 |
{ |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
722 |
GameSchemes->setEnabled(true); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
723 |
goToSchemePage->setEnabled(true); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
724 |
lblScheme->setEnabled(true); |
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
|
725 |
WeaponsName->setEnabled(true); |
13244
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
726 |
goToWeaponPage->setEnabled(true); |
d49bd0dd735d
Multiplayer page: Properly disable scheme/style/weapons widgets when changing style or mission map
Wuzzy <Wuzzy2@mail.ru>
parents:
13228
diff
changeset
|
727 |
lblWeapons->setEnabled(true); |
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
|
728 |
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
|
729 |
} |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
730 |
if (index == -1) |
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
731 |
{ |
10959
1225f42f61e2
Pass ScriptParams to preview to support techracer. Proof of concept for techracer, generate a preview for m=4
nemo
parents:
10830
diff
changeset
|
732 |
pMapContainer->setScript(QString(""), QString("")); |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
733 |
ScriptsLabel->setStyleSheet("color: #b50000;"); |
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
734 |
} |
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
735 |
else |
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
736 |
{ |
10959
1225f42f61e2
Pass ScriptParams to preview to support techracer. Proof of concept for techracer, generate a preview for m=4
nemo
parents:
10830
diff
changeset
|
737 |
pMapContainer->setScript(Scripts->itemData(index, GameStyleModel::ScriptRole).toString().toUtf8(), schemeData(43).toString()); |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
738 |
ScriptsLabel->setText(Scripts->currentText()); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
739 |
ScriptsLabel->setStyleSheet(""); |
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
740 |
} |
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
741 |
|
6960
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
742 |
emit paramChanged("SCRIPT", QStringList(name)); |
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
|
743 |
} |
1dd97c710f5a
added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents:
4511
diff
changeset
|
744 |
|
3133 | 745 |
void GameCFGWidget::mapgenChanged(MapGenerator m) |
746 |
{ |
|
747 |
emit paramChanged("MAPGEN", QStringList(QString::number(m))); |
|
748 |
} |
|
749 |
||
750 |
void GameCFGWidget::maze_sizeChanged(int s) |
|
751 |
{ |
|
752 |
emit paramChanged("MAZE_SIZE", QStringList(QString::number(s))); |
|
753 |
} |
|
754 |
||
10480 | 755 |
void GameCFGWidget::slMapFeatureSizeChanged(int s) |
756 |
{ |
|
757 |
emit paramChanged("FEATURE_SIZE", QStringList(QString::number(s))); |
|
758 |
} |
|
759 |
||
2080
6d29370dc0dd
This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents:
2031
diff
changeset
|
760 |
void GameCFGWidget::resendSchemeData() |
6d29370dc0dd
This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents:
2031
diff
changeset
|
761 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
762 |
schemeChanged(GameSchemes->currentIndex()); |
2080
6d29370dc0dd
This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents:
2031
diff
changeset
|
763 |
} |
4525 | 764 |
|
12811
de3cbbb09915
Fix host not re-sending ammo scheme after editing an existing ammo scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
11757
diff
changeset
|
765 |
void GameCFGWidget::resendAmmoData() |
de3cbbb09915
Fix host not re-sending ammo scheme after editing an existing ammo scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
11757
diff
changeset
|
766 |
{ |
de3cbbb09915
Fix host not re-sending ammo scheme after editing an existing ammo scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
11757
diff
changeset
|
767 |
ammoChanged(WeaponsName->currentIndex()); |
de3cbbb09915
Fix host not re-sending ammo scheme after editing an existing ammo scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
11757
diff
changeset
|
768 |
} |
de3cbbb09915
Fix host not re-sending ammo scheme after editing an existing ammo scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
11757
diff
changeset
|
769 |
|
4525 | 770 |
void GameCFGWidget::onDrawnMapChanged(const QByteArray & data) |
771 |
{ |
|
4527 | 772 |
emit paramChanged("DRAWNMAP", QStringList(qCompress(data, 9).toBase64())); |
4526 | 773 |
} |
6960
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
774 |
|
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
775 |
|
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
776 |
void GameCFGWidget::updateModelViews() |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
777 |
{ |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
778 |
// restore game-style selection |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
779 |
if (!m_curScript.isEmpty()) |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
780 |
{ |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
781 |
int idx = Scripts->findText(m_curScript); |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
782 |
if (idx >= 0) |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
783 |
Scripts->setCurrentIndex(idx); |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
784 |
else |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
785 |
Scripts->setCurrentIndex(0); |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
786 |
} |
822f8269e13f
map, theme & style selection won't be lost on data updata now (except the selected map/theme/style is deleted ofc). enabling F5 key to reload data :>
sheepluva
parents:
6958
diff
changeset
|
787 |
} |
8377 | 788 |
|
789 |
bool GameCFGWidget::isMaster() |
|
790 |
{ |
|
791 |
return m_master; |
|
792 |
} |
|
793 |
||
794 |
void GameCFGWidget::setMaster(bool master) |
|
795 |
{ |
|
8467 | 796 |
if (master == m_master) return; |
8377 | 797 |
m_master = master; |
798 |
||
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
799 |
if (master) |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
800 |
{ |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
801 |
// Reset script if not found |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
802 |
if (Scripts->currentIndex() == -1) |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
803 |
{ |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
804 |
Scripts->setCurrentIndex(Scripts->findText("Normal")); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
805 |
} |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
806 |
} |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
807 |
|
8377 | 808 |
pMapContainer->setMaster(master); |
809 |
||
13263
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
810 |
GameSchemes->setHidden(!master); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
811 |
WeaponsName->setHidden(!master); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
812 |
Scripts->setHidden(!master); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
813 |
goToSchemePage->setHidden(!master); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
814 |
goToWeaponPage->setHidden(!master); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
815 |
bindEntries->setHidden(!master); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
816 |
|
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
817 |
GameSchemesLabel->setHidden(master); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
818 |
WeaponsNameLabel->setHidden(master); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
819 |
ScriptsLabel->setHidden(master); |
0f7623f722dc
Display style name correctly if host selects a style you don't have
Wuzzy <Wuzzy2@mail.ru>
parents:
13244
diff
changeset
|
820 |
|
8377 | 821 |
foreach (QWidget *widget, m_childWidgets) |
822 |
widget->setEnabled(master); |
|
823 |
} |