author | displacer |
Sat, 03 Feb 2007 12:42:38 +0000 | |
changeset 381 | 6096d74c37da |
parent 373 | df912aab6b7e |
child 383 | 09a8795105a4 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com> |
|
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 <QtGui> |
|
20 |
#include <QStringList> |
|
21 |
#include <QProcess> |
|
22 |
#include <QDir> |
|
23 |
#include <QPixmap> |
|
24 |
#include <QRegExp> |
|
25 |
#include <QIcon> |
|
26 |
#include <QFile> |
|
27 |
#include <QTextStream> |
|
28 |
||
29 |
#include "hwform.h" |
|
30 |
#include "game.h" |
|
31 |
#include "team.h" |
|
32 |
#include "netclient.h" |
|
33 |
#include "teamselect.h" |
|
34 |
#include "gameuiconfig.h" |
|
35 |
#include "pages.h" |
|
36 |
#include "hwconsts.h" |
|
314 | 37 |
#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
|
38 |
#include "gamecfgwidget.h" |
184 | 39 |
|
40 |
HWForm::HWForm(QWidget *parent) |
|
314 | 41 |
: QMainWindow(parent), pnetserver(0) |
184 | 42 |
{ |
43 |
ui.setupUi(this); |
|
44 |
||
301 | 45 |
config = new GameUIConfig(this, cfgdir->absolutePath() + "/hedgewars.ini"); |
184 | 46 |
|
245 | 47 |
UpdateTeamsLists(); |
184 | 48 |
|
49 |
connect(ui.pageMain->BtnSinglePlayer, SIGNAL(clicked()), this, SLOT(GoToSinglePlayer())); |
|
50 |
connect(ui.pageMain->BtnSetup, SIGNAL(clicked()), this, SLOT(GoToSetup())); |
|
51 |
connect(ui.pageMain->BtnMultiplayer, SIGNAL(clicked()), this, SLOT(GoToMultiplayer())); |
|
52 |
connect(ui.pageMain->BtnDemos, SIGNAL(clicked()), this, SLOT(GoToDemos())); |
|
53 |
connect(ui.pageMain->BtnNet, SIGNAL(clicked()), this, SLOT(GoToNet())); |
|
187 | 54 |
connect(ui.pageMain->BtnInfo, SIGNAL(clicked()), this, SLOT(GoToInfo())); |
184 | 55 |
connect(ui.pageMain->BtnExit, SIGNAL(clicked()), this, SLOT(close())); |
56 |
||
289 | 57 |
connect(ui.pageLocalGame->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 58 |
connect(ui.pageLocalGame->BtnSimpleGame, SIGNAL(clicked()), this, SLOT(SimpleGame())); |
59 |
||
60 |
connect(ui.pageEditTeam->BtnTeamSave, SIGNAL(clicked()), this, SLOT(TeamSave())); |
|
61 |
connect(ui.pageEditTeam->BtnTeamDiscard, SIGNAL(clicked()), this, SLOT(TeamDiscard())); |
|
62 |
||
289 | 63 |
connect(ui.pageMultiplayer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 64 |
connect(ui.pageMultiplayer->BtnStartMPGame, SIGNAL(clicked()), this, SLOT(StartMPGame())); |
65 |
||
289 | 66 |
connect(ui.pagePlayDemo->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 67 |
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
|
68 |
connect(ui.pagePlayDemo->DemosList, SIGNAL(doubleClicked (const QModelIndex &)), this, SLOT(PlayDemo())); |
184 | 69 |
|
289 | 70 |
connect(ui.pageOptions->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 71 |
connect(ui.pageOptions->BtnNewTeam, SIGNAL(clicked()), this, SLOT(NewTeam())); |
72 |
connect(ui.pageOptions->BtnEditTeam, SIGNAL(clicked()), this, SLOT(EditTeam())); |
|
73 |
connect(ui.pageOptions->BtnSaveOptions, SIGNAL(clicked()), config, SLOT(SaveOptions())); |
|
312 | 74 |
connect(ui.pageOptions->BtnSaveOptions, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 75 |
|
289 | 76 |
connect(ui.pageNet->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 77 |
connect(ui.pageNet->BtnNetConnect, SIGNAL(clicked()), this, SLOT(NetConnect())); |
314 | 78 |
connect(ui.pageNet->BtnNetSvrStart, SIGNAL(clicked()), this, SLOT(NetStartServer())); |
184 | 79 |
|
289 | 80 |
connect(ui.pageNetGame->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 81 |
connect(ui.pageNetGame->BtnGo, SIGNAL(clicked()), this, SLOT(NetStartGame())); |
82 |
||
83 |
connect(ui.pageNetChat->BtnDisconnect, SIGNAL(clicked()), this, SLOT(NetDisconnect())); |
|
84 |
connect(ui.pageNetChat->BtnJoin, SIGNAL(clicked()), this, SLOT(NetJoin())); |
|
85 |
connect(ui.pageNetChat->BtnCreate, SIGNAL(clicked()), this, SLOT(NetCreate())); |
|
86 |
||
289 | 87 |
connect(ui.pageInfo->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
187 | 88 |
|
306 | 89 |
connect(ui.pageGameStats->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
90 |
||
311 | 91 |
connect(ui.pageMultiplayer->teamsSelect, SIGNAL(NewTeam()), this, SLOT(NewTeam())); |
92 |
||
290 | 93 |
GoToPage(ID_PAGE_MAIN); |
184 | 94 |
} |
95 |
||
245 | 96 |
void HWForm::UpdateTeamsLists() |
97 |
{ |
|
98 |
QStringList teamslist = config->GetTeamsList(); |
|
99 |
||
100 |
if(teamslist.empty()) { |
|
101 |
HWTeam defaultTeam("DefaultTeam"); |
|
102 |
defaultTeam.SaveToFile(); |
|
103 |
teamslist.push_back("DefaultTeam"); |
|
104 |
} |
|
105 |
||
106 |
ui.pageOptions->CBTeamName->clear(); |
|
107 |
ui.pageOptions->CBTeamName->addItems(teamslist); |
|
108 |
} |
|
109 |
||
184 | 110 |
void HWForm::GoToMain() |
111 |
{ |
|
289 | 112 |
GoToPage(ID_PAGE_MAIN); |
184 | 113 |
} |
114 |
||
115 |
void HWForm::GoToSinglePlayer() |
|
116 |
{ |
|
289 | 117 |
GoToPage(ID_PAGE_SINGLEPLAYER); |
184 | 118 |
} |
119 |
||
120 |
void HWForm::GoToSetup() |
|
121 |
{ |
|
289 | 122 |
GoToPage(ID_PAGE_SETUP); |
184 | 123 |
} |
124 |
||
187 | 125 |
void HWForm::GoToInfo() |
126 |
{ |
|
289 | 127 |
GoToPage(ID_PAGE_INFO); |
187 | 128 |
} |
129 |
||
184 | 130 |
void HWForm::GoToMultiplayer() |
131 |
{ |
|
290 | 132 |
GoToPage(ID_PAGE_MULTIPLAYER); |
184 | 133 |
} |
134 |
||
135 |
void HWForm::GoToDemos() |
|
136 |
{ |
|
137 |
QDir tmpdir; |
|
138 |
tmpdir.cd(cfgdir->absolutePath()); |
|
139 |
tmpdir.cd("Demos"); |
|
140 |
tmpdir.setFilter(QDir::Files); |
|
141 |
ui.pagePlayDemo->DemosList->clear(); |
|
271 | 142 |
ui.pagePlayDemo->DemosList->addItems(tmpdir.entryList(QStringList("*.hwd_" + cProtoVer)) |
143 |
.replaceInStrings(QRegExp("^(.*).hwd_" + cProtoVer), "\\1")); |
|
290 | 144 |
GoToPage(ID_PAGE_DEMOS); |
184 | 145 |
} |
146 |
||
147 |
void HWForm::GoToNet() |
|
148 |
{ |
|
289 | 149 |
GoToPage(ID_PAGE_NET); |
184 | 150 |
} |
151 |
||
152 |
void HWForm::GoToNetChat() |
|
153 |
{ |
|
289 | 154 |
GoToPage(ID_PAGE_NETCHAT); |
155 |
} |
|
156 |
||
311 | 157 |
void HWForm::OnPageShown(quint8 id) |
158 |
{ |
|
322 | 159 |
if (id == ID_PAGE_MULTIPLAYER || id == ID_PAGE_NETCFG) { |
311 | 160 |
QStringList tmNames=config->GetTeamsList(); |
322 | 161 |
TeamSelWidget* curTeamSelWidget; |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
162 |
id == ID_PAGE_MULTIPLAYER ? curTeamSelWidget=ui.pageMultiplayer->teamsSelect : |
322 | 163 |
curTeamSelWidget=ui.pageNetGame->pNetTeamsWidget; |
311 | 164 |
QList<HWTeam> teamsList; |
165 |
for(QStringList::iterator it=tmNames.begin(); it!=tmNames.end(); it++) { |
|
166 |
HWTeam team(*it); |
|
167 |
team.LoadFromFile(); |
|
168 |
teamsList.push_back(team); |
|
169 |
} |
|
322 | 170 |
curTeamSelWidget->resetPlayingTeams(teamsList); |
311 | 171 |
} |
172 |
} |
|
173 |
||
289 | 174 |
void HWForm::GoToPage(quint8 id) |
175 |
{ |
|
176 |
PagesStack.push(ui.Pages->currentIndex()); |
|
311 | 177 |
OnPageShown(id); |
289 | 178 |
ui.Pages->setCurrentIndex(id); |
179 |
} |
|
180 |
||
181 |
void HWForm::GoBack() |
|
182 |
{ |
|
350 | 183 |
if (!PagesStack.isEmpty() && PagesStack.top() == ID_PAGE_NET) { |
184 |
NetDisconnect(); |
|
185 |
} |
|
289 | 186 |
quint8 id = PagesStack.isEmpty() ? ID_PAGE_MAIN : PagesStack.pop(); |
311 | 187 |
OnPageShown(id); |
289 | 188 |
ui.Pages->setCurrentIndex(id); |
184 | 189 |
} |
190 |
||
191 |
void HWForm::NewTeam() |
|
192 |
{ |
|
245 | 193 |
editedTeam = new HWTeam("unnamed"); |
194 |
editedTeam->SetToPage(this); |
|
290 | 195 |
GoToPage(ID_PAGE_SETUP_TEAM); |
184 | 196 |
} |
197 |
||
198 |
void HWForm::EditTeam() |
|
199 |
{ |
|
245 | 200 |
editedTeam = new HWTeam(ui.pageOptions->CBTeamName->currentText()); |
201 |
editedTeam->LoadFromFile(); |
|
202 |
editedTeam->SetToPage(this); |
|
290 | 203 |
GoToPage(ID_PAGE_SETUP_TEAM); |
184 | 204 |
} |
205 |
||
206 |
void HWForm::TeamSave() |
|
207 |
{ |
|
245 | 208 |
editedTeam->GetFromPage(this); |
209 |
editedTeam->SaveToFile(); |
|
210 |
delete editedTeam; |
|
211 |
UpdateTeamsLists(); |
|
290 | 212 |
GoBack(); |
184 | 213 |
} |
214 |
||
215 |
void HWForm::TeamDiscard() |
|
216 |
{ |
|
245 | 217 |
delete editedTeam; |
290 | 218 |
GoBack(); |
184 | 219 |
} |
220 |
||
221 |
void HWForm::SimpleGame() |
|
222 |
{ |
|
341 | 223 |
CreateGame(ui.pageLocalGame->gameCFG, 0); |
184 | 224 |
game->StartQuick(); |
225 |
} |
|
226 |
||
227 |
void HWForm::PlayDemo() |
|
228 |
{ |
|
229 |
QListWidgetItem * curritem = ui.pagePlayDemo->DemosList->currentItem(); |
|
230 |
if (!curritem) |
|
231 |
{ |
|
232 |
QMessageBox::critical(this, |
|
233 |
tr("Error"), |
|
234 |
tr("Please, select demo from the list above"), |
|
235 |
tr("OK")); |
|
236 |
return ; |
|
237 |
} |
|
341 | 238 |
CreateGame(0, 0); |
271 | 239 |
game->PlayDemo(cfgdir->absolutePath() + "/Demos/" + curritem->text() + ".hwd_" + cProtoVer); |
184 | 240 |
} |
241 |
||
314 | 242 |
void HWForm::_NetConnect(const QString & hostName, quint16 port, const QString & nick) |
184 | 243 |
{ |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
244 |
hwnet = new HWNewNet(config, ui.pageNetGame->pGameCFG, ui.pageNetGame->pNetTeamsWidget); |
184 | 245 |
connect(hwnet, SIGNAL(AddGame(const QString &)), this, SLOT(AddGame(const QString &))); |
246 |
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
|
247 |
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
|
248 |
|
352 | 249 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(hhogsNumChanged(const HWTeam&)), |
250 |
hwnet, SLOT(onHedgehogsNumChanged(const HWTeam&))); |
|
372 | 251 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(teamColorChanged(const HWTeam&)), |
252 |
hwnet, SLOT(onTeamColorChanged(const HWTeam&))); |
|
327 | 253 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(teamWillPlay(HWTeam)), hwnet, SLOT(AddTeam(HWTeam))); |
373 | 254 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(acceptRequested(HWTeam)), hwnet, SLOT(AddTeam(HWTeam))); |
347 | 255 |
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
|
256 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
257 |
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
|
258 |
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
|
259 |
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
|
260 |
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
|
261 |
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
|
262 |
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
|
263 |
|
330 | 264 |
connect(hwnet, SIGNAL(seedChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setSeed(const QString &))); |
265 |
connect(hwnet, SIGNAL(mapChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setMap(const QString &))); |
|
266 |
connect(hwnet, SIGNAL(themeChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setTheme(const QString &))); |
|
267 |
connect(hwnet, SIGNAL(initHealthChanged(quint32)), ui.pageNetGame->pGameCFG, SLOT(setInitHealth(quint32))); |
|
268 |
connect(hwnet, SIGNAL(turnTimeChanged(quint32)), ui.pageNetGame->pGameCFG, SLOT(setTurnTime(quint32))); |
|
269 |
connect(hwnet, SIGNAL(fortsModeChanged(bool)), ui.pageNetGame->pGameCFG, SLOT(setFortsMode(bool))); |
|
352 | 270 |
connect(hwnet, SIGNAL(hhnumChanged(const HWTeam&)), |
271 |
ui.pageNetGame->pNetTeamsWidget, SLOT(changeHHNum(const HWTeam&))); |
|
372 | 272 |
connect(hwnet, SIGNAL(teamColorChanged(const HWTeam&)), |
273 |
ui.pageNetGame->pNetTeamsWidget, SLOT(changeTeamColor(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
|
274 |
|
314 | 275 |
hwnet->Connect(hostName, port, nick); |
184 | 276 |
config->SaveOptions(); |
277 |
} |
|
278 |
||
314 | 279 |
void HWForm::NetConnect() |
280 |
{ |
|
281 |
_NetConnect(ui.pageNet->editIP->text(), 46631, ui.pageNet->editNetNick->text()); |
|
282 |
} |
|
283 |
||
284 |
void HWForm::NetStartServer() |
|
285 |
{ |
|
286 |
pnetserver = new HWNetServer; |
|
287 |
pnetserver->StartServer(); |
|
288 |
_NetConnect(pnetserver->getRunningHostName(), pnetserver->getRunningPort(), ui.pageNet->editNetNick->text()); |
|
289 |
} |
|
290 |
||
184 | 291 |
void HWForm::NetDisconnect() |
292 |
{ |
|
314 | 293 |
hwnet->Disconnect(); |
294 |
delete hwnet; |
|
295 |
hwnet=0; |
|
296 |
if(pnetserver) { |
|
297 |
pnetserver->StopServer(); |
|
298 |
delete pnetserver; |
|
299 |
pnetserver=0; |
|
300 |
} |
|
184 | 301 |
} |
302 |
||
303 |
void HWForm::AddGame(const QString & chan) |
|
304 |
{ |
|
305 |
ui.pageNetChat->ChannelsList->addItem(chan); |
|
306 |
} |
|
307 |
||
308 |
void HWForm::NetGameEnter() |
|
309 |
{ |
|
290 | 310 |
GoToPage(ID_PAGE_NETCFG); |
184 | 311 |
} |
312 |
||
313 |
void HWForm::NetJoin() |
|
314 |
{ |
|
315 |
hwnet->JoinGame("#hw"); |
|
316 |
} |
|
317 |
||
318 |
void HWForm::NetCreate() |
|
319 |
{ |
|
320 |
hwnet->JoinGame("#hw"); |
|
321 |
} |
|
322 |
||
323 |
void HWForm::NetStartGame() |
|
324 |
{ |
|
325 |
hwnet->StartGame(); |
|
326 |
} |
|
327 |
||
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
328 |
void HWForm::AddNetTeam(const HWTeam& team) |
184 | 329 |
{ |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
330 |
ui.pageNetGame->pNetTeamsWidget->addTeam(team); |
184 | 331 |
} |
332 |
||
333 |
void HWForm::StartMPGame() |
|
334 |
{ |
|
341 | 335 |
CreateGame(ui.pageMultiplayer->gameCFG, ui.pageMultiplayer->teamsSelect); |
306 | 336 |
|
184 | 337 |
game->StartLocal(); |
338 |
} |
|
306 | 339 |
|
340 |
void HWForm::GameStateChanged(GameState gameState) |
|
341 |
{ |
|
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
342 |
switch(gameState) { |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
343 |
case gsStarted: { |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
344 |
ui.pageGameStats->labelGameStats->setText(""); |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
345 |
break; |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
346 |
} |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
347 |
case gsFinished: { |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
348 |
GoToPage(ID_PAGE_GAMESTATS); |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
349 |
break; |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
350 |
} |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
351 |
default: ; |
307 | 352 |
} |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
353 |
|
307 | 354 |
} |
355 |
||
356 |
void HWForm::AddStatText(const QString & msg) |
|
357 |
{ |
|
358 |
ui.pageGameStats->labelGameStats->setText( |
|
359 |
ui.pageGameStats->labelGameStats->text() + msg); |
|
306 | 360 |
} |
361 |
||
362 |
void HWForm::GameStats(char type, const QString & info) |
|
363 |
{ |
|
364 |
switch(type) { |
|
307 | 365 |
case 'r' : { |
366 |
AddStatText(QString("<h1 align=\"center\">%1</h1>").arg(info)); |
|
367 |
break; |
|
368 |
} |
|
369 |
case 'D' : { |
|
370 |
int i = info.indexOf(' '); |
|
371 |
QString message = QLabel::tr("<p>The best shot award was won by <b>%1</b> with <b>%2</b> pts.</p>") |
|
372 |
.arg(info.mid(i + 1), info.left(i)); |
|
373 |
AddStatText(message); |
|
374 |
break; |
|
375 |
} |
|
376 |
case 'K' : { |
|
377 |
QString message = QLabel::tr("<p>A total of <b>%1</b> Hedgehog(s) were killed during this round.</p>").arg(info); |
|
378 |
AddStatText(message); |
|
379 |
break; |
|
380 |
} |
|
306 | 381 |
} |
382 |
} |
|
383 |
||
341 | 384 |
void HWForm::CreateGame(GameCFGWidget * gamecfg, TeamSelWidget* pTeamSelWidget) |
306 | 385 |
{ |
341 | 386 |
game = new HWGame(config, gamecfg, pTeamSelWidget); |
306 | 387 |
connect(game, SIGNAL(GameStateChanged(GameState)), this, SLOT(GameStateChanged(GameState))); |
388 |
connect(game, SIGNAL(GameStats(char, const QString &)), this, SLOT(GameStats(char, const QString &))); |
|
389 |
} |