author | nemo |
Sun, 03 May 2009 21:12:34 +0000 | |
changeset 2024 | 2985f3bd18b7 |
parent 2023 | 41d3afaa20c7 |
child 2026 | 21c986c528ba |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1236 | 3 |
* Copyright (c) 2006-2008 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 |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#include <QGridLayout> |
|
20 |
#include <QPushButton> |
|
21 |
#include <QGroupBox> |
|
22 |
#include <QComboBox> |
|
311 | 23 |
#include <QCheckBox> |
184 | 24 |
#include <QLabel> |
25 |
#include <QToolBox> |
|
26 |
#include <QLineEdit> |
|
27 |
#include <QListWidget> |
|
28 |
#include <QApplication> |
|
231 | 29 |
#include <QSpinBox> |
452 | 30 |
#include <QTextEdit> |
636 | 31 |
#include <QRadioButton> |
665 | 32 |
#include <QTableView> |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
33 |
#include <QMessageBox> |
673 | 34 |
#include <QHeaderView> |
1252 | 35 |
#include <QTabWidget> |
1377 | 36 |
#include <QTextBrowser> |
1399 | 37 |
#include <QTableWidget> |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
38 |
#include <QAction> |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
39 |
#include <QMenu> |
1701
ad7a7fd14d36
Now voicepack checking button should work (but it doesn't for me)
unc0rr
parents:
1684
diff
changeset
|
40 |
#include <QSound> |
1885 | 41 |
#include <QDataWidgetMapper> |
42 |
||
184 | 43 |
|
44 |
#include "pages.h" |
|
45 |
#include "sdlkeys.h" |
|
46 |
#include "hwconsts.h" |
|
47 |
#include "gamecfgwidget.h" |
|
48 |
#include "teamselect.h" |
|
49 |
#include "gamecfgwidget.h" |
|
50 |
#include "SquareLabel.h" |
|
51 |
#include "mapContainer.h" |
|
187 | 52 |
#include "about.h" |
297 | 53 |
#include "fpsedit.h" |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
54 |
#include "netserverslist.h" |
412 | 55 |
#include "netudpwidget.h" |
461 | 56 |
#include "chatwidget.h" |
579 | 57 |
#include "playrecordpage.h" |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
603
diff
changeset
|
58 |
#include "selectWeapon.h" |
1192 | 59 |
#include "igbox.h" |
1238
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
60 |
#include "hats.h" |
1885 | 61 |
#include "misc.h" |
1932 | 62 |
#include "togglebutton.h" |
184 | 63 |
|
684 | 64 |
PageMain::PageMain(QWidget* parent) : |
65 |
AbstractPage(parent) |
|
184 | 66 |
{ |
67 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1148 | 68 |
//pageLayout->setColumnStretch(0, 1); |
69 |
//pageLayout->setColumnStretch(1, 2); |
|
70 |
//pageLayout->setColumnStretch(2, 1); |
|
184 | 71 |
|
1199 | 72 |
//QPushButton* btnLogo = addButton(":/res/HedgewarsTitle.png", pageLayout, 0, 0, 1, 4, true); |
73 |
//pageLayout->setAlignment(btnLogo, Qt::AlignHCenter); |
|
1148 | 74 |
pageLayout->setRowStretch(0, 1); |
1150 | 75 |
pageLayout->setRowStretch(1, 1); |
76 |
pageLayout->setRowStretch(2, 0); |
|
77 |
pageLayout->setRowStretch(3, 1); |
|
1199 | 78 |
pageLayout->setRowStretch(4, 1); |
184 | 79 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
80 |
BtnSinglePlayer = addButton(":/res/LocalPlay.png", pageLayout, 2, 0, 1, 2, true); |
1450 | 81 |
BtnSinglePlayer->setToolTip(tr("Local Game (Play a game on a single computer)")); |
1150 | 82 |
pageLayout->setAlignment(BtnSinglePlayer, Qt::AlignHCenter); |
184 | 83 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
84 |
BtnNet = addButton(":/res/NetworkPlay.png", pageLayout, 2, 2, 1, 2, true); |
1450 | 85 |
BtnNet->setToolTip(tr("Network Game (Play a game across a network)")); |
1150 | 86 |
pageLayout->setAlignment(BtnNet, Qt::AlignHCenter); |
579 | 87 |
|
1199 | 88 |
BtnSetup = addButton(":/res/Settings.png", pageLayout, 4, 3, true); |
184 | 89 |
|
1199 | 90 |
//BtnInfo = addButton(":/res/About.png", pageLayout, 3, 1, 1, 2, true); |
91 |
BtnInfo = addButton(":/res/HedgewarsTitle.png", pageLayout, 0, 0, 1, 4, true); |
|
1212 | 92 |
BtnInfo->setStyleSheet("border: transparent;background: transparent;"); |
1150 | 93 |
pageLayout->setAlignment(BtnInfo, Qt::AlignHCenter); |
1199 | 94 |
//pageLayout->setAlignment(BtnInfo, Qt::AlignHCenter); |
184 | 95 |
|
1199 | 96 |
BtnExit = addButton(":/res/Exit.png", pageLayout, 4, 0, 1, 1, true); |
184 | 97 |
} |
98 |
||
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
730
diff
changeset
|
99 |
PageEditTeam::PageEditTeam(QWidget* parent) : |
692 | 100 |
AbstractPage(parent) |
184 | 101 |
{ |
102 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1252 | 103 |
QTabWidget * tbw = new QTabWidget(this); |
1389 | 104 |
QWidget * page1 = new QWidget(this); |
105 |
QWidget * page2 = new QWidget(this); |
|
1252 | 106 |
tbw->addTab(page1, tr("General")); |
107 |
tbw->addTab(page2, tr("Advanced")); |
|
108 |
pageLayout->addWidget(tbw, 0, 0, 1, 3); |
|
109 |
BtnTeamDiscard = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
|
110 |
BtnTeamSave = addButton(":/res/Save.png", pageLayout, 1, 2, true);; |
|
1443 | 111 |
BtnTeamSave->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); |
112 |
||
1252 | 113 |
QHBoxLayout * page1Layout = new QHBoxLayout(page1); |
114 |
page1Layout->setAlignment(Qt::AlignTop); |
|
115 |
QGridLayout * page2Layout = new QGridLayout(page2); |
|
116 |
||
117 |
// ====== Page 1 ====== |
|
118 |
QVBoxLayout * vbox1 = new QVBoxLayout(); |
|
119 |
QVBoxLayout * vbox2 = new QVBoxLayout(); |
|
120 |
QVBoxLayout * vbox3 = new QVBoxLayout(); |
|
121 |
page1Layout->addLayout(vbox1); |
|
122 |
page1Layout->addLayout(vbox2); |
|
123 |
page1Layout->addLayout(vbox3); |
|
124 |
||
588 | 125 |
GBoxHedgehogs = new QGroupBox(this); |
184 | 126 |
GBoxHedgehogs->setTitle(QGroupBox::tr("Team Members")); |
127 |
GBoxHedgehogs->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
128 |
QGridLayout * GBHLayout = new QGridLayout(GBoxHedgehogs); |
|
1840 | 129 |
|
130 |
signalMapper = new QSignalMapper(this); |
|
1238
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
131 |
|
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
132 |
HatsModel * hatsModel = new HatsModel(GBoxHedgehogs); |
184 | 133 |
for(int i = 0; i < 8; i++) |
134 |
{ |
|
1238
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
135 |
HHHats[i] = new QComboBox(GBoxHedgehogs); |
914bd2a9a249
Add hat selection control to team editing page (it's empty combobox yet)
unc0rr
parents:
1236
diff
changeset
|
136 |
HHHats[i]->setModel(hatsModel); |
1282 | 137 |
HHHats[i]->setIconSize(QSize(32, 37)); |
138 |
//HHHats[i]->setSizeAdjustPolicy(QComboBox::AdjustToContents); |
|
1239 | 139 |
//HHHats[i]->setModelColumn(1); |
1240 | 140 |
//HHHats[i]->setMinimumWidth(132); |
1840 | 141 |
GBHLayout->addWidget(HHHats[i], i, 0); |
142 |
||
143 |
HHNameEdit[i] = new QLineEdit(GBoxHedgehogs); |
|
144 |
HHNameEdit[i]->setMaxLength(64); |
|
145 |
HHNameEdit[i]->setMinimumWidth(120); |
|
146 |
GBHLayout->addWidget(HHNameEdit[i], i, 1); |
|
147 |
||
148 |
randButton[i] = addButton(":/res/dice.png", GBHLayout, i, 3, true); |
|
149 |
||
150 |
connect(randButton[i], SIGNAL(clicked()), signalMapper, SLOT(map())); |
|
151 |
signalMapper->setMapping(randButton[i], i); |
|
152 |
||
184 | 153 |
} |
1840 | 154 |
|
155 |
randTeamButton = addButton("Random Team", GBHLayout, 9, false); |
|
156 |
||
1252 | 157 |
vbox1->addWidget(GBoxHedgehogs); |
158 |
||
159 |
||
1288
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
160 |
GBoxTeam = new QGroupBox(this); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
161 |
GBoxTeam->setTitle(QGroupBox::tr("Team")); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
162 |
GBoxTeam->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
163 |
QVBoxLayout * GBTLayout = new QVBoxLayout(GBoxTeam); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
164 |
TeamNameEdit = new QLineEdit(GBoxTeam); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
165 |
TeamNameEdit->setMaxLength(64); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
166 |
GBTLayout->addWidget(TeamNameEdit); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
167 |
vbox2->addWidget(GBoxTeam); |
1252 | 168 |
|
1290 | 169 |
CBTeamLvl = new QComboBox(GBoxTeam); |
1440 | 170 |
CBTeamLvl->setIconSize(QSize(48, 48)); |
1287 | 171 |
CBTeamLvl->addItem(QIcon(":/res/botlevels/0.png"), QComboBox::tr("Human")); |
172 |
for(int i = 5; i > 0; i--) |
|
173 |
CBTeamLvl->addItem( |
|
174 |
QIcon(QString(":/res/botlevels/%1.png").arg(6 - i)), |
|
175 |
QString("%1 %2").arg(QComboBox::tr("Level")).arg(i) |
|
176 |
); |
|
1288
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
177 |
GBTLayout->addWidget(CBTeamLvl); |
1287 | 178 |
|
1290 | 179 |
CBGrave = new QComboBox(GBoxTeam); |
1288
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
180 |
CBGrave->setMaxCount(65535); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
181 |
CBGrave->setIconSize(QSize(32, 32)); |
cea4a8f52f5a
Reorganize team edit page a little (save a lot of space)
unc0rr
parents:
1287
diff
changeset
|
182 |
GBTLayout->addWidget(CBGrave); |
1684 | 183 |
|
1659 | 184 |
{ |
1684 | 185 |
QHBoxLayout * hbox = new QHBoxLayout(); |
186 |
CBVoicepack = new QComboBox(GBoxTeam); |
|
187 |
{ |
|
188 |
QDir tmpdir; |
|
189 |
tmpdir.cd(datadir->absolutePath()); |
|
190 |
tmpdir.cd("Sounds/voices"); |
|
191 |
QStringList list = tmpdir.entryList(QDir::AllDirs | QDir::NoDotAndDotDot, QDir::Name); |
|
192 |
CBVoicepack->addItems(list); |
|
193 |
} |
|
194 |
hbox->addWidget(CBVoicepack, 100); |
|
1718 | 195 |
BtnTestSound = addButton(":/res/PlaySound.png", hbox, 1, true); |
1684 | 196 |
hbox->setStretchFactor(BtnTestSound, 1); |
197 |
connect(BtnTestSound, SIGNAL(clicked()), this, SLOT(testSound())); |
|
198 |
GBTLayout->addLayout(hbox); |
|
1659 | 199 |
} |
200 |
||
1252 | 201 |
GBoxFort = new QGroupBox(this); |
202 |
GBoxFort->setTitle(QGroupBox::tr("Fort")); |
|
203 |
QGridLayout * GBFLayout = new QGridLayout(GBoxFort); |
|
204 |
CBFort = new QComboBox(GBoxFort); |
|
205 |
CBFort->setMaxCount(65535); |
|
206 |
GBFLayout->addWidget(CBFort, 0, 0); |
|
207 |
FortPreview = new SquareLabel(GBoxFort); |
|
208 |
FortPreview->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
209 |
FortPreview->setPixmap(QPixmap()); |
|
210 |
GBFLayout->addWidget(FortPreview, 1, 0); |
|
211 |
vbox3->addWidget(GBoxFort); |
|
212 |
||
213 |
QDir tmpdir; |
|
214 |
tmpdir.cd(datadir->absolutePath()); |
|
215 |
tmpdir.cd("Forts"); |
|
216 |
tmpdir.setFilter(QDir::Files); |
|
217 |
||
1287 | 218 |
connect(CBFort, SIGNAL(currentIndexChanged(const QString &)), this, SLOT(CBFort_activated(const QString &))); |
1252 | 219 |
CBFort->addItems(tmpdir.entryList(QStringList("*L.png")).replaceInStrings(QRegExp("^(.*)L\\.png"), "\\1")); |
1287 | 220 |
|
1252 | 221 |
tmpdir.cd("../Graphics/Graves"); |
222 |
QStringList list = tmpdir.entryList(QStringList("*.png")); |
|
223 |
for (QStringList::Iterator it = list.begin(); it != list.end(); ++it ) |
|
224 |
{ |
|
1287 | 225 |
QPixmap pix(datadir->absolutePath() + "/Graphics/Graves/" + *it); |
226 |
QIcon icon(pix.copy(0, 0, 32, 32)); |
|
227 |
CBGrave->addItem(icon, (*it).replace(QRegExp("^(.*)\\.png"), "\\1")); |
|
1252 | 228 |
} |
229 |
||
230 |
vbox1->addStretch(); |
|
231 |
vbox2->addStretch(); |
|
232 |
// vbox3->addStretch(); |
|
233 |
||
234 |
// ====== Page 2 ====== |
|
588 | 235 |
GBoxBinds = new QGroupBox(this); |
184 | 236 |
GBoxBinds->setTitle(QGroupBox::tr("Key binds")); |
237 |
QGridLayout * GBBLayout = new QGridLayout(GBoxBinds); |
|
238 |
BindsBox = new QToolBox(GBoxBinds); |
|
239 |
BindsBox->setLineWidth(0); |
|
240 |
GBBLayout->addWidget(BindsBox); |
|
1389 | 241 |
page_A = new QWidget(this); |
184 | 242 |
BindsBox->addItem(page_A, QToolBox::tr("Actions")); |
1389 | 243 |
page_W = new QWidget(this); |
184 | 244 |
BindsBox->addItem(page_W, QToolBox::tr("Weapons")); |
1389 | 245 |
page_WP = new QWidget(this); |
184 | 246 |
BindsBox->addItem(page_WP, QToolBox::tr("Weapon properties")); |
1389 | 247 |
page_O = new QWidget(this); |
184 | 248 |
BindsBox->addItem(page_O, QToolBox::tr("Other")); |
1252 | 249 |
page2Layout->addWidget(GBoxBinds, 0, 0); |
184 | 250 |
|
251 |
QStringList binds; |
|
252 |
for(int i = 0; strlen(sdlkeys[i][1]) > 0; i++) |
|
253 |
{ |
|
254 |
binds << sdlkeys[i][1]; |
|
255 |
} |
|
256 |
||
257 |
quint16 widind = 0, i = 0; |
|
258 |
while (i < BINDS_NUMBER) { |
|
259 |
quint16 num = 0; |
|
1389 | 260 |
QWidget * curW = BindsBox->widget(widind); |
261 |
QGridLayout * pagelayout = new QGridLayout(curW); |
|
184 | 262 |
do { |
1389 | 263 |
LBind[i] = new QLabel(curW); |
184 | 264 |
LBind[i]->setText(QApplication::translate("binds", cbinds[i].name)); |
265 |
LBind[i]->setAlignment(Qt::AlignRight); |
|
266 |
pagelayout->addWidget(LBind[i], num, 0); |
|
1389 | 267 |
CBBind[i] = new QComboBox(curW); |
184 | 268 |
CBBind[i]->addItems(binds); |
269 |
pagelayout->addWidget(CBBind[i], num, 1); |
|
270 |
num++; |
|
271 |
} while (!cbinds[i++].chwidget); |
|
1389 | 272 |
pagelayout->addWidget(new QWidget(curW), num, 0, 1, 2); |
184 | 273 |
widind++; |
274 |
} |
|
275 |
} |
|
276 |
||
277 |
void PageEditTeam::CBFort_activated(const QString & fortname) |
|
278 |
{ |
|
279 |
QPixmap pix(datadir->absolutePath() + "/Forts/" + fortname + "L.png"); |
|
280 |
FortPreview->setPixmap(pix); |
|
281 |
} |
|
282 |
||
1684 | 283 |
void PageEditTeam::testSound() |
284 |
{ |
|
285 |
QDir tmpdir; |
|
286 |
tmpdir.cd(datadir->absolutePath()); |
|
287 |
tmpdir.cd("Sounds/voices"); |
|
288 |
tmpdir.cd(CBVoicepack->currentText()); |
|
1701
ad7a7fd14d36
Now voicepack checking button should work (but it doesn't for me)
unc0rr
parents:
1684
diff
changeset
|
289 |
QStringList list = tmpdir.entryList(QStringList() << "*.wav", QDir::Files); |
1684 | 290 |
if (list.size()) |
1701
ad7a7fd14d36
Now voicepack checking button should work (but it doesn't for me)
unc0rr
parents:
1684
diff
changeset
|
291 |
QSound::play(tmpdir.absolutePath() + "/" + list[rand() % list.size()]); |
1684 | 292 |
} |
293 |
||
1287 | 294 |
PageMultiplayer::PageMultiplayer(QWidget* parent) : |
692 | 295 |
AbstractPage(parent) |
184 | 296 |
{ |
297 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
298 |
||
1218 | 299 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 2, 0, true); |
187 | 300 |
|
184 | 301 |
gameCFG = new GameCFGWidget(this); |
302 |
pageLayout->addWidget(gameCFG, 0, 0, 1, 2); |
|
696 | 303 |
|
1218 | 304 |
pageLayout->setRowStretch(1, 1); |
305 |
||
184 | 306 |
teamsSelect = new TeamSelWidget(this); |
1218 | 307 |
pageLayout->addWidget(teamsSelect, 0, 2, 2, 2); |
184 | 308 |
|
1218 | 309 |
BtnStartMPGame = addButton(tr("Start"), pageLayout, 2, 3); |
184 | 310 |
} |
311 |
||
1249
b6670a6ea2d0
Remove 25pix margin on every page, so exit button is almost in the same place on all pages
unc0rr
parents:
1240
diff
changeset
|
312 |
PageOptions::PageOptions(QWidget* parent) : |
692 | 313 |
AbstractPage(parent) |
184 | 314 |
{ |
315 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
427 | 316 |
pageLayout->setColumnStretch(0, 100); |
317 |
pageLayout->setColumnStretch(1, 100); |
|
318 |
pageLayout->setColumnStretch(2, 100); |
|
319 |
pageLayout->setRowStretch(0, 0); |
|
1644 | 320 |
pageLayout->setRowStretch(1, 100); |
719 | 321 |
pageLayout->setRowStretch(2, 0); |
1644 | 322 |
pageLayout->setContentsMargins(7, 7, 7, 0); |
323 |
pageLayout->setSpacing(0); |
|
427 | 324 |
|
1198 | 325 |
|
326 |
QGroupBox * gbTwoBoxes = new QGroupBox(this); |
|
327 |
pageLayout->addWidget(gbTwoBoxes, 0, 0, 1, 3); |
|
1644 | 328 |
QGridLayout * gbTBLayout = new QGridLayout(gbTwoBoxes); |
329 |
gbTBLayout->setMargin(0); |
|
330 |
gbTBLayout->setSpacing(0); |
|
1198 | 331 |
{ |
332 |
teamsBox = new IconedGroupBox(this); |
|
333 |
teamsBox->setIcon(QIcon(":/res/teamicon.png")); |
|
334 |
teamsBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
335 |
teamsBox->setTitle(QGroupBox::tr("Teams")); |
|
336 |
||
1644 | 337 |
QVBoxLayout * GBTlayout = new QVBoxLayout(teamsBox); |
1198 | 338 |
|
339 |
CBTeamName = new QComboBox(teamsBox); |
|
1644 | 340 |
GBTlayout->addWidget(CBTeamName); |
184 | 341 |
|
1644 | 342 |
QHBoxLayout * layout1 = new QHBoxLayout; |
343 |
GBTlayout->addLayout(layout1); |
|
344 |
BtnNewTeam = addButton(tr("New team"), layout1, 0); |
|
345 |
BtnEditTeam = addButton(tr("Edit team"), layout1, 1); |
|
346 |
layout1->setStretchFactor(BtnNewTeam, 100); |
|
347 |
layout1->setStretchFactor(BtnEditTeam, 100); |
|
348 |
||
349 |
QHBoxLayout * layout2 = new QHBoxLayout; |
|
350 |
GBTlayout->addLayout(layout2); |
|
1199 | 351 |
|
352 |
labelNN = new QLabel(teamsBox); |
|
353 |
labelNN->setText(QLabel::tr("Net nick")); |
|
1644 | 354 |
layout2->addWidget(labelNN); |
1199 | 355 |
|
356 |
editNetNick = new QLineEdit(teamsBox); |
|
357 |
editNetNick->setMaxLength(20); |
|
358 |
editNetNick->setText(QLineEdit::tr("unnamed")); |
|
1644 | 359 |
layout2->addWidget(editNetNick); |
1199 | 360 |
|
1644 | 361 |
gbTBLayout->addWidget(teamsBox, 0, 0); |
1198 | 362 |
} |
184 | 363 |
|
1198 | 364 |
{ |
365 |
IconedGroupBox* groupWeapons = new IconedGroupBox(this); |
|
1810 | 366 |
groupWeapons->setContentTopPadding(0); |
1199 | 367 |
groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
1198 | 368 |
groupWeapons->setIcon(QIcon(":/res/weaponsicon.png")); |
1199 | 369 |
//groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
1198 | 370 |
groupWeapons->setTitle(QGroupBox::tr("Weapons")); |
371 |
QGridLayout * WeaponsLayout = new QGridLayout(groupWeapons); |
|
184 | 372 |
|
1198 | 373 |
WeaponsButt = addButton(tr("Weapons set"), WeaponsLayout, 1, 0); |
374 |
WeaponsName = new QComboBox(this); |
|
375 |
WeaponsLayout->addWidget(WeaponsName, 0, 0, 1, 2); |
|
376 |
WeaponEdit = addButton(tr("Edit"), WeaponsLayout, 1, 1); |
|
1644 | 377 |
gbTBLayout->addWidget(groupWeapons, 1, 0); |
1198 | 378 |
} |
184 | 379 |
|
1644 | 380 |
{ |
381 |
AGGroupBox = new IconedGroupBox(this); |
|
382 |
AGGroupBox->setIcon(QIcon(":/res/graphicsicon.png")); |
|
383 |
AGGroupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
384 |
AGGroupBox->setTitle(QGroupBox::tr("Audio/Graphic options")); |
|
184 | 385 |
|
1644 | 386 |
QVBoxLayout * GBAlayout = new QVBoxLayout(AGGroupBox); |
387 |
QHBoxLayout * GBAreslayout = new QHBoxLayout(0); |
|
388 |
QLabel * resolution = new QLabel(AGGroupBox); |
|
389 |
resolution->setText(QLabel::tr("Resolution")); |
|
390 |
GBAreslayout->addWidget(resolution); |
|
427 | 391 |
|
1644 | 392 |
CBResolution = new QComboBox(AGGroupBox); |
393 |
GBAreslayout->addWidget(CBResolution); |
|
394 |
GBAlayout->addLayout(GBAreslayout); |
|
427 | 395 |
|
1644 | 396 |
QHBoxLayout * GBAfpslayout = new QHBoxLayout(0); |
397 |
QLabel * maxfps = new QLabel(AGGroupBox); |
|
398 |
maxfps->setText(QLabel::tr("FPS limit")); |
|
399 |
GBAfpslayout->addWidget(maxfps); |
|
400 |
GBAlayout->addLayout(GBAfpslayout); |
|
184 | 401 |
|
1812 | 402 |
CBReduceQuality = new QCheckBox(AGGroupBox); |
403 |
CBReduceQuality->setText(QCheckBox::tr("Reduce Quality")); |
|
404 |
GBAlayout->addWidget(CBReduceQuality); |
|
405 |
||
1644 | 406 |
CBFullscreen = new QCheckBox(AGGroupBox); |
407 |
CBFullscreen->setText(QCheckBox::tr("Fullscreen")); |
|
408 |
GBAlayout->addWidget(CBFullscreen); |
|
184 | 409 |
|
1644 | 410 |
CBFrontendFullscreen = new QCheckBox(AGGroupBox); |
411 |
CBFrontendFullscreen->setText(QCheckBox::tr("Frontend fullscreen")); |
|
412 |
GBAlayout->addWidget(CBFrontendFullscreen); |
|
1162 | 413 |
|
1644 | 414 |
CBEnableSound = new QCheckBox(AGGroupBox); |
415 |
CBEnableSound->setText(QCheckBox::tr("Enable sound")); |
|
416 |
GBAlayout->addWidget(CBEnableSound); |
|
184 | 417 |
|
1644 | 418 |
CBEnableMusic = new QCheckBox(AGGroupBox); |
419 |
CBEnableMusic->setText(QCheckBox::tr("Enable music")); |
|
420 |
GBAlayout->addWidget(CBEnableMusic); |
|
1129 | 421 |
|
1777 | 422 |
QHBoxLayout * GBAvollayout = new QHBoxLayout(0); |
423 |
QLabel * vol = new QLabel(AGGroupBox); |
|
424 |
vol->setText(QLabel::tr("Initial sound volume")); |
|
425 |
GBAvollayout->addWidget(vol); |
|
426 |
GBAlayout->addLayout(GBAvollayout); |
|
427 |
volumeBox = new QSpinBox(AGGroupBox); |
|
428 |
volumeBox->setRange(0, 100); |
|
429 |
volumeBox->setSingleStep(5); |
|
430 |
GBAvollayout->addWidget(volumeBox); |
|
431 |
||
432 |
||
1644 | 433 |
CBShowFPS = new QCheckBox(AGGroupBox); |
434 |
CBShowFPS->setText(QCheckBox::tr("Show FPS")); |
|
435 |
GBAlayout->addWidget(CBShowFPS); |
|
297 | 436 |
|
1644 | 437 |
CBAltDamage = new QCheckBox(AGGroupBox); |
438 |
CBAltDamage->setText(QCheckBox::tr("Alternative damage show")); |
|
439 |
GBAlayout->addWidget(CBAltDamage); |
|
529 | 440 |
|
1644 | 441 |
CBNameWithDate = new QCheckBox(AGGroupBox); |
442 |
CBNameWithDate->setText(QCheckBox::tr("Append date and time to record file name")); |
|
443 |
GBAlayout->addWidget(CBNameWithDate); |
|
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1457
diff
changeset
|
444 |
|
1644 | 445 |
fpsedit = new FPSEdit(AGGroupBox); |
446 |
GBAfpslayout->addWidget(fpsedit); |
|
447 |
gbTBLayout->addWidget(AGGroupBox, 0, 1, 2, 1); |
|
448 |
} |
|
184 | 449 |
|
1644 | 450 |
BtnSaveOptions = addButton(":/res/Save.png", pageLayout, 2, 2, true); |
1443 | 451 |
BtnSaveOptions->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); |
184 | 452 |
|
1644 | 453 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 2, 0, true); |
184 | 454 |
} |
455 |
||
1153 | 456 |
PageNet::PageNet(QWidget* parent) : AbstractPage(parent) |
184 | 457 |
{ |
458 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
459 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
460 |
pageLayout->setColumnStretch(0, 1); |
|
461 |
pageLayout->setColumnStretch(1, 1); |
|
617 | 462 |
pageLayout->setColumnStretch(2, 1); |
421 | 463 |
|
464 |
BtnNetSvrStart = new QPushButton(this); |
|
465 |
BtnNetSvrStart->setFont(*font14); |
|
466 |
BtnNetSvrStart->setText(QPushButton::tr("Start server")); |
|
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1409
diff
changeset
|
467 |
BtnNetSvrStart->setVisible(haveServer); |
1395 | 468 |
pageLayout->addWidget(BtnNetSvrStart, 4, 2); |
469 |
||
470 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 4, 0, true); |
|
1932 | 471 |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
472 |
ConnGroupBox = new QGroupBox(this); |
421 | 473 |
ConnGroupBox->setTitle(QGroupBox::tr("Net game")); |
474 |
pageLayout->addWidget(ConnGroupBox, 2, 0, 1, 3); |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
475 |
GBClayout = new QGridLayout(ConnGroupBox); |
646 | 476 |
GBClayout->setColumnStretch(0, 1); |
421 | 477 |
GBClayout->setColumnStretch(1, 1); |
478 |
GBClayout->setColumnStretch(2, 1); |
|
184 | 479 |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
480 |
BtnNetConnect = new QPushButton(ConnGroupBox); |
184 | 481 |
BtnNetConnect->setFont(*font14); |
482 |
BtnNetConnect->setText(QPushButton::tr("Connect")); |
|
646 | 483 |
GBClayout->addWidget(BtnNetConnect, 2, 2); |
416 | 484 |
|
665 | 485 |
tvServersList = new QTableView(ConnGroupBox); |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
486 |
tvServersList->setSelectionBehavior(QAbstractItemView::SelectRows); |
665 | 487 |
GBClayout->addWidget(tvServersList, 1, 0, 1, 3); |
421 | 488 |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
489 |
BtnUpdateSList = new QPushButton(ConnGroupBox); |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
490 |
BtnUpdateSList->setFont(*font14); |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
491 |
BtnUpdateSList->setText(QPushButton::tr("Update")); |
646 | 492 |
GBClayout->addWidget(BtnUpdateSList, 2, 0); |
314 | 493 |
|
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
494 |
BtnSpecifyServer = new QPushButton(ConnGroupBox); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
495 |
BtnSpecifyServer->setFont(*font14); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
496 |
BtnSpecifyServer->setText(QPushButton::tr("Specify")); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
497 |
GBClayout->addWidget(BtnSpecifyServer, 2, 1); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
498 |
|
668 | 499 |
connect(BtnNetConnect, SIGNAL(clicked()), this, SLOT(slotConnect())); |
184 | 500 |
} |
501 |
||
646 | 502 |
void PageNet::updateServersList() |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
503 |
{ |
1310 | 504 |
tvServersList->setModel(new HWNetUdpModel(tvServersList)); |
659 | 505 |
|
673 | 506 |
tvServersList->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch); |
507 |
||
665 | 508 |
static_cast<HWNetServersModel *>(tvServersList->model())->updateList(); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
509 |
|
665 | 510 |
connect(BtnUpdateSList, SIGNAL(clicked()), static_cast<HWNetServersModel *>(tvServersList->model()), SLOT(updateList())); |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
511 |
connect(tvServersList, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotConnect())); |
646 | 512 |
} |
513 |
||
514 |
void PageNet::slotConnect() |
|
515 |
{ |
|
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
516 |
HWNetServersModel * model = static_cast<HWNetServersModel *>(tvServersList->model()); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
517 |
QModelIndex mi = tvServersList->currentIndex(); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
518 |
if(!mi.isValid()) |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
519 |
{ |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
520 |
QMessageBox::information(this, tr("Error"), tr("Please, select server from the list above")); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
521 |
return; |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
522 |
} |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
523 |
QString host = model->index(mi.row(), 1).data().toString(); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
524 |
quint16 port = model->index(mi.row(), 2).data().toUInt(); |
672
08ed55ea1e2a
- Fix a bug when server fails to start, and then connecting to another server on the same host (strange, the fix won't work on my machine)
unc0rr
parents:
671
diff
changeset
|
525 |
|
08ed55ea1e2a
- Fix a bug when server fails to start, and then connecting to another server on the same host (strange, the fix won't work on my machine)
unc0rr
parents:
671
diff
changeset
|
526 |
emit connectClicked(host, port); |
646 | 527 |
} |
528 |
||
1153 | 529 |
PageNetServer::PageNetServer(QWidget* parent) : AbstractPage(parent) |
646 | 530 |
{ |
531 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
532 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
533 |
pageLayout->setColumnStretch(0, 1); |
|
534 |
pageLayout->setColumnStretch(1, 1); |
|
535 |
pageLayout->setColumnStretch(2, 1); |
|
536 |
||
675 | 537 |
pageLayout->setRowStretch(0, 1); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
538 |
pageLayout->setRowStretch(1, 0); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
539 |
|
1153 | 540 |
BtnBack =addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
646 | 541 |
|
542 |
BtnStart = new QPushButton(this); |
|
543 |
BtnStart->setFont(*font14); |
|
544 |
BtnStart->setText(QPushButton::tr("Start")); |
|
675 | 545 |
pageLayout->addWidget(BtnStart, 1, 2); |
546 |
||
547 |
QWidget * wg = new QWidget(this); |
|
548 |
pageLayout->addWidget(wg, 0, 0, 1, 3); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
549 |
|
675 | 550 |
QGridLayout * wgLayout = new QGridLayout(wg); |
551 |
wgLayout->setColumnStretch(0, 1); |
|
552 |
wgLayout->setColumnStretch(1, 3); |
|
553 |
wgLayout->setColumnStretch(2, 1); |
|
554 |
||
555 |
wgLayout->setRowStretch(0, 0); |
|
556 |
wgLayout->setRowStretch(1, 1); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
557 |
|
675 | 558 |
QGroupBox * gb = new QGroupBox(wg); |
559 |
wgLayout->addWidget(gb, 0, 1); |
|
560 |
||
561 |
QGridLayout * gbLayout = new QGridLayout(gb); |
|
562 |
||
563 |
labelSD = new QLabel(gb); |
|
564 |
labelSD->setText(QLabel::tr("Server name:")); |
|
565 |
gbLayout->addWidget(labelSD, 0, 0); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
566 |
|
675 | 567 |
leServerDescr = new QLineEdit(gb); |
568 |
gbLayout->addWidget(leServerDescr, 0, 1); |
|
569 |
||
570 |
labelPort = new QLabel(gb); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
571 |
labelPort->setText(QLabel::tr("Server port:")); |
675 | 572 |
gbLayout->addWidget(labelPort, 1, 0); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
573 |
|
675 | 574 |
sbPort = new QSpinBox(gb); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
575 |
sbPort->setMinimum(0); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
576 |
sbPort->setMaximum(65535); |
675 | 577 |
gbLayout->addWidget(sbPort, 1, 1); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
578 |
|
675 | 579 |
BtnDefault = new QPushButton(gb); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
580 |
BtnDefault->setText(QPushButton::tr("default")); |
675 | 581 |
gbLayout->addWidget(BtnDefault, 1, 2); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
582 |
|
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
583 |
connect(BtnDefault, SIGNAL(clicked()), this, SLOT(setDefaultPort())); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
584 |
} |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
585 |
|
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
586 |
void PageNetServer::setDefaultPort() |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
587 |
{ |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
588 |
sbPort->setValue(46631); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
589 |
} |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
590 |
|
1153 | 591 |
PageNetGame::PageNetGame(QWidget* parent) : AbstractPage(parent) |
184 | 592 |
{ |
593 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
452 | 594 |
pageLayout->setSizeConstraint(QLayout::SetMinimumSize); |
461 | 595 |
//pageLayout->setSpacing(1); |
463 | 596 |
pageLayout->setColumnStretch(0, 50); |
597 |
pageLayout->setColumnStretch(1, 50); |
|
322 | 598 |
|
461 | 599 |
// chatwidget |
600 |
pChatWidget = new HWChatWidget(this); |
|
1647 | 601 |
pageLayout->addWidget(pChatWidget, 1, 0, 1, 2); |
464 | 602 |
pageLayout->setRowStretch(1, 100); |
453 | 603 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
323
diff
changeset
|
604 |
pGameCFG = new GameCFGWidget(this); |
322 | 605 |
pageLayout->addWidget(pGameCFG, 0, 0); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
323
diff
changeset
|
606 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
323
diff
changeset
|
607 |
pNetTeamsWidget = new TeamSelWidget(this); |
373 | 608 |
pNetTeamsWidget->setAcceptOuter(true); |
1647 | 609 |
pageLayout->addWidget(pNetTeamsWidget, 0, 1); |
184 | 610 |
|
1649 | 611 |
|
612 |
QHBoxLayout * bottomLayout = new QHBoxLayout; |
|
613 |
pageLayout->addLayout(bottomLayout, 3, 0, 1, 2); |
|
614 |
||
615 |
BtnBack = addButton(":/res/Exit.png", bottomLayout, 0, true); |
|
616 |
||
646 | 617 |
BtnGo = new QPushButton(this); |
1677 | 618 |
BtnGo->setToolTip(QPushButton::tr("Ready")); |
1648 | 619 |
BtnGo->setIcon(QIcon(":/res/lightbulb_off.png")); |
620 |
BtnGo->setIconSize(QSize(25, 34)); |
|
1649 | 621 |
BtnGo->setMinimumWidth(50); |
622 |
BtnGo->setMinimumHeight(50); |
|
1951 | 623 |
bottomLayout->addWidget(BtnGo, 4); |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
624 |
|
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
625 |
|
1951 | 626 |
BtnMaster = addButton(tr("Control"), bottomLayout, 2); |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
627 |
QMenu * menu = new QMenu(BtnMaster); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
628 |
restrictJoins = new QAction(QAction::tr("Restrict Joins"), menu); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
629 |
restrictJoins->setCheckable(true); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
630 |
restrictTeamAdds = new QAction(QAction::tr("Restrict Team Additions"), menu); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
631 |
restrictTeamAdds->setCheckable(true); |
1951 | 632 |
//menu->addAction(startGame); |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
633 |
menu->addAction(restrictJoins); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
634 |
menu->addAction(restrictTeamAdds); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
635 |
|
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1404
diff
changeset
|
636 |
BtnMaster->setMenu(menu); |
1649 | 637 |
|
1951 | 638 |
BtnStart = addButton(QAction::tr("Start"), bottomLayout, 3); |
639 |
||
1649 | 640 |
bottomLayout->insertStretch(1, 100); |
184 | 641 |
} |
187 | 642 |
|
1648 | 643 |
void PageNetGame::setReadyStatus(bool isReady) |
644 |
{ |
|
645 |
if(isReady) |
|
646 |
BtnGo->setIcon(QIcon(":/res/lightbulb_on.png")); |
|
647 |
else |
|
648 |
BtnGo->setIcon(QIcon(":/res/lightbulb_off.png")); |
|
649 |
} |
|
650 |
||
1649 | 651 |
void PageNetGame::setMasterMode(bool isMaster) |
652 |
{ |
|
653 |
BtnMaster->setVisible(isMaster); |
|
1951 | 654 |
BtnStart->setVisible(isMaster); |
1649 | 655 |
} |
656 |
||
1153 | 657 |
PageInfo::PageInfo(QWidget* parent) : AbstractPage(parent) |
187 | 658 |
{ |
659 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
660 |
pageLayout->setColumnStretch(0, 1); |
|
661 |
pageLayout->setColumnStretch(1, 1); |
|
662 |
pageLayout->setColumnStretch(2, 1); |
|
663 |
||
1153 | 664 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
187 | 665 |
|
666 |
about = new About(this); |
|
667 |
pageLayout->addWidget(about, 0, 0, 1, 3); |
|
668 |
} |
|
306 | 669 |
|
1150 | 670 |
PageSinglePlayer::PageSinglePlayer(QWidget* parent) : AbstractPage(parent) |
586 | 671 |
{ |
1443 | 672 |
QVBoxLayout * vLayout = new QVBoxLayout(this); |
673 |
QHBoxLayout * topLine = new QHBoxLayout(); |
|
674 |
QHBoxLayout * middleLine = new QHBoxLayout(); |
|
675 |
QHBoxLayout * bottomLine = new QHBoxLayout(); |
|
1444 | 676 |
vLayout->addStretch(); |
1443 | 677 |
vLayout->addLayout(topLine); |
1457 | 678 |
vLayout->addSpacing(30); |
1443 | 679 |
vLayout->addLayout(middleLine); |
1444 | 680 |
vLayout->addStretch(); |
1443 | 681 |
vLayout->addLayout(bottomLine); |
586 | 682 |
|
1457 | 683 |
topLine->addStretch(); |
1443 | 684 |
BtnSimpleGamePage = addButton(":/res/SimpleGame.png", topLine, 0, true); |
1450 | 685 |
BtnSimpleGamePage->setToolTip(tr("Simple Game (a quick game against the computer, settings are chosen for you)")); |
1457 | 686 |
topLine->addSpacing(60); |
1443 | 687 |
BtnMultiplayer = addButton(":/res/Multiplayer.png", topLine, 1, true); |
1450 | 688 |
BtnMultiplayer->setToolTip(tr("Multiplayer (play a hotseat game against your friends, or AI teams)")); |
1457 | 689 |
topLine->addStretch(); |
690 |
||
691 |
||
1443 | 692 |
BtnTrainPage = addButton(":/res/Trainings.png", middleLine, 0, true); |
1450 | 693 |
BtnTrainPage->setToolTip(tr("Training Mode (Practice your skills in a range of training missions). IN DEVELOPMENT")); |
1443 | 694 |
|
695 |
BtnBack = addButton(":/res/Exit.png", bottomLine, 0, true); |
|
1444 | 696 |
bottomLine->addStretch(); |
697 |
||
1447 | 698 |
BtnDemos = addButton(":/res/Record.png", bottomLine, 1, true); |
1450 | 699 |
BtnDemos->setToolTip(tr("Demos (Watch recorded demos)")); |
1443 | 700 |
BtnLoad = addButton(":/res/Save.png", bottomLine, 2, true); |
701 |
BtnLoad->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); |
|
1450 | 702 |
BtnLoad->setToolTip(tr("Load (Load a previously saved game)")); |
586 | 703 |
} |
704 |
||
1153 | 705 |
PageTraining::PageTraining(QWidget* parent) : AbstractPage(parent) |
587 | 706 |
{ |
707 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
708 |
pageLayout->setColumnStretch(0, 1); |
|
709 |
pageLayout->setColumnStretch(1, 2); |
|
710 |
pageLayout->setColumnStretch(2, 1); |
|
711 |
||
712 |
BtnStartTrain = new QPushButton(this); |
|
713 |
BtnStartTrain->setFont(*font14); |
|
714 |
BtnStartTrain->setText(QPushButton::tr("Go!")); |
|
715 |
pageLayout->addWidget(BtnStartTrain, 1, 2); |
|
716 |
||
1153 | 717 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
587 | 718 |
} |
719 |
||
923
b3d097097b54
Use default ammostore string size for weapons number instead of predefined const
unc0rr
parents:
788
diff
changeset
|
720 |
PageSelectWeapon::PageSelectWeapon(QWidget* parent) : |
684 | 721 |
AbstractPage(parent) |
600 | 722 |
{ |
723 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
923
b3d097097b54
Use default ammostore string size for weapons number instead of predefined const
unc0rr
parents:
788
diff
changeset
|
724 |
|
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1522
diff
changeset
|
725 |
pWeapons = new SelWeaponWidget(cDefaultAmmoStore->size(), this); |
718 | 726 |
pageLayout->addWidget(pWeapons, 0, 0, 1, 4); |
600 | 727 |
|
1168 | 728 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
730 | 729 |
BtnDefault = addButton(tr("Default"), pageLayout, 1, 1); |
730 |
BtnDelete = addButton(tr("Delete"), pageLayout, 1, 2); |
|
1168 | 731 |
BtnSave = addButton(":/res/Save.png", pageLayout, 1, 3, true); |
1443 | 732 |
BtnSave->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); |
600 | 733 |
} |
734 |
||
1249
b6670a6ea2d0
Remove 25pix margin on every page, so exit button is almost in the same place on all pages
unc0rr
parents:
1240
diff
changeset
|
735 |
PageInGame::PageInGame(QWidget* parent) : |
686 | 736 |
AbstractPage(parent) |
737 |
{ |
|
738 |
QLabel * label = new QLabel(this); |
|
739 |
label->setText("In game..."); |
|
740 |
} |
|
1311 | 741 |
|
742 |
PageRoomsList::PageRoomsList(QWidget* parent) : |
|
743 |
AbstractPage(parent) |
|
744 |
{ |
|
1312 | 745 |
QGridLayout * pageLayout = new QGridLayout(this); |
1314 | 746 |
|
747 |
roomName = new QLineEdit(this); |
|
1334
b58afaadf7ae
Send team removal message to others in room when client disconnects
unc0rr
parents:
1315
diff
changeset
|
748 |
roomName->setMaxLength(60); |
1314 | 749 |
pageLayout->addWidget(roomName, 0, 0); |
1399 | 750 |
|
751 |
roomsList = new QTableWidget(this); |
|
752 |
roomsList->setColumnCount(3); |
|
753 |
roomsList->setSelectionBehavior(QAbstractItemView::SelectRows); |
|
754 |
roomsList->verticalHeader()->setVisible(false); |
|
755 |
roomsList->horizontalHeader()->setResizeMode(QHeaderView::Interactive); |
|
1894 | 756 |
roomsList->setAlternatingRowColors(true); |
1522 | 757 |
pageLayout->addWidget(roomsList, 1, 0, 3, 1); |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1576
diff
changeset
|
758 |
pageLayout->setRowStretch(2, 100); |
1399 | 759 |
|
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1576
diff
changeset
|
760 |
chatWidget = new HWChatWidget(this); |
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1576
diff
changeset
|
761 |
pageLayout->addWidget(chatWidget, 4, 0, 1, 2); |
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1576
diff
changeset
|
762 |
pageLayout->setRowStretch(4, 350); |
1522 | 763 |
|
1312 | 764 |
BtnCreate = addButton(tr("Create"), pageLayout, 0, 1); |
765 |
BtnJoin = addButton(tr("Join"), pageLayout, 1, 1); |
|
1522 | 766 |
BtnRefresh = addButton(tr("Refresh"), pageLayout, 3, 1); |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
767 |
|
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
768 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 5, 0, true); |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
769 |
BtnAdmin = addButton(tr("Admin features"), pageLayout, 5, 1); |
1314 | 770 |
|
771 |
connect(BtnCreate, SIGNAL(clicked()), this, SLOT(onCreateClick())); |
|
772 |
connect(BtnJoin, SIGNAL(clicked()), this, SLOT(onJoinClick())); |
|
1315 | 773 |
connect(BtnRefresh, SIGNAL(clicked()), this, SLOT(onRefreshClick())); |
1314 | 774 |
connect(roomsList, SIGNAL(doubleClicked (const QModelIndex &)), this, SLOT(onJoinClick())); |
1311 | 775 |
} |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
776 |
|
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
777 |
void PageRoomsList::setAdmin(bool flag) |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
778 |
{ |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
779 |
BtnAdmin->setVisible(flag); |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1840
diff
changeset
|
780 |
} |
1377 | 781 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
782 |
void PageRoomsList::setRoomsList(const QStringList & list) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
783 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
784 |
roomsList->clear(); |
1399 | 785 |
roomsList->setHorizontalHeaderLabels( |
786 |
QStringList() << |
|
787 |
QTableWidget::tr("Room name") << |
|
788 |
QTableWidget::tr("Players number") << |
|
789 |
QTableWidget::tr("Round in progress") |
|
790 |
); |
|
1893 | 791 |
|
792 |
roomsList->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch); |
|
793 |
roomsList->horizontalHeader()->setResizeMode(1, QHeaderView::ResizeToContents); |
|
794 |
roomsList->horizontalHeader()->setResizeMode(2, QHeaderView::ResizeToContents); |
|
795 |
||
1399 | 796 |
|
797 |
if (list.size() % 3) |
|
798 |
return; |
|
799 |
||
800 |
roomsList->setRowCount(list.size() / 3); |
|
801 |
for(int i = 0; i < list.size(); i += 3) |
|
802 |
for(int t = 0; t < 3; t++) |
|
803 |
{ |
|
804 |
QTableWidgetItem * item = new QTableWidgetItem(list[i + t]); |
|
1891 | 805 |
item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable); |
1400 | 806 |
roomsList->setItem(i / 3, t, item); |
1399 | 807 |
} |
808 |
//roomsList->resizeColumnsToContents(); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
809 |
} |
1314 | 810 |
|
811 |
void PageRoomsList::onCreateClick() |
|
812 |
{ |
|
813 |
if (roomName->text().size()) |
|
814 |
emit askForCreateRoom(roomName->text()); |
|
815 |
else |
|
816 |
QMessageBox::critical(this, |
|
817 |
tr("Error"), |
|
1315 | 818 |
tr("Please, enter room name"), |
1314 | 819 |
tr("OK")); |
820 |
} |
|
821 |
||
822 |
void PageRoomsList::onJoinClick() |
|
823 |
{ |
|
1399 | 824 |
QTableWidgetItem * curritem = roomsList->item(roomsList->currentRow(), 0); |
1314 | 825 |
if (!curritem) |
826 |
{ |
|
827 |
QMessageBox::critical(this, |
|
828 |
tr("Error"), |
|
829 |
tr("Please, select room from the list"), |
|
830 |
tr("OK")); |
|
831 |
return ; |
|
832 |
} |
|
833 |
emit askForJoinRoom(curritem->data(Qt::DisplayRole).toString()); |
|
834 |
} |
|
835 |
||
1315 | 836 |
void PageRoomsList::onRefreshClick() |
837 |
{ |
|
838 |
emit askForRoomList(); |
|
839 |
} |
|
840 |
||
1800 | 841 |
|
842 |
PageConnecting::PageConnecting(QWidget* parent) : |
|
843 |
AbstractPage(parent) |
|
844 |
{ |
|
845 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1904 | 846 |
|
847 |
QLabel * lblConnecting = new QLabel(this); |
|
848 |
lblConnecting->setText(tr("Connecting...")); |
|
849 |
pageLayout->addWidget(lblConnecting); |
|
1800 | 850 |
} |
1884 | 851 |
|
852 |
PageScheme::PageScheme(QWidget* parent) : |
|
853 |
AbstractPage(parent) |
|
854 |
{ |
|
855 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1943 | 856 |
QGroupBox * gb = new QGroupBox(this); |
1932 | 857 |
|
858 |
QGridLayout * gl = new QGridLayout(); |
|
859 |
gb->setLayout(gl); |
|
1943 | 860 |
QSizePolicy sp; |
861 |
sp.setVerticalPolicy(QSizePolicy::MinimumExpanding); |
|
862 |
sp.setHorizontalPolicy(QSizePolicy::Expanding); |
|
1885 | 863 |
|
1932 | 864 |
pageLayout->addWidget(gb, 1,0,13,4); |
865 |
||
1984 | 866 |
gbGameModes = new QGroupBox(QGroupBox::tr("Game Modifiers"), gb); |
867 |
gbBasicSettings = new QGroupBox(QGroupBox::tr("Basic Settings"), gb); |
|
1943 | 868 |
|
869 |
gbGameModes->setStyleSheet(".QGroupBox {" |
|
870 |
"background-color: #130f2c; background-image:url();" |
|
871 |
"}"); |
|
872 |
gbBasicSettings->setStyleSheet(".QGroupBox {" |
|
873 |
"background-color: #130f2c; background-image:url();" |
|
874 |
"}"); |
|
875 |
||
876 |
gbGameModes->setSizePolicy(sp); |
|
877 |
gbBasicSettings->setSizePolicy(sp); |
|
878 |
gl->addWidget(gbGameModes,0,0,1,3,Qt::AlignTop); |
|
879 |
gl->addWidget(gbBasicSettings,0,3,1,3,Qt::AlignTop); |
|
1932 | 880 |
|
881 |
QGridLayout * glGMLayout = new QGridLayout(gbGameModes); |
|
882 |
QGridLayout * glBSLayout = new QGridLayout(gbBasicSettings); |
|
883 |
gbGameModes->setLayout(glGMLayout); |
|
884 |
gbBasicSettings->setLayout(glBSLayout); |
|
885 |
// Left |
|
886 |
||
887 |
TBW_mode_Forts = new ToggleButtonWidget(gbGameModes, ":/res/btnForts.png"); |
|
888 |
TBW_mode_Forts->setText(ToggleButtonWidget::tr("Fort Mode")); |
|
889 |
glGMLayout->addWidget(TBW_mode_Forts,0,0,1,1); |
|
1885 | 890 |
|
1932 | 891 |
TBW_teamsDivide = new ToggleButtonWidget(gbGameModes, ":/res/btnTeamsDivide.png"); |
892 |
TBW_teamsDivide->setText(ToggleButtonWidget::tr("Divide Teams")); |
|
893 |
glGMLayout->addWidget(TBW_teamsDivide,0,1,1,1); |
|
1885 | 894 |
|
1932 | 895 |
TBW_solid = new ToggleButtonWidget(gbGameModes, ":/res/btnSolid.png"); |
896 |
TBW_solid->setText(ToggleButtonWidget::tr("Solid Land")); |
|
897 |
glGMLayout->addWidget(TBW_solid,0,2,1,1); |
|
1885 | 898 |
|
1932 | 899 |
TBW_border = new ToggleButtonWidget(gbGameModes, ":/res/btnBorder.png"); |
900 |
TBW_border->setText(ToggleButtonWidget::tr("Add Border")); |
|
901 |
glGMLayout->addWidget(TBW_border,0,3,1,1); |
|
1895 | 902 |
|
1932 | 903 |
TBW_lowGravity = new ToggleButtonWidget(gbGameModes, ":/res/btnLowGravity.png"); |
904 |
TBW_lowGravity->setText(ToggleButtonWidget::tr("Low Gravity")); |
|
905 |
glGMLayout->addWidget(TBW_lowGravity,1,0,1,1); |
|
906 |
||
907 |
TBW_laserSight = new ToggleButtonWidget(gbGameModes, ":/res/btnLaserSight.png"); |
|
908 |
TBW_laserSight->setText(ToggleButtonWidget::tr("Laser Sight")); |
|
909 |
glGMLayout->addWidget(TBW_laserSight,1,1,1,1); |
|
1895 | 910 |
|
1932 | 911 |
TBW_invulnerable = new ToggleButtonWidget(gbGameModes, ":/res/btnInvurnable.png"); |
912 |
TBW_invulnerable->setText(ToggleButtonWidget::tr("Invulnerable")); |
|
913 |
glGMLayout->addWidget(TBW_invulnerable,1,2,1,1); |
|
914 |
||
915 |
TBW_mines = new ToggleButtonWidget(gbGameModes, ":/res/btnMines.png"); |
|
916 |
TBW_mines->setText(ToggleButtonWidget::tr("Add Mines")); |
|
917 |
glGMLayout->addWidget(TBW_mines,1,3,1,1); |
|
1895 | 918 |
|
2017 | 919 |
TBW_vampiric = new ToggleButtonWidget(gbGameModes, ":/res/btnVampiric.png"); |
920 |
TBW_vampiric->setText(ToggleButtonWidget::tr("Vampirism")); |
|
921 |
glGMLayout->addWidget(TBW_vampiric,2,0,1,1); |
|
922 |
||
923 |
TBW_karma = new ToggleButtonWidget(gbGameModes, ":/res/btnKarma.png"); |
|
924 |
TBW_karma->setText(ToggleButtonWidget::tr("Karma")); |
|
925 |
glGMLayout->addWidget(TBW_karma,2,1,1,1); |
|
926 |
||
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
927 |
TBW_artillery = new ToggleButtonWidget(gbGameModes, ":/res/btnArtillery.png"); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
928 |
TBW_artillery->setText(ToggleButtonWidget::tr("Artillery")); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
929 |
glGMLayout->addWidget(TBW_artillery,2,2,1,1); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
930 |
|
1932 | 931 |
// Right |
932 |
QLabel * l; |
|
933 |
||
934 |
l = new QLabel(gbBasicSettings); |
|
935 |
l->setText(QLabel::tr("Damage Modifier")); |
|
1933 | 936 |
l->setWordWrap(true); |
1932 | 937 |
glBSLayout->addWidget(l,0,0,1,1); |
938 |
l = new QLabel(gbBasicSettings); |
|
939 |
l->setFixedSize(32,32); |
|
940 |
l->setPixmap(QPixmap(":/res/iconDamage.png")); |
|
1943 | 941 |
glBSLayout->addWidget(l,0,1,1,1); |
1932 | 942 |
|
943 |
SB_DamageModifier = new QSpinBox(gbBasicSettings); |
|
1895 | 944 |
SB_DamageModifier->setRange(10, 300); |
945 |
SB_DamageModifier->setValue(100); |
|
946 |
SB_DamageModifier->setSingleStep(25); |
|
1943 | 947 |
glBSLayout->addWidget(SB_DamageModifier,0,2,1,1); |
1932 | 948 |
|
949 |
l = new QLabel(gbBasicSettings); |
|
950 |
l->setText(QLabel::tr("Turn Time")); |
|
1933 | 951 |
l->setWordWrap(true); |
1932 | 952 |
glBSLayout->addWidget(l,1,0,1,1); |
953 |
l = new QLabel(gbBasicSettings); |
|
954 |
l->setFixedSize(32,32); |
|
955 |
l->setPixmap(QPixmap(":/res/iconTime.png")); |
|
1943 | 956 |
glBSLayout->addWidget(l,1,1,1,1); |
1895 | 957 |
|
1932 | 958 |
SB_TurnTime = new QSpinBox(gbBasicSettings); |
1885 | 959 |
SB_TurnTime->setRange(1, 99); |
960 |
SB_TurnTime->setValue(45); |
|
961 |
SB_TurnTime->setSingleStep(15); |
|
1943 | 962 |
glBSLayout->addWidget(SB_TurnTime,1,2,1,1); |
1885 | 963 |
|
1932 | 964 |
l = new QLabel(gbBasicSettings); |
965 |
l->setText(QLabel::tr("Initial Health")); |
|
1933 | 966 |
l->setWordWrap(true); |
1932 | 967 |
glBSLayout->addWidget(l,2,0,1,1); |
968 |
l = new QLabel(gbBasicSettings); |
|
969 |
l->setFixedSize(32,32); |
|
970 |
l->setPixmap(QPixmap(":/res/iconHealth.png")); |
|
1943 | 971 |
glBSLayout->addWidget(l,2,1,1,1); |
1932 | 972 |
|
973 |
SB_InitHealth = new QSpinBox(gbBasicSettings); |
|
1885 | 974 |
SB_InitHealth->setRange(50, 200); |
975 |
SB_InitHealth->setValue(100); |
|
976 |
SB_InitHealth->setSingleStep(25); |
|
1943 | 977 |
glBSLayout->addWidget(SB_InitHealth,2,2,1,1); |
1885 | 978 |
|
1932 | 979 |
l = new QLabel(gbBasicSettings); |
980 |
l->setText(QLabel::tr("Sudden Death Timeout")); |
|
1933 | 981 |
l->setWordWrap(true); |
1932 | 982 |
glBSLayout->addWidget(l,3,0,1,1); |
983 |
l = new QLabel(gbBasicSettings); |
|
984 |
l->setFixedSize(32,32); |
|
985 |
l->setPixmap(QPixmap(":/res/iconSuddenDeath.png")); |
|
1943 | 986 |
glBSLayout->addWidget(l,3,1,1,1); |
1932 | 987 |
|
988 |
SB_SuddenDeath = new QSpinBox(gbBasicSettings); |
|
1885 | 989 |
SB_SuddenDeath->setRange(0, 50); |
990 |
SB_SuddenDeath->setValue(15); |
|
991 |
SB_SuddenDeath->setSingleStep(3); |
|
1943 | 992 |
glBSLayout->addWidget(SB_SuddenDeath,3,2,1,1); |
1885 | 993 |
|
1932 | 994 |
l = new QLabel(gbBasicSettings); |
1943 | 995 |
l->setText(QLabel::tr("Crate Drops")); |
1933 | 996 |
l->setWordWrap(true); |
1932 | 997 |
glBSLayout->addWidget(l,4,0,1,1); |
998 |
l = new QLabel(gbBasicSettings); |
|
999 |
l->setFixedSize(32,32); |
|
1000 |
l->setPixmap(QPixmap(":/res/iconBox.png")); |
|
1943 | 1001 |
glBSLayout->addWidget(l,4,1,1,1); |
1932 | 1002 |
|
1003 |
SB_CaseProb = new FreqSpinBox(gbBasicSettings); |
|
1885 | 1004 |
SB_CaseProb->setRange(0, 9); |
1005 |
SB_CaseProb->setValue(5); |
|
1943 | 1006 |
glBSLayout->addWidget(SB_CaseProb,4,2,1,1); |
1932 | 1007 |
|
1008 |
||
1009 |
l = new QLabel(gbBasicSettings); |
|
1010 |
l->setText(QLabel::tr("Scheme Name:")); |
|
1885 | 1011 |
|
1012 |
LE_name = new QLineEdit(this); |
|
1932 | 1013 |
|
1943 | 1014 |
gl->addWidget(LE_name,14,1,1,5); |
1932 | 1015 |
gl->addWidget(l,14,0,1,1); |
1885 | 1016 |
|
1017 |
mapper = new QDataWidgetMapper(this); |
|
1887 | 1018 |
|
1895 | 1019 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 15, 0, true); |
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1020 |
BtnNew = addButton(tr("New"), pageLayout, 15, 2); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1021 |
BtnDelete = addButton(tr("Delete"), pageLayout, 15, 3); |
1887 | 1022 |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1023 |
selectScheme = new QComboBox(this); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1024 |
pageLayout->addWidget(selectScheme, 15, 1); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1025 |
|
1889 | 1026 |
connect(BtnNew, SIGNAL(clicked()), this, SLOT(newRow())); |
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1027 |
connect(BtnDelete, SIGNAL(clicked()), this, SLOT(deleteRow())); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1028 |
connect(selectScheme, SIGNAL(currentIndexChanged(int)), mapper, SLOT(setCurrentIndex(int))); |
1984 | 1029 |
connect(selectScheme, SIGNAL(currentIndexChanged(int)), this, SLOT(schemeSelected(int))); |
1887 | 1030 |
} |
1031 |
||
1032 |
void PageScheme::setModel(QAbstractItemModel * model) |
|
1033 |
{ |
|
1034 |
mapper->setModel(model); |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1035 |
selectScheme->setModel(model); |
1887 | 1036 |
|
1885 | 1037 |
mapper->addMapping(LE_name, 0); |
1932 | 1038 |
mapper->addMapping(TBW_mode_Forts->button(), 1); |
1039 |
mapper->addMapping(TBW_teamsDivide->button(), 2); |
|
1040 |
mapper->addMapping(TBW_solid->button(), 3); |
|
1041 |
mapper->addMapping(TBW_border->button(), 4); |
|
1042 |
mapper->addMapping(TBW_lowGravity->button(), 5); |
|
1043 |
mapper->addMapping(TBW_laserSight->button(), 6); |
|
1044 |
mapper->addMapping(TBW_invulnerable->button(), 7); |
|
1045 |
mapper->addMapping(TBW_mines->button(), 8); |
|
2017 | 1046 |
mapper->addMapping(TBW_vampiric->button(), 9); |
1047 |
mapper->addMapping(TBW_karma->button(), 10); |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1048 |
mapper->addMapping(TBW_artillery->button(), 11); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1049 |
mapper->addMapping(SB_DamageModifier, 12); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1050 |
mapper->addMapping(SB_TurnTime, 13); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1051 |
mapper->addMapping(SB_InitHealth, 14); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1052 |
mapper->addMapping(SB_SuddenDeath, 15); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
1053 |
mapper->addMapping(SB_CaseProb, 16); |
1887 | 1054 |
|
1055 |
mapper->toFirst(); |
|
1884 | 1056 |
} |
1889 | 1057 |
|
1058 |
void PageScheme::newRow() |
|
1059 |
{ |
|
1060 |
QAbstractItemModel * model = mapper->model(); |
|
1061 |
model->insertRow(model->rowCount()); |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1062 |
selectScheme->setCurrentIndex(model->rowCount() - 1); |
1889 | 1063 |
} |
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1064 |
|
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1065 |
void PageScheme::deleteRow() |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1066 |
{ |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1067 |
QAbstractItemModel * model = mapper->model(); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1068 |
model->removeRow(selectScheme->currentIndex()); |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1895
diff
changeset
|
1069 |
} |
1905 | 1070 |
|
1984 | 1071 |
void PageScheme::schemeSelected(int n) |
1072 |
{ |
|
1073 |
gbGameModes->setEnabled(n >= 4); // FIXME: derive number from model |
|
1074 |
gbBasicSettings->setEnabled(n >= 4); |
|
1075 |
LE_name->setEnabled(n >= 4); |
|
1076 |
} |
|
1077 |
||
1905 | 1078 |
///////////////////////////////////////////////// |
1079 |
||
1080 |
PageAdmin::PageAdmin(QWidget* parent) : |
|
1081 |
AbstractPage(parent) |
|
1082 |
{ |
|
1083 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1084 |
||
1924 | 1085 |
QLabel * lblSM = new QLabel(this); |
1086 |
lblSM->setText(tr("Server message:")); |
|
1087 |
pageLayout->addWidget(lblSM, 0, 0); |
|
1088 |
||
1089 |
leServerMessage = new QLineEdit(this); |
|
1090 |
pageLayout->addWidget(leServerMessage, 0, 1); |
|
1091 |
||
1092 |
pbSetSM = addButton(tr("Set message"), pageLayout, 0, 2); |
|
1905 | 1093 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
1924 | 1094 |
|
1095 |
connect(pbSetSM, SIGNAL(clicked()), this, SLOT(smChanged())); |
|
1905 | 1096 |
} |
1924 | 1097 |
|
1098 |
void PageAdmin::smChanged() |
|
1099 |
{ |
|
1100 |
emit setServerMessage(leServerMessage->text()); |
|
1101 |
} |
|
1102 |
||
1103 |
void PageAdmin::serverMessage(const QString & str) |
|
1104 |
{ |
|
1105 |
leServerMessage->setText(str); |
|
1106 |
} |
|
1950 | 1107 |
|
1108 |
///////////////////////////////////////////////// |
|
1109 |
||
1110 |
PageNetType::PageNetType(QWidget* parent) : AbstractPage(parent) |
|
1111 |
{ |
|
1112 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1113 |
pageLayout->setRowStretch(0, 10); |
|
1977 | 1114 |
pageLayout->setRowStretch(3, 10); |
1115 |
||
1116 |
pageLayout->setColumnStretch(1, 10); |
|
1117 |
pageLayout->setColumnStretch(2, 20); |
|
1118 |
pageLayout->setColumnStretch(3, 10); |
|
1950 | 1119 |
|
1977 | 1120 |
BtnLAN = addButton(tr("LAN game"), pageLayout, 1, 2); |
1121 |
BtnOfficialServer = addButton(tr("Official server"), pageLayout, 2, 2); |
|
1950 | 1122 |
|
1977 | 1123 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 4, 0, true); |
1950 | 1124 |
} |