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