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