author | unc0rr |
Tue, 05 Aug 2008 21:12:26 +0000 | |
changeset 1153 | 825931b81ad4 |
parent 1152 | c72b939c00df |
child 1157 | c2e02c52dcad |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
486 | 3 |
* Copyright (c) 2006, 2007 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> |
184 | 35 |
|
36 |
#include "pages.h" |
|
37 |
#include "sdlkeys.h" |
|
38 |
#include "hwconsts.h" |
|
39 |
#include "gamecfgwidget.h" |
|
40 |
#include "teamselect.h" |
|
41 |
#include "gamecfgwidget.h" |
|
42 |
#include "SquareLabel.h" |
|
43 |
#include "mapContainer.h" |
|
187 | 44 |
#include "about.h" |
297 | 45 |
#include "fpsedit.h" |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
46 |
#include "netserverslist.h" |
412 | 47 |
#include "netudpwidget.h" |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
48 |
#include "netwwwwidget.h" |
461 | 49 |
#include "chatwidget.h" |
555 | 50 |
#include "SDLs.h" |
579 | 51 |
#include "playrecordpage.h" |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
603
diff
changeset
|
52 |
#include "selectWeapon.h" |
184 | 53 |
|
684 | 54 |
PageMain::PageMain(QWidget* parent) : |
55 |
AbstractPage(parent) |
|
184 | 56 |
{ |
57 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
1150 | 58 |
//pageLayout->setMargin(25); |
1148 | 59 |
//pageLayout->setColumnStretch(0, 1); |
60 |
//pageLayout->setColumnStretch(1, 2); |
|
61 |
//pageLayout->setColumnStretch(2, 1); |
|
184 | 62 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
63 |
QPushButton* btnLogo = addButton(":/res/HedgewarsTitle.png", pageLayout, 0, 0, 1, 4, true); |
1150 | 64 |
pageLayout->setAlignment(btnLogo, Qt::AlignHCenter); |
1148 | 65 |
pageLayout->setRowStretch(0, 1); |
1150 | 66 |
pageLayout->setRowStretch(1, 1); |
67 |
pageLayout->setRowStretch(2, 0); |
|
68 |
pageLayout->setRowStretch(3, 1); |
|
184 | 69 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
70 |
BtnSinglePlayer = addButton(":/res/LocalPlay.png", pageLayout, 2, 0, 1, 2, true); |
1150 | 71 |
pageLayout->setAlignment(BtnSinglePlayer, Qt::AlignHCenter); |
184 | 72 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
73 |
BtnNet = addButton(":/res/NetworkPlay.png", pageLayout, 2, 2, 1, 2, true); |
1150 | 74 |
pageLayout->setAlignment(BtnNet, Qt::AlignHCenter); |
579 | 75 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
76 |
BtnSetup = addButton(":/res/Settings.png", pageLayout, 3, 3, true); |
184 | 77 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
78 |
BtnInfo = addButton(":/res/About.png", pageLayout, 3, 1, 1, 2, true); |
1150 | 79 |
pageLayout->setAlignment(BtnInfo, Qt::AlignHCenter); |
184 | 80 |
|
1152
c72b939c00df
Make buttons border have different colors when mouse is over or it is pressed
unc0rr
parents:
1151
diff
changeset
|
81 |
BtnExit = addButton(":/res/Exit.png", pageLayout, 3, 0, 1, 1, true); |
184 | 82 |
} |
83 |
||
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
730
diff
changeset
|
84 |
PageEditTeam::PageEditTeam(QWidget* parent) : |
692 | 85 |
AbstractPage(parent) |
184 | 86 |
{ |
87 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
310 | 88 |
pageLayout->setColumnStretch(0, 1); |
184 | 89 |
pageLayout->setColumnMinimumWidth(0, 150); |
90 |
pageLayout->setColumnStretch(1, 100); |
|
336 | 91 |
pageLayout->setColumnMinimumWidth(1, 210); |
451 | 92 |
pageLayout->setColumnStretch(2, 75); |
336 | 93 |
pageLayout->setColumnMinimumWidth(2, 110); |
451 | 94 |
pageLayout->setColumnStretch(3, 75); |
336 | 95 |
pageLayout->setColumnMinimumWidth(3, 110); |
184 | 96 |
|
97 |
GBoxTeam = new QGroupBox(this); |
|
98 |
GBoxTeam->setTitle(QGroupBox::tr("Team")); |
|
99 |
GBoxTeam->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
100 |
QGridLayout * GBTLayout = new QGridLayout(GBoxTeam); |
|
101 |
TeamNameEdit = new QLineEdit(GBoxTeam); |
|
102 |
TeamNameEdit->setMaxLength(15); |
|
231 | 103 |
GBTLayout->addWidget(TeamNameEdit, 0, 0, 1, 0); |
104 |
||
184 | 105 |
pageLayout->addWidget(GBoxTeam, 0, 0); |
106 |
||
588 | 107 |
GBoxHedgehogs = new QGroupBox(this); |
184 | 108 |
GBoxHedgehogs->setTitle(QGroupBox::tr("Team Members")); |
109 |
GBoxHedgehogs->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
110 |
QGridLayout * GBHLayout = new QGridLayout(GBoxHedgehogs); |
|
111 |
for(int i = 0; i < 8; i++) |
|
112 |
{ |
|
113 |
HHNameEdit[i] = new QLineEdit(GBoxHedgehogs); |
|
114 |
HHNameEdit[i]->setGeometry(QRect(10, 20 + i * 30, 141, 20)); |
|
115 |
HHNameEdit[i]->setMaxLength(15); |
|
116 |
GBHLayout->addWidget(HHNameEdit[i]); |
|
117 |
} |
|
118 |
pageLayout->addWidget(GBoxHedgehogs, 1, 0, 2, 1); |
|
119 |
||
1153 | 120 |
BtnTeamDiscard = addButton(":/res/Exit.png", pageLayout, 4, 0, true); |
184 | 121 |
|
588 | 122 |
GBoxBinds = new QGroupBox(this); |
184 | 123 |
GBoxBinds->setTitle(QGroupBox::tr("Key binds")); |
124 |
QGridLayout * GBBLayout = new QGridLayout(GBoxBinds); |
|
125 |
BindsBox = new QToolBox(GBoxBinds); |
|
126 |
BindsBox->setLineWidth(0); |
|
127 |
GBBLayout->addWidget(BindsBox); |
|
128 |
page_A = new QWidget(); |
|
129 |
BindsBox->addItem(page_A, QToolBox::tr("Actions")); |
|
130 |
page_W = new QWidget(); |
|
131 |
BindsBox->addItem(page_W, QToolBox::tr("Weapons")); |
|
132 |
page_WP = new QWidget(); |
|
133 |
BindsBox->addItem(page_WP, QToolBox::tr("Weapon properties")); |
|
134 |
page_O = new QWidget(); |
|
135 |
BindsBox->addItem(page_O, QToolBox::tr("Other")); |
|
136 |
pageLayout->addWidget(GBoxBinds, 0, 1, 5, 1); |
|
137 |
||
138 |
QStringList binds; |
|
139 |
for(int i = 0; strlen(sdlkeys[i][1]) > 0; i++) |
|
140 |
{ |
|
141 |
binds << sdlkeys[i][1]; |
|
142 |
} |
|
143 |
||
144 |
quint16 widind = 0, i = 0; |
|
145 |
while (i < BINDS_NUMBER) { |
|
146 |
quint16 num = 0; |
|
147 |
QGridLayout * pagelayout = new QGridLayout(BindsBox->widget(widind)); |
|
148 |
do { |
|
149 |
LBind[i] = new QLabel(BindsBox->widget(widind)); |
|
150 |
LBind[i]->setText(QApplication::translate("binds", cbinds[i].name)); |
|
151 |
LBind[i]->setAlignment(Qt::AlignRight); |
|
152 |
pagelayout->addWidget(LBind[i], num, 0); |
|
153 |
CBBind[i] = new QComboBox(BindsBox->widget(widind)); |
|
154 |
CBBind[i]->addItems(binds); |
|
155 |
pagelayout->addWidget(CBBind[i], num, 1); |
|
156 |
num++; |
|
157 |
} while (!cbinds[i++].chwidget); |
|
158 |
pagelayout->addWidget(new QWidget(BindsBox->widget(widind)), num, 0, 1, 2); |
|
159 |
widind++; |
|
160 |
} |
|
161 |
||
588 | 162 |
GBoxGrave = new QGroupBox(this); |
184 | 163 |
GBoxGrave->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
164 |
GBoxGrave->setTitle(QGroupBox::tr("Grave")); |
|
165 |
QGridLayout * GBGLayout = new QGridLayout(GBoxGrave); |
|
166 |
CBGrave = new QComboBox(GBoxGrave); |
|
167 |
CBGrave->setMaxCount(65535); |
|
168 |
GBGLayout->addWidget(CBGrave, 0, 0, 1, 3); |
|
169 |
GravePreview = new QLabel(GBoxGrave); |
|
170 |
GravePreview->setScaledContents(false); |
|
336 | 171 |
pageLayout->addWidget(GBoxGrave, 0, 3, 2, 1); |
184 | 172 |
GBGLayout->addWidget(GravePreview, 1, 1); |
336 | 173 |
|
174 |
GBoxTeamLvl = new QGroupBox(this); |
|
175 |
GBoxTeamLvl->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
176 |
GBoxTeamLvl->setTitle(QGroupBox::tr("Team level")); |
|
177 |
QGridLayout * GBTLLayout = new QGridLayout(GBoxTeamLvl); |
|
178 |
CBTeamLvl = new QComboBox(GBoxTeamLvl); |
|
179 |
CBTeamLvl->addItem(QComboBox::tr("Human")); |
|
427 | 180 |
CBTeamLvl->addItem(QComboBox::tr("Level 5")); |
181 |
CBTeamLvl->addItem(QComboBox::tr("Level 4")); |
|
336 | 182 |
CBTeamLvl->addItem(QComboBox::tr("Level 3")); |
427 | 183 |
CBTeamLvl->addItem(QComboBox::tr("Level 2")); |
184 |
CBTeamLvl->addItem(QComboBox::tr("Level 1")); |
|
336 | 185 |
CBTeamLvl->setMaxCount(6); |
186 |
GBTLLayout->addWidget(CBTeamLvl, 0, 0, 1, 3); |
|
187 |
LevelPict = new QLabel(GBoxTeamLvl); |
|
188 |
LevelPict->setScaledContents(false); |
|
189 |
LevelPict->setFixedSize(32, 32); |
|
190 |
pageLayout->addWidget(GBoxTeamLvl, 0, 2, 2, 1); |
|
191 |
GBTLLayout->addWidget(LevelPict, 1, 1); |
|
184 | 192 |
|
193 |
GBoxFort = new QGroupBox(this); |
|
194 |
GBoxFort->setTitle(QGroupBox::tr("Fort")); |
|
195 |
QGridLayout * GBFLayout = new QGridLayout(GBoxFort); |
|
196 |
CBFort = new QComboBox(GBoxFort); |
|
197 |
CBFort->setMaxCount(65535); |
|
198 |
GBFLayout->addWidget(CBFort, 0, 0); |
|
588 | 199 |
FortPreview = new SquareLabel(GBoxFort); |
310 | 200 |
FortPreview->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
184 | 201 |
FortPreview->setPixmap(QPixmap()); |
202 |
GBFLayout->addWidget(FortPreview, 1, 0); |
|
336 | 203 |
pageLayout->addWidget(GBoxFort, 2, 2, 1, 2); |
184 | 204 |
|
730 | 205 |
BtnTeamSave = addButton(tr("Save"), pageLayout, 4, 2, 1, 2); |
184 | 206 |
|
207 |
QDir tmpdir; |
|
208 |
tmpdir.cd(datadir->absolutePath()); |
|
209 |
tmpdir.cd("Forts"); |
|
210 |
tmpdir.setFilter(QDir::Files); |
|
211 |
||
603 | 212 |
CBFort->addItems(tmpdir.entryList(QStringList("*L.png")).replaceInStrings(QRegExp("^(.*)L\\.png"), "\\1")); |
184 | 213 |
tmpdir.cd("../Graphics/Graves"); |
214 |
QStringList list = tmpdir.entryList(QStringList("*.png")); |
|
215 |
for (QStringList::Iterator it = list.begin(); it != list.end(); ++it ) |
|
216 |
{ |
|
603 | 217 |
CBGrave->addItem((*it).replace(QRegExp("^(.*)\\.png"), "\\1")); |
184 | 218 |
} |
219 |
||
220 |
connect(CBGrave, SIGNAL(activated(const QString &)), this, SLOT(CBGrave_activated(const QString &))); |
|
336 | 221 |
connect(CBTeamLvl, SIGNAL(activated(int)), this, SLOT(CBTeamLvl_activated(int))); |
184 | 222 |
connect(CBFort, SIGNAL(activated(const QString &)), this, SLOT(CBFort_activated(const QString &))); |
223 |
} |
|
224 |
||
225 |
void PageEditTeam::CBGrave_activated(const QString & gravename) |
|
226 |
{ |
|
227 |
QPixmap pix(datadir->absolutePath() + "/Graphics/Graves/" + gravename + ".png"); |
|
228 |
GravePreview->setPixmap(pix.copy(0, 0, 32, 32)); |
|
229 |
} |
|
230 |
||
231 |
void PageEditTeam::CBFort_activated(const QString & fortname) |
|
232 |
{ |
|
233 |
QPixmap pix(datadir->absolutePath() + "/Forts/" + fortname + "L.png"); |
|
234 |
FortPreview->setPixmap(pix); |
|
235 |
} |
|
236 |
||
336 | 237 |
void PageEditTeam::CBTeamLvl_activated(int id) |
238 |
{ |
|
239 |
QPixmap pix(QString(":/res/botlevels/%1.png").arg(id)); |
|
240 |
LevelPict->setPixmap(pix); |
|
241 |
} |
|
242 |
||
692 | 243 |
PageMultiplayer::PageMultiplayer(QWidget* parent) : |
244 |
AbstractPage(parent) |
|
184 | 245 |
{ |
246 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
247 |
||
1153 | 248 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
187 | 249 |
|
184 | 250 |
gameCFG = new GameCFGWidget(this); |
251 |
pageLayout->addWidget(gameCFG, 0, 0, 1, 2); |
|
696 | 252 |
|
184 | 253 |
teamsSelect = new TeamSelWidget(this); |
254 |
pageLayout->addWidget(teamsSelect, 0, 2, 1, 2); |
|
255 |
||
730 | 256 |
BtnStartMPGame = addButton(tr("Start"), pageLayout, 1, 3); |
184 | 257 |
} |
258 |
||
692 | 259 |
PageOptions::PageOptions(QWidget* parent) : |
260 |
AbstractPage(parent) |
|
184 | 261 |
{ |
262 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
427 | 263 |
pageLayout->setColumnStretch(0, 100); |
264 |
pageLayout->setColumnStretch(1, 100); |
|
265 |
pageLayout->setColumnStretch(2, 100); |
|
266 |
pageLayout->setRowStretch(0, 0); |
|
267 |
pageLayout->setRowStretch(1, 0); |
|
719 | 268 |
pageLayout->setRowStretch(2, 0); |
269 |
pageLayout->setRowStretch(3, 100); |
|
270 |
pageLayout->setRowStretch(4, 0); |
|
427 | 271 |
|
184 | 272 |
groupBox = new QGroupBox(this); |
273 |
groupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
274 |
groupBox->setTitle(QGroupBox::tr("Teams")); |
|
275 |
pageLayout->addWidget(groupBox, 0, 0, 1, 3); |
|
276 |
||
277 |
QGridLayout * GBTlayout = new QGridLayout(groupBox); |
|
692 | 278 |
|
730 | 279 |
BtnNewTeam = addButton(tr("New team"), GBTlayout, 0, 0); |
184 | 280 |
|
281 |
CBTeamName = new QComboBox(groupBox); |
|
282 |
GBTlayout->addWidget(CBTeamName, 0, 1); |
|
283 |
||
730 | 284 |
BtnEditTeam = addButton(tr("Edit team"), GBTlayout, 0, 2); |
184 | 285 |
|
286 |
AGGroupBox = new QGroupBox(this); |
|
287 |
AGGroupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
288 |
AGGroupBox->setTitle(QGroupBox::tr("Audio/Graphic options")); |
|
693 | 289 |
pageLayout->addWidget(AGGroupBox, 2, 1); |
184 | 290 |
|
427 | 291 |
QVBoxLayout * GBAlayout = new QVBoxLayout(AGGroupBox); |
436 | 292 |
QHBoxLayout * GBAreslayout = new QHBoxLayout(0); |
427 | 293 |
QLabel * resolution = new QLabel(AGGroupBox); |
294 |
resolution->setText(QLabel::tr("Resolution")); |
|
295 |
GBAreslayout->addWidget(resolution); |
|
296 |
||
184 | 297 |
CBResolution = new QComboBox(AGGroupBox); |
555 | 298 |
SDLInteraction sdli; |
299 |
CBResolution->addItems(sdli.getResolutions()); |
|
427 | 300 |
GBAreslayout->addWidget(CBResolution); |
301 |
GBAlayout->addLayout(GBAreslayout); |
|
302 |
||
436 | 303 |
QHBoxLayout * GBAfpslayout = new QHBoxLayout(0); |
427 | 304 |
QLabel * maxfps = new QLabel(AGGroupBox); |
305 |
maxfps->setText(QLabel::tr("FPS limit")); |
|
306 |
GBAfpslayout->addWidget(maxfps); |
|
307 |
GBAlayout->addLayout(GBAfpslayout); |
|
184 | 308 |
|
309 |
CBFullscreen = new QCheckBox(AGGroupBox); |
|
310 |
CBFullscreen->setText(QCheckBox::tr("Fullscreen")); |
|
427 | 311 |
GBAlayout->addWidget(CBFullscreen); |
184 | 312 |
|
313 |
CBEnableSound = new QCheckBox(AGGroupBox); |
|
314 |
CBEnableSound->setText(QCheckBox::tr("Enable sound")); |
|
427 | 315 |
GBAlayout->addWidget(CBEnableSound); |
184 | 316 |
|
1129 | 317 |
CBEnableMusic = new QCheckBox(AGGroupBox); |
318 |
CBEnableMusic->setText(QCheckBox::tr("Enable music")); |
|
319 |
GBAlayout->addWidget(CBEnableMusic); |
|
320 |
||
297 | 321 |
CBShowFPS = new QCheckBox(AGGroupBox); |
322 |
CBShowFPS->setText(QCheckBox::tr("Show FPS")); |
|
427 | 323 |
GBAlayout->addWidget(CBShowFPS); |
297 | 324 |
|
529 | 325 |
CBAltDamage = new QCheckBox(AGGroupBox); |
326 |
CBAltDamage->setText(QCheckBox::tr("Alternative damage show")); |
|
327 |
GBAlayout->addWidget(CBAltDamage); |
|
328 |
||
297 | 329 |
fpsedit = new FPSEdit(AGGroupBox); |
427 | 330 |
GBAfpslayout->addWidget(fpsedit); |
184 | 331 |
|
730 | 332 |
BtnSaveOptions = addButton(tr("Save"), pageLayout, 4, 2); |
184 | 333 |
|
1153 | 334 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 4, 0, true); |
597
ec5f057ab268
kdevelop project add, initial weapons scheme button
displacer
parents:
588
diff
changeset
|
335 |
|
693 | 336 |
QGroupBox* groupWeapons = new QGroupBox(this); |
337 |
groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
|
338 |
groupWeapons->setTitle(QGroupBox::tr("Weapons")); |
|
339 |
pageLayout->addWidget(groupWeapons, 1, 0, 1, 3); |
|
340 |
QGridLayout * WeaponsLayout = new QGridLayout(groupWeapons); |
|
341 |
||
730 | 342 |
WeaponsButt = addButton(tr("Weapons set"), WeaponsLayout, 0, 0); |
693 | 343 |
WeaponsName = new QComboBox(this); |
344 |
WeaponsLayout->addWidget(WeaponsName, 0, 1); |
|
730 | 345 |
WeaponEdit = addButton(tr("Edit"), WeaponsLayout, 0, 2); |
597
ec5f057ab268
kdevelop project add, initial weapons scheme button
displacer
parents:
588
diff
changeset
|
346 |
|
647 | 347 |
NNGroupBox = new QGroupBox(this); |
348 |
NNGroupBox->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); |
|
349 |
NNGroupBox->setTitle(QGroupBox::tr("Net options")); |
|
693 | 350 |
pageLayout->addWidget(NNGroupBox, 2, 2); |
647 | 351 |
|
352 |
QGridLayout * GBNlayout = new QGridLayout(NNGroupBox); |
|
353 |
labelNN = new QLabel(NNGroupBox); |
|
354 |
labelNN->setText(QLabel::tr("Net nick")); |
|
355 |
GBNlayout->addWidget(labelNN, 0, 0); |
|
356 |
||
357 |
editNetNick = new QLineEdit(NNGroupBox); |
|
358 |
editNetNick->setMaxLength(20); |
|
359 |
editNetNick->setText(QLineEdit::tr("unnamed")); |
|
360 |
GBNlayout->addWidget(editNetNick, 0, 1); |
|
184 | 361 |
} |
362 |
||
1153 | 363 |
PageNet::PageNet(QWidget* parent) : AbstractPage(parent) |
184 | 364 |
{ |
365 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
366 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
367 |
pageLayout->setColumnStretch(0, 1); |
|
368 |
pageLayout->setColumnStretch(1, 1); |
|
617 | 369 |
pageLayout->setColumnStretch(2, 1); |
421 | 370 |
|
371 |
BtnNetSvrStart = new QPushButton(this); |
|
372 |
BtnNetSvrStart->setFont(*font14); |
|
373 |
BtnNetSvrStart->setText(QPushButton::tr("Start server")); |
|
617 | 374 |
pageLayout->addWidget(BtnNetSvrStart, 3, 2); |
184 | 375 |
|
636 | 376 |
QGroupBox * NetTypeGroupBox = new QGroupBox(this); |
377 |
NetTypeGroupBox->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); |
|
668 | 378 |
NetTypeGroupBox->setTitle(QGroupBox::tr("Servers list")); |
636 | 379 |
pageLayout->addWidget(NetTypeGroupBox, 0, 1); |
380 |
||
381 |
QVBoxLayout * GBTlayout = new QVBoxLayout(NetTypeGroupBox); |
|
382 |
rbLocalGame = new QRadioButton(NetTypeGroupBox); |
|
668 | 383 |
rbLocalGame->setText(tr("Local")); |
636 | 384 |
rbLocalGame->setChecked(true); |
385 |
GBTlayout->addWidget(rbLocalGame); |
|
386 |
rbInternetGame = new QRadioButton(NetTypeGroupBox); |
|
668 | 387 |
rbInternetGame->setText(tr("Internet")); |
636 | 388 |
GBTlayout->addWidget(rbInternetGame); |
389 |
||
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
390 |
ConnGroupBox = new QGroupBox(this); |
421 | 391 |
ConnGroupBox->setTitle(QGroupBox::tr("Net game")); |
392 |
pageLayout->addWidget(ConnGroupBox, 2, 0, 1, 3); |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
393 |
GBClayout = new QGridLayout(ConnGroupBox); |
646 | 394 |
GBClayout->setColumnStretch(0, 1); |
421 | 395 |
GBClayout->setColumnStretch(1, 1); |
396 |
GBClayout->setColumnStretch(2, 1); |
|
184 | 397 |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
398 |
BtnNetConnect = new QPushButton(ConnGroupBox); |
184 | 399 |
BtnNetConnect->setFont(*font14); |
400 |
BtnNetConnect->setText(QPushButton::tr("Connect")); |
|
646 | 401 |
GBClayout->addWidget(BtnNetConnect, 2, 2); |
416 | 402 |
|
665 | 403 |
tvServersList = new QTableView(ConnGroupBox); |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
404 |
tvServersList->setSelectionBehavior(QAbstractItemView::SelectRows); |
665 | 405 |
GBClayout->addWidget(tvServersList, 1, 0, 1, 3); |
421 | 406 |
|
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
407 |
BtnUpdateSList = new QPushButton(ConnGroupBox); |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
408 |
BtnUpdateSList->setFont(*font14); |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
409 |
BtnUpdateSList->setText(QPushButton::tr("Update")); |
646 | 410 |
GBClayout->addWidget(BtnUpdateSList, 2, 0); |
314 | 411 |
|
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
412 |
BtnSpecifyServer = new QPushButton(ConnGroupBox); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
413 |
BtnSpecifyServer->setFont(*font14); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
414 |
BtnSpecifyServer->setText(QPushButton::tr("Specify")); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
415 |
GBClayout->addWidget(BtnSpecifyServer, 2, 1); |
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
416 |
|
1153 | 417 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 3, 0, true); |
636 | 418 |
|
646 | 419 |
connect(rbLocalGame, SIGNAL(toggled(bool)), this, SLOT(updateServersList())); |
668 | 420 |
connect(BtnNetConnect, SIGNAL(clicked()), this, SLOT(slotConnect())); |
184 | 421 |
} |
422 |
||
646 | 423 |
void PageNet::updateServersList() |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
424 |
{ |
636 | 425 |
if (rbLocalGame->isChecked()) |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
426 |
tvServersList->setModel(new HWNetUdpModel(tvServersList)); |
667 | 427 |
else |
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
428 |
tvServersList->setModel(new HWNetWwwModel(tvServersList)); |
659 | 429 |
|
673 | 430 |
tvServersList->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch); |
431 |
||
665 | 432 |
static_cast<HWNetServersModel *>(tvServersList->model())->updateList(); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
433 |
|
665 | 434 |
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
|
435 |
connect(tvServersList, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotConnect())); |
646 | 436 |
} |
437 |
||
438 |
void PageNet::slotConnect() |
|
439 |
{ |
|
671
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
440 |
HWNetServersModel * model = static_cast<HWNetServersModel *>(tvServersList->model()); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
441 |
QModelIndex mi = tvServersList->currentIndex(); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
442 |
if(!mi.isValid()) |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
443 |
{ |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
444 |
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
|
445 |
return; |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
446 |
} |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
447 |
QString host = model->index(mi.row(), 1).data().toString(); |
a8970859f50e
Actually pass host and port values to NetConnect method
unc0rr
parents:
668
diff
changeset
|
448 |
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
|
449 |
|
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
|
450 |
emit connectClicked(host, port); |
646 | 451 |
} |
452 |
||
1153 | 453 |
PageNetServer::PageNetServer(QWidget* parent) : AbstractPage(parent) |
646 | 454 |
{ |
455 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
456 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
457 |
pageLayout->setColumnStretch(0, 1); |
|
458 |
pageLayout->setColumnStretch(1, 1); |
|
459 |
pageLayout->setColumnStretch(2, 1); |
|
460 |
||
675 | 461 |
pageLayout->setRowStretch(0, 1); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
462 |
pageLayout->setRowStretch(1, 0); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
463 |
|
1153 | 464 |
BtnBack =addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
646 | 465 |
|
466 |
BtnStart = new QPushButton(this); |
|
467 |
BtnStart->setFont(*font14); |
|
468 |
BtnStart->setText(QPushButton::tr("Start")); |
|
675 | 469 |
pageLayout->addWidget(BtnStart, 1, 2); |
470 |
||
471 |
QWidget * wg = new QWidget(this); |
|
472 |
pageLayout->addWidget(wg, 0, 0, 1, 3); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
473 |
|
675 | 474 |
QGridLayout * wgLayout = new QGridLayout(wg); |
475 |
wgLayout->setColumnStretch(0, 1); |
|
476 |
wgLayout->setColumnStretch(1, 3); |
|
477 |
wgLayout->setColumnStretch(2, 1); |
|
478 |
||
479 |
wgLayout->setRowStretch(0, 0); |
|
480 |
wgLayout->setRowStretch(1, 1); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
481 |
|
675 | 482 |
QGroupBox * gb = new QGroupBox(wg); |
483 |
wgLayout->addWidget(gb, 0, 1); |
|
484 |
||
485 |
QGridLayout * gbLayout = new QGridLayout(gb); |
|
486 |
||
487 |
labelSD = new QLabel(gb); |
|
488 |
labelSD->setText(QLabel::tr("Server name:")); |
|
489 |
gbLayout->addWidget(labelSD, 0, 0); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
490 |
|
675 | 491 |
leServerDescr = new QLineEdit(gb); |
492 |
gbLayout->addWidget(leServerDescr, 0, 1); |
|
493 |
||
494 |
labelPort = new QLabel(gb); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
495 |
labelPort->setText(QLabel::tr("Server port:")); |
675 | 496 |
gbLayout->addWidget(labelPort, 1, 0); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
497 |
|
675 | 498 |
sbPort = new QSpinBox(gb); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
499 |
sbPort->setMinimum(0); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
500 |
sbPort->setMaximum(65535); |
675 | 501 |
gbLayout->addWidget(sbPort, 1, 1); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
502 |
|
675 | 503 |
BtnDefault = new QPushButton(gb); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
504 |
BtnDefault->setText(QPushButton::tr("default")); |
675 | 505 |
gbLayout->addWidget(BtnDefault, 1, 2); |
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
506 |
|
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
507 |
connect(BtnDefault, SIGNAL(clicked()), this, SLOT(setDefaultPort())); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
508 |
} |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
509 |
|
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
510 |
void PageNetServer::setDefaultPort() |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
511 |
{ |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
653
diff
changeset
|
512 |
sbPort->setValue(46631); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
513 |
} |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
617
diff
changeset
|
514 |
|
1153 | 515 |
PageNetGame::PageNetGame(QWidget* parent) : AbstractPage(parent) |
184 | 516 |
{ |
517 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
518 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
452 | 519 |
pageLayout->setSizeConstraint(QLayout::SetMinimumSize); |
461 | 520 |
//pageLayout->setSpacing(1); |
521 |
//pageLayout->setMargin(1); |
|
463 | 522 |
pageLayout->setColumnStretch(0, 50); |
523 |
pageLayout->setColumnStretch(1, 50); |
|
322 | 524 |
|
461 | 525 |
// chatwidget |
526 |
pChatWidget = new HWChatWidget(this); |
|
527 |
pageLayout->addWidget(pChatWidget, 1, 0); |
|
464 | 528 |
pageLayout->setRowStretch(1, 100); |
453 | 529 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
323
diff
changeset
|
530 |
pGameCFG = new GameCFGWidget(this); |
322 | 531 |
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
|
532 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
323
diff
changeset
|
533 |
pNetTeamsWidget = new TeamSelWidget(this); |
373 | 534 |
pNetTeamsWidget->setAcceptOuter(true); |
461 | 535 |
pageLayout->addWidget(pNetTeamsWidget, 0, 1, 2, 1); |
184 | 536 |
|
1153 | 537 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 2, 0, true); |
184 | 538 |
|
646 | 539 |
BtnGo = new QPushButton(this); |
184 | 540 |
BtnGo->setFont(*font14); |
541 |
BtnGo->setText(QPushButton::tr("Go!")); |
|
492 | 542 |
BtnGo->setEnabled(false); |
461 | 543 |
pageLayout->addWidget(BtnGo, 2, 1); |
184 | 544 |
} |
187 | 545 |
|
1153 | 546 |
PageInfo::PageInfo(QWidget* parent) : AbstractPage(parent) |
187 | 547 |
{ |
548 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
549 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
550 |
pageLayout->setColumnStretch(0, 1); |
|
551 |
pageLayout->setColumnStretch(1, 1); |
|
552 |
pageLayout->setColumnStretch(2, 1); |
|
553 |
||
1153 | 554 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
187 | 555 |
|
556 |
about = new About(this); |
|
557 |
pageLayout->addWidget(about, 0, 0, 1, 3); |
|
558 |
} |
|
306 | 559 |
|
1153 | 560 |
PageGameStats::PageGameStats(QWidget* parent) : AbstractPage(parent) |
306 | 561 |
{ |
562 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
563 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
564 |
pageLayout->setColumnStretch(0, 1); |
|
565 |
pageLayout->setColumnStretch(1, 1); |
|
566 |
pageLayout->setColumnStretch(2, 1); |
|
567 |
||
1153 | 568 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
306 | 569 |
|
307 | 570 |
labelGameStats = new QLabel(this); |
571 |
labelGameStats->setTextFormat(Qt::RichText); |
|
572 |
pageLayout->addWidget(labelGameStats, 0, 0, 1, 3); |
|
306 | 573 |
} |
586 | 574 |
|
1150 | 575 |
PageSinglePlayer::PageSinglePlayer(QWidget* parent) : AbstractPage(parent) |
586 | 576 |
{ |
577 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
578 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
579 |
pageLayout->setMargin(25); |
|
580 |
pageLayout->setColumnStretch(0, 1); |
|
581 |
pageLayout->setColumnStretch(1, 2); |
|
582 |
pageLayout->setColumnStretch(2, 1); |
|
588 | 583 |
pageLayout->setRowStretch(0, 1); |
1150 | 584 |
pageLayout->setRowStretch(6, 1); |
586 | 585 |
|
1150 | 586 |
BtnSimpleGamePage = addButton(tr("Simple Game"), pageLayout, 1, 1); |
587 |
BtnTrainPage = addButton(tr("Training"), pageLayout, 2, 1); |
|
588 |
BtnMultiplayer = addButton(tr("Multiplayer"), pageLayout, 3, 1); |
|
589 |
BtnLoad = addButton(tr("Saved games"), pageLayout, 4, 1); |
|
590 |
BtnDemos = addButton(tr("Demos"), pageLayout, 5, 1); |
|
586 | 591 |
|
1153 | 592 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 7, 0, true); |
586 | 593 |
} |
594 |
||
1153 | 595 |
PageTraining::PageTraining(QWidget* parent) : AbstractPage(parent) |
587 | 596 |
{ |
597 |
QFont * font14 = new QFont("MS Shell Dlg", 14); |
|
598 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
599 |
pageLayout->setMargin(25); |
|
600 |
pageLayout->setColumnStretch(0, 1); |
|
601 |
pageLayout->setColumnStretch(1, 2); |
|
602 |
pageLayout->setColumnStretch(2, 1); |
|
603 |
||
604 |
BtnStartTrain = new QPushButton(this); |
|
605 |
BtnStartTrain->setFont(*font14); |
|
606 |
BtnStartTrain->setText(QPushButton::tr("Go!")); |
|
607 |
pageLayout->addWidget(BtnStartTrain, 1, 2); |
|
608 |
||
1153 | 609 |
BtnBack = addButton(":/res/Exit.png", pageLayout, 1, 0, true); |
587 | 610 |
} |
611 |
||
923
b3d097097b54
Use default ammostore string size for weapons number instead of predefined const
unc0rr
parents:
788
diff
changeset
|
612 |
PageSelectWeapon::PageSelectWeapon(QWidget* parent) : |
684 | 613 |
AbstractPage(parent) |
600 | 614 |
{ |
615 |
QGridLayout * pageLayout = new QGridLayout(this); |
|
616 |
pageLayout->setMargin(25); |
|
923
b3d097097b54
Use default ammostore string size for weapons number instead of predefined const
unc0rr
parents:
788
diff
changeset
|
617 |
|
b3d097097b54
Use default ammostore string size for weapons number instead of predefined const
unc0rr
parents:
788
diff
changeset
|
618 |
pWeapons=new SelWeaponWidget(cDefaultAmmoStore->size() - 10, this); |
718 | 619 |
pageLayout->addWidget(pWeapons, 0, 0, 1, 4); |
600 | 620 |
|
730 | 621 |
BtnBack = addButton(tr("Back"), pageLayout, 1, 0); |
622 |
BtnDefault = addButton(tr("Default"), pageLayout, 1, 1); |
|
623 |
BtnDelete = addButton(tr("Delete"), pageLayout, 1, 2); |
|
624 |
BtnSave = addButton(tr("Save"), pageLayout, 1, 3); |
|
600 | 625 |
} |
626 |
||
686 | 627 |
PageInGame::PageInGame(QWidget* parent) : |
628 |
AbstractPage(parent) |
|
629 |
{ |
|
630 |
QLabel * label = new QLabel(this); |
|
631 |
label->setText("In game..."); |
|
632 |
} |