author | unc0rr |
Wed, 22 Oct 2008 14:01:43 +0000 | |
changeset 1395 | 46fd70de89e2 |
parent 1391 | 735f6d43780b |
child 1404 | 2b6b6809c2e4 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2005-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 <QFile> |
|
20 |
#include <QTextStream> |
|
407 | 21 |
#include <QMessageBox> |
502
bc178daca088
Fix build with CMake & gcc 4.1.2 on my system (treating #include <QtGui> as including directory)
unc0rr
parents:
496
diff
changeset
|
22 |
#include <QPushButton> |
bc178daca088
Fix build with CMake & gcc 4.1.2 on my system (treating #include <QtGui> as including directory)
unc0rr
parents:
496
diff
changeset
|
23 |
#include <QListWidget> |
bc178daca088
Fix build with CMake & gcc 4.1.2 on my system (treating #include <QtGui> as including directory)
unc0rr
parents:
496
diff
changeset
|
24 |
#include <QStackedLayout> |
bc178daca088
Fix build with CMake & gcc 4.1.2 on my system (treating #include <QtGui> as including directory)
unc0rr
parents:
496
diff
changeset
|
25 |
#include <QLineEdit> |
bc178daca088
Fix build with CMake & gcc 4.1.2 on my system (treating #include <QtGui> as including directory)
unc0rr
parents:
496
diff
changeset
|
26 |
#include <QLabel> |
636 | 27 |
#include <QRadioButton> |
654 | 28 |
#include <QSpinBox> |
674 | 29 |
#include <QCloseEvent> |
1235 | 30 |
#include <QCheckBox> |
1377 | 31 |
#include <QTextBrowser> |
184 | 32 |
|
33 |
#include "hwform.h" |
|
34 |
#include "game.h" |
|
35 |
#include "team.h" |
|
36 |
#include "teamselect.h" |
|
681 | 37 |
#include "selectWeapon.h" |
184 | 38 |
#include "gameuiconfig.h" |
39 |
#include "pages.h" |
|
40 |
#include "hwconsts.h" |
|
314 | 41 |
#include "newnetclient.h" |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
42 |
#include "gamecfgwidget.h" |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
43 |
#include "netserverslist.h" |
634 | 44 |
#include "netudpserver.h" |
461 | 45 |
#include "chatwidget.h" |
579 | 46 |
#include "playrecordpage.h" |
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
47 |
#include "input_ip.h" |
184 | 48 |
|
49 |
HWForm::HWForm(QWidget *parent) |
|
637
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
50 |
: QMainWindow(parent), pnetserver(0), pRegisterServer(0), editedTeam(0), hwnet(0) |
184 | 51 |
{ |
52 |
ui.setupUi(this); |
|
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
53 |
|
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
54 |
ui.pageOptions->CBResolution->addItems(sdli.getResolutions()); |
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
55 |
|
301 | 56 |
config = new GameUIConfig(this, cfgdir->absolutePath() + "/hedgewars.ini"); |
184 | 57 |
|
245 | 58 |
UpdateTeamsLists(); |
695 | 59 |
UpdateWeapons(); |
184 | 60 |
|
1162 | 61 |
connect(config, SIGNAL(frontendFullscreen(bool)), this, SLOT(onFrontendFullscreen(bool))); |
62 |
onFrontendFullscreen(config->isFrontendFullscreen()); |
|
63 |
||
184 | 64 |
connect(ui.pageMain->BtnSinglePlayer, SIGNAL(clicked()), this, SLOT(GoToSinglePlayer())); |
65 |
connect(ui.pageMain->BtnSetup, SIGNAL(clicked()), this, SLOT(GoToSetup())); |
|
66 |
connect(ui.pageMain->BtnNet, SIGNAL(clicked()), this, SLOT(GoToNet())); |
|
187 | 67 |
connect(ui.pageMain->BtnInfo, SIGNAL(clicked()), this, SLOT(GoToInfo())); |
530 | 68 |
connect(ui.pageMain->BtnExit, SIGNAL(pressed()), this, SLOT(btnExitPressed())); |
69 |
connect(ui.pageMain->BtnExit, SIGNAL(clicked()), this, SLOT(btnExitClicked())); |
|
184 | 70 |
|
71 |
connect(ui.pageEditTeam->BtnTeamSave, SIGNAL(clicked()), this, SLOT(TeamSave())); |
|
72 |
connect(ui.pageEditTeam->BtnTeamDiscard, SIGNAL(clicked()), this, SLOT(TeamDiscard())); |
|
73 |
||
289 | 74 |
connect(ui.pageMultiplayer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 75 |
connect(ui.pageMultiplayer->BtnStartMPGame, SIGNAL(clicked()), this, SLOT(StartMPGame())); |
493 | 76 |
connect(ui.pageMultiplayer->teamsSelect, SIGNAL(setEnabledGameStart(bool)), |
492 | 77 |
ui.pageMultiplayer->BtnStartMPGame, SLOT(setEnabled(bool))); |
586 | 78 |
connect(ui.pageMultiplayer->teamsSelect, SIGNAL(SetupClicked()), this, SLOT(IntermediateSetup())); |
184 | 79 |
|
289 | 80 |
connect(ui.pagePlayDemo->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 81 |
connect(ui.pagePlayDemo->BtnPlayDemo, SIGNAL(clicked()), this, SLOT(PlayDemo())); |
247
07605d2a2024
- Fix infinite loop when selecting weapon with ammo menu
unc0rr
parents:
245
diff
changeset
|
82 |
connect(ui.pagePlayDemo->DemosList, SIGNAL(doubleClicked (const QModelIndex &)), this, SLOT(PlayDemo())); |
184 | 83 |
|
289 | 84 |
connect(ui.pageOptions->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 85 |
connect(ui.pageOptions->BtnNewTeam, SIGNAL(clicked()), this, SLOT(NewTeam())); |
86 |
connect(ui.pageOptions->BtnEditTeam, SIGNAL(clicked()), this, SLOT(EditTeam())); |
|
87 |
connect(ui.pageOptions->BtnSaveOptions, SIGNAL(clicked()), config, SLOT(SaveOptions())); |
|
312 | 88 |
connect(ui.pageOptions->BtnSaveOptions, SIGNAL(clicked()), this, SLOT(GoBack())); |
695 | 89 |
|
694 | 90 |
connect(ui.pageOptions->WeaponEdit, SIGNAL(clicked()), this, SLOT(GoToSelectWeapon())); |
91 |
connect(ui.pageOptions->WeaponsButt, SIGNAL(clicked()), this, SLOT(GoToSelectNewWeapon())); |
|
695 | 92 |
connect(ui.pageSelectWeapon->pWeapons, SIGNAL(weaponsChanged()), this, SLOT(UpdateWeapons())); |
697 | 93 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(newWeaponsName(const QString&)), this, SLOT(NetWeaponNameChanged(const QString&))); |
184 | 94 |
|
1395 | 95 |
connect(ui.pageNet->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
96 |
connect(ui.pageNet->BtnSpecifyServer, SIGNAL(clicked()), this, SLOT(NetConnect())); |
|
97 |
connect(ui.pageNet->BtnOfficialServer, SIGNAL(clicked()), this, SLOT(NetConnectOfficialServer())); |
|
98 |
connect(ui.pageNet->BtnNetSvrStart, SIGNAL(clicked()), this, SLOT(GoToNetServer())); |
|
99 |
connect(ui.pageNet, SIGNAL(connectClicked(const QString &, quint16)), this, SLOT(NetConnectServer(const QString &, quint16))); |
|
646 | 100 |
|
101 |
connect(ui.pageNetServer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
|
102 |
connect(ui.pageNetServer->BtnStart, SIGNAL(clicked()), this, SLOT(NetStartServer())); |
|
184 | 103 |
|
289 | 104 |
connect(ui.pageNetGame->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
1312 | 105 |
connect(ui.pageNetGame->BtnGo, SIGNAL(clicked()), this, SLOT(NetStartGame())); |
493 | 106 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(setEnabledGameStart(bool)), |
492 | 107 |
ui.pageNetGame->BtnGo, SLOT(setEnabled(bool))); |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
108 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(SetupClicked()), this, SLOT(IntermediateSetup())); |
184 | 109 |
|
1312 | 110 |
connect(ui.pageRoomsList->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
187 | 111 |
|
1312 | 112 |
connect(ui.pageInfo->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
113 |
||
114 |
connect(ui.pageGameStats->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
|
306 | 115 |
|
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
724
diff
changeset
|
116 |
connect(ui.pageSinglePlayer->BtnSimpleGamePage, SIGNAL(clicked()), this, SLOT(SimpleGame())); |
587 | 117 |
connect(ui.pageSinglePlayer->BtnTrainPage, SIGNAL(clicked()), this, SLOT(GoToTraining())); |
1150 | 118 |
connect(ui.pageSinglePlayer->BtnMultiplayer, SIGNAL(clicked()), this, SLOT(GoToMultiplayer())); |
119 |
connect(ui.pageSinglePlayer->BtnLoad, SIGNAL(clicked()), this, SLOT(GoToSaves())); |
|
120 |
connect(ui.pageSinglePlayer->BtnDemos, SIGNAL(clicked()), this, SLOT(GoToDemos())); |
|
586 | 121 |
connect(ui.pageSinglePlayer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
311 | 122 |
|
587 | 123 |
connect(ui.pageTraining->BtnStartTrain, SIGNAL(clicked()), this, SLOT(StartTraining())); |
124 |
connect(ui.pageTraining->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
|
125 |
||
600 | 126 |
connect(ui.pageSelectWeapon->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
683 | 127 |
connect(ui.pageSelectWeapon->BtnDefault, SIGNAL(clicked()), ui.pageSelectWeapon->pWeapons, SLOT(setDefault())); |
128 |
connect(ui.pageSelectWeapon->BtnSave, SIGNAL(clicked()), ui.pageSelectWeapon->pWeapons, SLOT(save())); |
|
600 | 129 |
|
718 | 130 |
connect(ui.pageSelectWeapon->BtnDelete, SIGNAL(clicked()), |
131 |
ui.pageSelectWeapon->pWeapons, SLOT(deleteWeaponsName())); // executed first |
|
724 | 132 |
connect(ui.pageSelectWeapon->pWeapons, SIGNAL(weaponsDeleted()), |
718 | 133 |
this, SLOT(UpdateWeapons())); // executed second |
724 | 134 |
connect(ui.pageSelectWeapon->pWeapons, SIGNAL(weaponsDeleted()), |
718 | 135 |
this, SLOT(GoBack())); // executed third |
136 |
||
290 | 137 |
GoToPage(ID_PAGE_MAIN); |
184 | 138 |
} |
139 |
||
1162 | 140 |
void HWForm::onFrontendFullscreen(bool value) |
141 |
{ |
|
1163 | 142 |
if (value) |
143 |
setWindowState(windowState() | Qt::WindowFullScreen); |
|
144 |
else { |
|
145 |
setWindowState(windowState() & !Qt::WindowFullScreen); |
|
146 |
} |
|
1162 | 147 |
} |
148 |
||
695 | 149 |
void HWForm::UpdateWeapons() |
150 |
{ |
|
702 | 151 |
// FIXME: rewrite this with boost (or TR1/0x) |
152 |
QVector<QComboBox*> combos; |
|
153 |
combos.push_back(ui.pageOptions->WeaponsName); |
|
154 |
combos.push_back(ui.pageMultiplayer->gameCFG->WeaponsName); |
|
155 |
combos.push_back(ui.pageNetGame->pGameCFG->WeaponsName); |
|
696 | 156 |
|
702 | 157 |
for(QVector<QComboBox*>::iterator it=combos.begin(); it!=combos.end(); ++it) { |
158 |
(*it)->clear(); |
|
159 |
(*it)->addItems(ui.pageSelectWeapon->pWeapons->getWeaponNames()); |
|
160 |
int pos=(*it)->findText("Default"); |
|
161 |
if (pos!=-1) { |
|
162 |
(*it)->setCurrentIndex(pos); |
|
163 |
} |
|
164 |
} |
|
695 | 165 |
} |
166 |
||
697 | 167 |
void HWForm::NetWeaponNameChanged(const QString& name) |
168 |
{ |
|
169 |
QString ammo=ui.pageSelectWeapon->pWeapons->getWeaponsString(ui.pageNetGame->pGameCFG->WeaponsName->currentText()); |
|
703 | 170 |
hwnet->onWeaponsNameChanged(name, ammo); |
697 | 171 |
} |
172 |
||
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
173 |
void HWForm::UpdateTeamsLists(const QStringList* editable_teams) |
245 | 174 |
{ |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
175 |
QStringList teamslist; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
176 |
if(editable_teams) { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
177 |
teamslist=*editable_teams; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
178 |
} else { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
179 |
teamslist = config->GetTeamsList(); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
180 |
} |
245 | 181 |
|
182 |
if(teamslist.empty()) { |
|
183 |
HWTeam defaultTeam("DefaultTeam"); |
|
184 |
defaultTeam.SaveToFile(); |
|
185 |
teamslist.push_back("DefaultTeam"); |
|
186 |
} |
|
187 |
||
188 |
ui.pageOptions->CBTeamName->clear(); |
|
189 |
ui.pageOptions->CBTeamName->addItems(teamslist); |
|
190 |
} |
|
191 |
||
184 | 192 |
void HWForm::GoToMain() |
193 |
{ |
|
289 | 194 |
GoToPage(ID_PAGE_MAIN); |
184 | 195 |
} |
196 |
||
197 |
void HWForm::GoToSinglePlayer() |
|
198 |
{ |
|
289 | 199 |
GoToPage(ID_PAGE_SINGLEPLAYER); |
184 | 200 |
} |
201 |
||
587 | 202 |
void HWForm::GoToTraining() |
203 |
{ |
|
204 |
GoToPage(ID_PAGE_TRAINING); |
|
205 |
} |
|
206 |
||
184 | 207 |
void HWForm::GoToSetup() |
208 |
{ |
|
289 | 209 |
GoToPage(ID_PAGE_SETUP); |
184 | 210 |
} |
211 |
||
694 | 212 |
void HWForm::GoToSelectNewWeapon() |
213 |
{ |
|
717 | 214 |
ui.pageSelectWeapon->pWeapons->setWeaponsName("", false); |
694 | 215 |
GoToPage(ID_PAGE_SELECTWEAPON); |
216 |
} |
|
217 |
||
600 | 218 |
void HWForm::GoToSelectWeapon() |
219 |
{ |
|
717 | 220 |
ui.pageSelectWeapon->pWeapons->setWeaponsName(ui.pageOptions->WeaponsName->currentText(), true); |
600 | 221 |
GoToPage(ID_PAGE_SELECTWEAPON); |
222 |
} |
|
223 |
||
187 | 224 |
void HWForm::GoToInfo() |
225 |
{ |
|
289 | 226 |
GoToPage(ID_PAGE_INFO); |
187 | 227 |
} |
228 |
||
184 | 229 |
void HWForm::GoToMultiplayer() |
230 |
{ |
|
290 | 231 |
GoToPage(ID_PAGE_MULTIPLAYER); |
184 | 232 |
} |
233 |
||
579 | 234 |
void HWForm::GoToSaves() |
235 |
{ |
|
581 | 236 |
ui.pagePlayDemo->FillFromDir(PagePlayDemo::RT_Save); |
579 | 237 |
|
238 |
GoToPage(ID_PAGE_DEMOS); |
|
239 |
} |
|
240 |
||
184 | 241 |
void HWForm::GoToDemos() |
242 |
{ |
|
581 | 243 |
ui.pagePlayDemo->FillFromDir(PagePlayDemo::RT_Demo); |
579 | 244 |
|
290 | 245 |
GoToPage(ID_PAGE_DEMOS); |
184 | 246 |
} |
247 |
||
248 |
void HWForm::GoToNet() |
|
249 |
{ |
|
646 | 250 |
ui.pageNet->updateServersList(); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
251 |
|
289 | 252 |
GoToPage(ID_PAGE_NET); |
184 | 253 |
} |
254 |
||
646 | 255 |
void HWForm::GoToNetServer() |
256 |
{ |
|
257 |
GoToPage(ID_PAGE_NETSERVER); |
|
258 |
} |
|
259 |
||
496 | 260 |
void HWForm::OnPageShown(quint8 id, quint8 lastid) |
311 | 261 |
{ |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
262 |
if (id == ID_PAGE_MULTIPLAYER || id == ID_PAGE_NETGAME) { |
1343 | 263 |
QStringList tmNames = config->GetTeamsList(); |
322 | 264 |
TeamSelWidget* curTeamSelWidget; |
1343 | 265 |
|
496 | 266 |
if(id == ID_PAGE_MULTIPLAYER) { |
1343 | 267 |
curTeamSelWidget = ui.pageMultiplayer->teamsSelect; |
496 | 268 |
} else { |
1343 | 269 |
curTeamSelWidget = ui.pageNetGame->pNetTeamsWidget; |
496 | 270 |
} |
1343 | 271 |
|
311 | 272 |
QList<HWTeam> teamsList; |
1343 | 273 |
for(QStringList::iterator it = tmNames.begin(); it != tmNames.end(); it++) { |
311 | 274 |
HWTeam team(*it); |
275 |
team.LoadFromFile(); |
|
276 |
teamsList.push_back(team); |
|
277 |
} |
|
1343 | 278 |
|
279 |
if(lastid == ID_PAGE_SETUP) { // _TEAM |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
280 |
if (editedTeam) { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
281 |
curTeamSelWidget->addTeam(*editedTeam); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
282 |
} |
1368
a734715a777a
- Frontend: don't reset playing teams list after end of round
unc0rr
parents:
1364
diff
changeset
|
283 |
} else if(lastid != ID_PAGE_GAMESTATS && lastid != ID_PAGE_INGAME) { |
496 | 284 |
curTeamSelWidget->resetPlayingTeams(teamsList); |
285 |
} |
|
311 | 286 |
} |
287 |
} |
|
288 |
||
289 | 289 |
void HWForm::GoToPage(quint8 id) |
290 |
{ |
|
1347 | 291 |
quint8 lastid = ui.Pages->currentIndex(); |
289 | 292 |
PagesStack.push(ui.Pages->currentIndex()); |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
293 |
OnPageShown(id, lastid); |
289 | 294 |
ui.Pages->setCurrentIndex(id); |
295 |
} |
|
296 |
||
297 |
void HWForm::GoBack() |
|
298 |
{ |
|
299 |
quint8 id = PagesStack.isEmpty() ? ID_PAGE_MAIN : PagesStack.pop(); |
|
1347 | 300 |
quint8 curid = ui.Pages->currentIndex(); |
289 | 301 |
ui.Pages->setCurrentIndex(id); |
1347 | 302 |
OnPageShown(id, curid); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
303 |
|
1376 | 304 |
if (id == ID_PAGE_ROOMSLIST || id == ID_PAGE_NETSERVER) { |
1359 | 305 |
GoBack(); |
306 |
} |
|
307 |
if (id == ID_PAGE_NET) { |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
308 |
if(hwnet || pnetserver) NetDisconnect(); |
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
309 |
} |
184 | 310 |
} |
311 |
||
530 | 312 |
void HWForm::btnExitPressed() |
313 |
{ |
|
314 |
eggTimer.start(); |
|
315 |
} |
|
316 |
||
317 |
void HWForm::btnExitClicked() |
|
318 |
{ |
|
319 |
if (eggTimer.elapsed() < 3000) |
|
320 |
close(); |
|
321 |
else |
|
322 |
{ |
|
323 |
QPushButton * btn = findChild<QPushButton *>("imageButt"); |
|
324 |
if (btn) |
|
325 |
{ |
|
326 |
btn->setIcon(QIcon(":/res/bonus.png")); |
|
327 |
} |
|
328 |
} |
|
329 |
} |
|
330 |
||
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
331 |
void HWForm::IntermediateSetup() |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
332 |
{ |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
333 |
quint8 id=ui.Pages->currentIndex(); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
334 |
TeamSelWidget* curTeamSelWidget; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
335 |
if(id == ID_PAGE_MULTIPLAYER) { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
336 |
curTeamSelWidget=ui.pageMultiplayer->teamsSelect; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
337 |
} else { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
338 |
curTeamSelWidget=ui.pageNetGame->pNetTeamsWidget; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
339 |
} |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
340 |
QList<HWTeam> teams=curTeamSelWidget->getDontPlayingTeams(); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
341 |
QStringList tmnames; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
342 |
for(QList<HWTeam>::iterator it = teams.begin(); it != teams.end(); ++it) { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
343 |
tmnames+=it->TeamName; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
344 |
} |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
345 |
UpdateTeamsLists(&tmnames); // FIXME: still need more work if teamname is updated while configuring |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
346 |
|
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
347 |
GoToPage(ID_PAGE_SETUP); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
348 |
} |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
349 |
|
184 | 350 |
void HWForm::NewTeam() |
351 |
{ |
|
245 | 352 |
editedTeam = new HWTeam("unnamed"); |
353 |
editedTeam->SetToPage(this); |
|
290 | 354 |
GoToPage(ID_PAGE_SETUP_TEAM); |
184 | 355 |
} |
356 |
||
357 |
void HWForm::EditTeam() |
|
358 |
{ |
|
245 | 359 |
editedTeam = new HWTeam(ui.pageOptions->CBTeamName->currentText()); |
360 |
editedTeam->LoadFromFile(); |
|
361 |
editedTeam->SetToPage(this); |
|
290 | 362 |
GoToPage(ID_PAGE_SETUP_TEAM); |
184 | 363 |
} |
364 |
||
365 |
void HWForm::TeamSave() |
|
366 |
{ |
|
245 | 367 |
editedTeam->GetFromPage(this); |
368 |
editedTeam->SaveToFile(); |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
369 |
delete editedTeam; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
370 |
editedTeam=0; |
245 | 371 |
UpdateTeamsLists(); |
290 | 372 |
GoBack(); |
184 | 373 |
} |
374 |
||
375 |
void HWForm::TeamDiscard() |
|
376 |
{ |
|
245 | 377 |
delete editedTeam; |
496 | 378 |
editedTeam=0; |
290 | 379 |
GoBack(); |
184 | 380 |
} |
381 |
||
382 |
void HWForm::SimpleGame() |
|
383 |
{ |
|
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
724
diff
changeset
|
384 |
CreateGame(0, 0, cDefaultAmmoStore->mid(10)); |
184 | 385 |
game->StartQuick(); |
386 |
} |
|
387 |
||
388 |
void HWForm::PlayDemo() |
|
389 |
{ |
|
390 |
QListWidgetItem * curritem = ui.pagePlayDemo->DemosList->currentItem(); |
|
391 |
if (!curritem) |
|
392 |
{ |
|
393 |
QMessageBox::critical(this, |
|
394 |
tr("Error"), |
|
581 | 395 |
tr("Please, select record from the list above"), |
184 | 396 |
tr("OK")); |
397 |
return ; |
|
398 |
} |
|
696 | 399 |
CreateGame(0, 0, 0); |
580 | 400 |
game->PlayDemo(curritem->data(Qt::UserRole).toString()); |
184 | 401 |
} |
402 |
||
666 | 403 |
void HWForm::NetConnectServer(const QString & host, quint16 port) |
416 | 404 |
{ |
1395 | 405 |
_NetConnect(host, port, ui.pageOptions->editNetNick->text()); |
406 |
} |
|
407 |
||
408 |
void HWForm::NetConnectOfficialServer() |
|
409 |
{ |
|
410 |
NetConnectServer("netserver.hedgewars.org", 46631); |
|
416 | 411 |
} |
412 |
||
314 | 413 |
void HWForm::_NetConnect(const QString & hostName, quint16 port, const QString & nick) |
184 | 414 |
{ |
637
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
415 |
if(hwnet) { |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
416 |
hwnet->Disconnect(); |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
417 |
delete hwnet; |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
418 |
hwnet=0; |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
419 |
} |
1311 | 420 |
|
465 | 421 |
ui.pageNetGame->pChatWidget->clear(); |
1311 | 422 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
423 |
hwnet = new HWNewNet(config, ui.pageNetGame->pGameCFG, ui.pageNetGame->pNetTeamsWidget); |
637
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
424 |
|
660 | 425 |
connect(hwnet, SIGNAL(AskForRunGame()), this, SLOT(CreateNetGame())); |
1311 | 426 |
connect(hwnet, SIGNAL(Connected()), this, SLOT(NetConnected())); |
184 | 427 |
connect(hwnet, SIGNAL(EnteredGame()), this, SLOT(NetGameEnter())); |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
428 |
connect(hwnet, SIGNAL(AddNetTeam(const HWTeam&)), this, SLOT(AddNetTeam(const HWTeam&))); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
429 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
430 |
connect(hwnet, SIGNAL(roomsList(const QStringList&)), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
431 |
ui.pageRoomsList, SLOT(setRoomsList(const QStringList&))); |
1377 | 432 |
connect(hwnet, SIGNAL(serverMessage(const QString&)), |
433 |
ui.pageRoomsList->serverMessage, SLOT(setText(const QString&))); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
434 |
|
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
435 |
connect(ui.pageRoomsList, SIGNAL(askForCreateRoom(const QString &)), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
436 |
hwnet, SLOT(CreateRoom(const QString&))); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
437 |
connect(ui.pageRoomsList, SIGNAL(askForJoinRoom(const QString &)), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
438 |
hwnet, SLOT(JoinRoom(const QString&))); |
1315 | 439 |
connect(ui.pageRoomsList, SIGNAL(askForRoomList()), |
440 |
hwnet, SLOT(askRoomsList())); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
441 |
|
1357 | 442 |
connect(hwnet, SIGNAL(chatStringFromNet(const QString&)), |
1360 | 443 |
ui.pageNetGame->pChatWidget, SLOT(onChatString(const QString&))); |
1364 | 444 |
connect(hwnet, SIGNAL(chatStringFromMe(const QString&)), |
1360 | 445 |
ui.pageNetGame->pChatWidget, SLOT(onChatString(const QString&))); |
461 | 446 |
connect(ui.pageNetGame->pChatWidget, SIGNAL(chatLine(const QString&)), |
447 |
hwnet, SLOT(chatLineToNet(const QString&))); |
|
1391 | 448 |
connect(ui.pageNetGame->pChatWidget, SIGNAL(kick(const QString&)), |
449 |
hwnet, SLOT(kickPlayer(const QString&))); |
|
471 | 450 |
connect(hwnet, SIGNAL(nickAdded(const QString&)), |
465 | 451 |
ui.pageNetGame->pChatWidget, SLOT(nickAdded(const QString&))); |
471 | 452 |
connect(hwnet, SIGNAL(nickRemoved(const QString&)), |
465 | 453 |
ui.pageNetGame->pChatWidget, SLOT(nickRemoved(const QString&))); |
461 | 454 |
|
352 | 455 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(hhogsNumChanged(const HWTeam&)), |
456 |
hwnet, SLOT(onHedgehogsNumChanged(const HWTeam&))); |
|
372 | 457 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(teamColorChanged(const HWTeam&)), |
458 |
hwnet, SLOT(onTeamColorChanged(const HWTeam&))); |
|
327 | 459 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(teamWillPlay(HWTeam)), hwnet, SLOT(AddTeam(HWTeam))); |
373 | 460 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(acceptRequested(HWTeam)), hwnet, SLOT(AddTeam(HWTeam))); |
347 | 461 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(teamNotPlaying(const HWTeam&)), hwnet, SLOT(RemoveTeam(const HWTeam&))); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
462 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
463 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(seedChanged(const QString &)), hwnet, SLOT(onSeedChanged(const QString &))); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
464 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(mapChanged(const QString &)), hwnet, SLOT(onMapChanged(const QString &))); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
465 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(themeChanged(const QString &)), hwnet, SLOT(onThemeChanged(const QString &))); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
466 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(initHealthChanged(quint32)), hwnet, SLOT(onInitHealthChanged(quint32))); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
467 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(turnTimeChanged(quint32)), hwnet, SLOT(onTurnTimeChanged(quint32))); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
468 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(fortsModeChanged(bool)), hwnet, SLOT(onFortsModeChanged(bool))); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
469 |
|
383 | 470 |
connect(hwnet, SIGNAL(Disconnected()), this, SLOT(ForcedDisconnect())); |
330 | 471 |
connect(hwnet, SIGNAL(seedChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setSeed(const QString &))); |
472 |
connect(hwnet, SIGNAL(mapChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setMap(const QString &))); |
|
473 |
connect(hwnet, SIGNAL(themeChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setTheme(const QString &))); |
|
474 |
connect(hwnet, SIGNAL(initHealthChanged(quint32)), ui.pageNetGame->pGameCFG, SLOT(setInitHealth(quint32))); |
|
475 |
connect(hwnet, SIGNAL(turnTimeChanged(quint32)), ui.pageNetGame->pGameCFG, SLOT(setTurnTime(quint32))); |
|
476 |
connect(hwnet, SIGNAL(fortsModeChanged(bool)), ui.pageNetGame->pGameCFG, SLOT(setFortsMode(bool))); |
|
425 | 477 |
connect(hwnet, SIGNAL(hhnumChanged(const HWTeam&)), |
352 | 478 |
ui.pageNetGame->pNetTeamsWidget, SLOT(changeHHNum(const HWTeam&))); |
425 | 479 |
connect(hwnet, SIGNAL(teamColorChanged(const HWTeam&)), |
372 | 480 |
ui.pageNetGame->pNetTeamsWidget, SLOT(changeTeamColor(const HWTeam&))); |
703 | 481 |
connect(hwnet, SIGNAL(ammoChanged(const QString&, const QString&)), ui.pageNetGame->pGameCFG, SLOT(setNetAmmo(const QString&, const QString&))); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
482 |
|
314 | 483 |
hwnet->Connect(hostName, port, nick); |
184 | 484 |
} |
485 |
||
314 | 486 |
void HWForm::NetConnect() |
487 |
{ |
|
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
488 |
HWHostPortDialog * hpd = new HWHostPortDialog(this); |
654 | 489 |
hpd->leHost->setText(*netHost); |
490 |
hpd->sbPort->setValue(netPort); |
|
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
491 |
|
654 | 492 |
if (hpd->exec() == QDialog::Accepted) |
493 |
{ |
|
494 |
config->SaveOptions(); |
|
495 |
delete netHost; |
|
496 |
netHost = new QString(hpd->leHost->text()); |
|
497 |
netPort = hpd->sbPort->value(); |
|
498 |
_NetConnect(*netHost, netPort, ui.pageOptions->editNetNick->text()); |
|
499 |
} |
|
314 | 500 |
} |
501 |
||
502 |
void HWForm::NetStartServer() |
|
503 |
{ |
|
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:
668
diff
changeset
|
504 |
config->SaveOptions(); |
636 | 505 |
|
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:
668
diff
changeset
|
506 |
pnetserver = new HWNetServer; |
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:
668
diff
changeset
|
507 |
if(!pnetserver->StartServer(ui.pageNetServer->sbPort->value())) |
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:
668
diff
changeset
|
508 |
{ |
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:
668
diff
changeset
|
509 |
QMessageBox::critical(0, tr("Error"), |
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:
668
diff
changeset
|
510 |
tr("Unable to start the server")); |
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:
668
diff
changeset
|
511 |
delete pnetserver; |
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:
668
diff
changeset
|
512 |
pnetserver = 0; |
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:
668
diff
changeset
|
513 |
return; |
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:
668
diff
changeset
|
514 |
} |
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:
668
diff
changeset
|
515 |
|
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:
668
diff
changeset
|
516 |
_NetConnect("localhost", pnetserver->getRunningPort(), ui.pageOptions->editNetNick->text()); |
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:
668
diff
changeset
|
517 |
|
1310 | 518 |
pRegisterServer = new HWNetUdpServer(0, ui.pageNetServer->leServerDescr->text(), ui.pageNetServer->sbPort->value()); |
314 | 519 |
} |
520 |
||
184 | 521 |
void HWForm::NetDisconnect() |
522 |
{ |
|
383 | 523 |
if(hwnet) { |
524 |
hwnet->Disconnect(); |
|
525 |
delete hwnet; |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
526 |
hwnet = 0; |
383 | 527 |
} |
314 | 528 |
if(pnetserver) { |
660 | 529 |
if (pRegisterServer) |
530 |
{ |
|
531 |
pRegisterServer->unregister(); |
|
532 |
pRegisterServer = 0; |
|
533 |
} |
|
659 | 534 |
|
314 | 535 |
pnetserver->StopServer(); |
536 |
delete pnetserver; |
|
537 |
pnetserver=0; |
|
538 |
} |
|
184 | 539 |
} |
540 |
||
383 | 541 |
void HWForm::ForcedDisconnect() |
542 |
{ |
|
543 |
if(pnetserver) return; // we have server - let it care of all things |
|
544 |
if (hwnet) { |
|
545 |
hwnet->deleteLater(); |
|
546 |
hwnet=0; |
|
425 | 547 |
QMessageBox::warning(this, QMessageBox::tr("Network"), |
407 | 548 |
QMessageBox::tr("Connection to server is lost")); |
383 | 549 |
} |
550 |
GoBack(); |
|
551 |
} |
|
552 |
||
1311 | 553 |
void HWForm::NetConnected() |
554 |
{ |
|
555 |
GoToPage(ID_PAGE_ROOMSLIST); |
|
556 |
} |
|
557 |
||
184 | 558 |
void HWForm::NetGameEnter() |
559 |
{ |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
560 |
GoToPage(ID_PAGE_NETGAME); |
184 | 561 |
} |
562 |
||
563 |
void HWForm::NetStartGame() |
|
564 |
{ |
|
1311 | 565 |
ui.pageNetGame->BtnGo->setText(QPushButton::tr("Waiting")); |
566 |
ui.pageNetGame->BtnGo->setEnabled(false); |
|
567 |
hwnet->Ready(); |
|
184 | 568 |
} |
569 |
||
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
570 |
void HWForm::AddNetTeam(const HWTeam& team) |
184 | 571 |
{ |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
572 |
ui.pageNetGame->pNetTeamsWidget->addTeam(team); |
184 | 573 |
} |
574 |
||
575 |
void HWForm::StartMPGame() |
|
576 |
{ |
|
1343 | 577 |
QString ammo = ui.pageSelectWeapon->pWeapons->getWeaponsString(ui.pageMultiplayer->gameCFG->WeaponsName->currentText()); |
696 | 578 |
|
579 |
CreateGame(ui.pageMultiplayer->gameCFG, ui.pageMultiplayer->teamsSelect, ammo); |
|
306 | 580 |
|
184 | 581 |
game->StartLocal(); |
582 |
} |
|
306 | 583 |
|
584 |
void HWForm::GameStateChanged(GameState gameState) |
|
585 |
{ |
|
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
586 |
switch(gameState) { |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
587 |
case gsStarted: { |
1268
34c3795ecb63
Fix music starting to play after the round even if it was turned off
unc0rr
parents:
1235
diff
changeset
|
588 |
Music(false); |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1165
diff
changeset
|
589 |
GoToPage(ID_PAGE_INGAME); |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
590 |
ui.pageGameStats->labelGameStats->setText(""); |
661
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
591 |
if (pRegisterServer) |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
592 |
{ |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
593 |
pRegisterServer->unregister(); |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
594 |
pRegisterServer = 0; |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
595 |
} |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
596 |
break; |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
597 |
} |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
598 |
case gsFinished: { |
686 | 599 |
GoBack(); |
1268
34c3795ecb63
Fix music starting to play after the round even if it was turned off
unc0rr
parents:
1235
diff
changeset
|
600 |
Music(ui.pageOptions->CBEnableMusic->isChecked()); |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
601 |
GoToPage(ID_PAGE_GAMESTATS); |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1343
diff
changeset
|
602 |
if (hwnet) hwnet->gameFinished(); |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
603 |
break; |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
604 |
} |
686 | 605 |
default: { |
606 |
quint8 id = ui.Pages->currentIndex(); |
|
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
607 |
if (id == ID_PAGE_INGAME) { |
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
608 |
GoBack(); |
1268
34c3795ecb63
Fix music starting to play after the round even if it was turned off
unc0rr
parents:
1235
diff
changeset
|
609 |
Music(ui.pageOptions->CBEnableMusic->isChecked()); |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1343
diff
changeset
|
610 |
if (hwnet) hwnet->gameFinished(); |
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
611 |
} |
686 | 612 |
}; |
307 | 613 |
} |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
614 |
|
660 | 615 |
if (hwnet) |
616 |
{ |
|
617 |
ui.pageNetGame->BtnGo->setText(QPushButton::tr("Go!")); |
|
618 |
ui.pageNetGame->BtnGo->setEnabled(true); |
|
619 |
} |
|
307 | 620 |
} |
621 |
||
622 |
void HWForm::AddStatText(const QString & msg) |
|
623 |
{ |
|
624 |
ui.pageGameStats->labelGameStats->setText( |
|
625 |
ui.pageGameStats->labelGameStats->text() + msg); |
|
306 | 626 |
} |
627 |
||
628 |
void HWForm::GameStats(char type, const QString & info) |
|
629 |
{ |
|
630 |
switch(type) { |
|
307 | 631 |
case 'r' : { |
632 |
AddStatText(QString("<h1 align=\"center\">%1</h1>").arg(info)); |
|
633 |
break; |
|
634 |
} |
|
635 |
case 'D' : { |
|
636 |
int i = info.indexOf(' '); |
|
637 |
QString message = QLabel::tr("<p>The best shot award was won by <b>%1</b> with <b>%2</b> pts.</p>") |
|
638 |
.arg(info.mid(i + 1), info.left(i)); |
|
639 |
AddStatText(message); |
|
640 |
break; |
|
641 |
} |
|
869 | 642 |
case 'k' : { |
643 |
int i = info.indexOf(' '); |
|
644 |
QString message = QLabel::tr("<p>The best shot award was won by <b>%1</b> with <b>%2</b> kills.</p>") |
|
645 |
.arg(info.mid(i + 1), info.left(i)); |
|
646 |
AddStatText(message); |
|
647 |
break; |
|
648 |
} |
|
307 | 649 |
case 'K' : { |
650 |
QString message = QLabel::tr("<p>A total of <b>%1</b> Hedgehog(s) were killed during this round.</p>").arg(info); |
|
651 |
AddStatText(message); |
|
652 |
break; |
|
653 |
} |
|
306 | 654 |
} |
655 |
} |
|
656 |
||
696 | 657 |
void HWForm::CreateGame(GameCFGWidget * gamecfg, TeamSelWidget* pTeamSelWidget, QString ammo) |
306 | 658 |
{ |
696 | 659 |
game = new HWGame(config, gamecfg, ammo, pTeamSelWidget); |
306 | 660 |
connect(game, SIGNAL(GameStateChanged(GameState)), this, SLOT(GameStateChanged(GameState))); |
661 |
connect(game, SIGNAL(GameStats(char, const QString &)), this, SLOT(GameStats(char, const QString &))); |
|
425 | 662 |
connect(game, SIGNAL(ErrorMessage(const QString &)), this, SLOT(ShowErrorMessage(const QString &)), Qt::QueuedConnection); |
533 | 663 |
connect(game, SIGNAL(HaveRecord(bool, const QByteArray &)), this, SLOT(GetRecord(bool, const QByteArray &))); |
306 | 664 |
} |
425 | 665 |
|
666 |
void HWForm::ShowErrorMessage(const QString & msg) |
|
667 |
{ |
|
668 |
QMessageBox::warning(this, |
|
669 |
"Hedgewars", |
|
670 |
msg); |
|
671 |
} |
|
533 | 672 |
|
673 |
void HWForm::GetRecord(bool isDemo, const QByteArray & record) |
|
674 |
{ |
|
675 |
QString filename; |
|
676 |
QByteArray demo = record; |
|
677 |
if (isDemo) |
|
678 |
{ |
|
679 |
demo.replace(QByteArray("\x02TL"), QByteArray("\x02TD")); |
|
680 |
demo.replace(QByteArray("\x02TN"), QByteArray("\x02TD")); |
|
989 | 681 |
demo.replace(QByteArray("\x02TS"), QByteArray("\x02TD")); |
579 | 682 |
filename = cfgdir->absolutePath() + "/Demos/LastRound.hwd_" + *cProtoVer; |
533 | 683 |
} else |
684 |
{ |
|
685 |
demo.replace(QByteArray("\x02TL"), QByteArray("\x02TS")); |
|
686 |
demo.replace(QByteArray("\x02TN"), QByteArray("\x02TS")); |
|
579 | 687 |
filename = cfgdir->absolutePath() + "/Saves/LastRound.hws_" + *cProtoVer; |
533 | 688 |
} |
689 |
||
690 |
||
691 |
QFile demofile(filename); |
|
692 |
if (!demofile.open(QIODevice::WriteOnly)) |
|
693 |
{ |
|
694 |
ShowErrorMessage(tr("Cannot save record to file %1").arg(filename)); |
|
695 |
return ; |
|
696 |
} |
|
697 |
demofile.write(demo.constData(), demo.size()); |
|
698 |
demofile.close(); |
|
699 |
} |
|
587 | 700 |
|
701 |
void HWForm::StartTraining() |
|
702 |
{ |
|
696 | 703 |
CreateGame(0, 0, 0); |
587 | 704 |
|
705 |
game->StartTraining(); |
|
706 |
} |
|
660 | 707 |
|
708 |
void HWForm::CreateNetGame() |
|
709 |
{ |
|
697 | 710 |
QString ammo; |
1339 | 711 |
if (hwnet->isRoomChief()) { |
712 |
ammo = ui.pageSelectWeapon->pWeapons->getWeaponsString(ui.pageNetGame->pGameCFG->WeaponsName->currentText()); |
|
697 | 713 |
} else { |
1339 | 714 |
ammo = ui.pageNetGame->pGameCFG->getNetAmmo(); |
697 | 715 |
} |
1339 | 716 |
|
696 | 717 |
CreateGame(ui.pageNetGame->pGameCFG, ui.pageNetGame->pNetTeamsWidget, ammo); |
660 | 718 |
|
719 |
connect(game, SIGNAL(SendNet(const QByteArray &)), hwnet, SLOT(SendNet(const QByteArray &))); |
|
1356 | 720 |
connect(game, SIGNAL(SendChat(const QString &)), hwnet, SLOT(chatLineToNet(const QString &))); |
660 | 721 |
connect(hwnet, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &))); |
1356 | 722 |
connect(hwnet, SIGNAL(chatStringFromNet(const QString &)), game, SLOT(FromNetChat(const QString &))); |
660 | 723 |
|
724 |
game->StartNet(); |
|
725 |
} |
|
674 | 726 |
|
727 |
void HWForm::closeEvent(QCloseEvent *event) |
|
728 |
{ |
|
729 |
config->SaveOptions(); |
|
730 |
event->accept(); |
|
731 |
} |
|
1235 | 732 |
|
733 |
void HWForm::Music(bool checked) |
|
734 |
{ |
|
735 |
if (checked) |
|
736 |
sdli.StartMusic(); |
|
737 |
else |
|
738 |
sdli.StopMusic(); |
|
739 |
} |