author | unc0rr |
Wed, 26 Dec 2007 22:18:34 +0000 | |
changeset 687 | 8e2dedaa01b4 |
parent 686 | 494b5880989a |
child 694 | 436045756181 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
486 | 3 |
* Copyright (c) 2005-2007 Andrey Korotaev <unC0Rr@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#include <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> |
184 | 30 |
|
31 |
#include "hwform.h" |
|
32 |
#include "game.h" |
|
33 |
#include "team.h" |
|
34 |
#include "teamselect.h" |
|
681 | 35 |
#include "selectWeapon.h" |
184 | 36 |
#include "gameuiconfig.h" |
37 |
#include "pages.h" |
|
38 |
#include "hwconsts.h" |
|
314 | 39 |
#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
|
40 |
#include "gamecfgwidget.h" |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
41 |
#include "netserverslist.h" |
634 | 42 |
#include "netudpserver.h" |
43 |
#include "netwwwserver.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); |
|
301 | 52 |
config = new GameUIConfig(this, cfgdir->absolutePath() + "/hedgewars.ini"); |
184 | 53 |
|
245 | 54 |
UpdateTeamsLists(); |
184 | 55 |
|
56 |
connect(ui.pageMain->BtnSinglePlayer, SIGNAL(clicked()), this, SLOT(GoToSinglePlayer())); |
|
57 |
connect(ui.pageMain->BtnSetup, SIGNAL(clicked()), this, SLOT(GoToSetup())); |
|
58 |
connect(ui.pageMain->BtnMultiplayer, SIGNAL(clicked()), this, SLOT(GoToMultiplayer())); |
|
579 | 59 |
connect(ui.pageMain->BtnLoad, SIGNAL(clicked()), this, SLOT(GoToSaves())); |
184 | 60 |
connect(ui.pageMain->BtnDemos, SIGNAL(clicked()), this, SLOT(GoToDemos())); |
61 |
connect(ui.pageMain->BtnNet, SIGNAL(clicked()), this, SLOT(GoToNet())); |
|
187 | 62 |
connect(ui.pageMain->BtnInfo, SIGNAL(clicked()), this, SLOT(GoToInfo())); |
530 | 63 |
connect(ui.pageMain->BtnExit, SIGNAL(pressed()), this, SLOT(btnExitPressed())); |
64 |
connect(ui.pageMain->BtnExit, SIGNAL(clicked()), this, SLOT(btnExitClicked())); |
|
184 | 65 |
|
585
7531ae5b146e
Rename PageLocalGame -> PageSimpleGame due to future changes
unc0rr
parents:
581
diff
changeset
|
66 |
connect(ui.pageSimpleGame->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
7531ae5b146e
Rename PageLocalGame -> PageSimpleGame due to future changes
unc0rr
parents:
581
diff
changeset
|
67 |
connect(ui.pageSimpleGame->BtnSimpleGame, SIGNAL(clicked()), this, SLOT(SimpleGame())); |
184 | 68 |
|
69 |
connect(ui.pageEditTeam->BtnTeamSave, SIGNAL(clicked()), this, SLOT(TeamSave())); |
|
70 |
connect(ui.pageEditTeam->BtnTeamDiscard, SIGNAL(clicked()), this, SLOT(TeamDiscard())); |
|
71 |
||
289 | 72 |
connect(ui.pageMultiplayer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 73 |
connect(ui.pageMultiplayer->BtnStartMPGame, SIGNAL(clicked()), this, SLOT(StartMPGame())); |
493 | 74 |
connect(ui.pageMultiplayer->teamsSelect, SIGNAL(setEnabledGameStart(bool)), |
492 | 75 |
ui.pageMultiplayer->BtnStartMPGame, SLOT(setEnabled(bool))); |
586 | 76 |
connect(ui.pageMultiplayer->teamsSelect, SIGNAL(SetupClicked()), this, SLOT(IntermediateSetup())); |
184 | 77 |
|
289 | 78 |
connect(ui.pagePlayDemo->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 79 |
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
|
80 |
connect(ui.pagePlayDemo->DemosList, SIGNAL(doubleClicked (const QModelIndex &)), this, SLOT(PlayDemo())); |
184 | 81 |
|
289 | 82 |
connect(ui.pageOptions->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 83 |
connect(ui.pageOptions->BtnNewTeam, SIGNAL(clicked()), this, SLOT(NewTeam())); |
84 |
connect(ui.pageOptions->BtnEditTeam, SIGNAL(clicked()), this, SLOT(EditTeam())); |
|
85 |
connect(ui.pageOptions->BtnSaveOptions, SIGNAL(clicked()), config, SLOT(SaveOptions())); |
|
312 | 86 |
connect(ui.pageOptions->BtnSaveOptions, SIGNAL(clicked()), this, SLOT(GoBack())); |
600 | 87 |
connect(ui.pageOptions->WeaponsButt, SIGNAL(clicked()), this, SLOT(GoToSelectWeapon())); |
184 | 88 |
|
289 | 89 |
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
|
90 |
connect(ui.pageNet->BtnSpecifyServer, SIGNAL(clicked()), this, SLOT(NetConnect())); |
646 | 91 |
connect(ui.pageNet->BtnNetSvrStart, SIGNAL(clicked()), this, SLOT(GoToNetServer())); |
666 | 92 |
connect(ui.pageNet, SIGNAL(connectClicked(const QString &, quint16)), this, SLOT(NetConnectServer(const QString &, quint16))); |
646 | 93 |
|
94 |
connect(ui.pageNetServer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
|
95 |
connect(ui.pageNetServer->BtnStart, SIGNAL(clicked()), this, SLOT(NetStartServer())); |
|
184 | 96 |
|
289 | 97 |
connect(ui.pageNetGame->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 98 |
connect(ui.pageNetGame->BtnGo, SIGNAL(clicked()), this, SLOT(NetStartGame())); |
493 | 99 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(setEnabledGameStart(bool)), |
492 | 100 |
ui.pageNetGame->BtnGo, SLOT(setEnabled(bool))); |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
101 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(SetupClicked()), this, SLOT(IntermediateSetup())); |
184 | 102 |
|
289 | 103 |
connect(ui.pageInfo->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
187 | 104 |
|
306 | 105 |
connect(ui.pageGameStats->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
106 |
||
586 | 107 |
connect(ui.pageSinglePlayer->BtnSimpleGamePage, SIGNAL(clicked()), this, SLOT(GoToSimpleGame())); |
587 | 108 |
connect(ui.pageSinglePlayer->BtnTrainPage, SIGNAL(clicked()), this, SLOT(GoToTraining())); |
586 | 109 |
connect(ui.pageSinglePlayer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
311 | 110 |
|
587 | 111 |
connect(ui.pageTraining->BtnStartTrain, SIGNAL(clicked()), this, SLOT(StartTraining())); |
112 |
connect(ui.pageTraining->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
|
113 |
||
600 | 114 |
connect(ui.pageSelectWeapon->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
683 | 115 |
connect(ui.pageSelectWeapon->BtnDefault, SIGNAL(clicked()), ui.pageSelectWeapon->pWeapons, SLOT(setDefault())); |
116 |
connect(ui.pageSelectWeapon->BtnSave, SIGNAL(clicked()), ui.pageSelectWeapon->pWeapons, SLOT(save())); |
|
600 | 117 |
|
290 | 118 |
GoToPage(ID_PAGE_MAIN); |
184 | 119 |
} |
120 |
||
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
121 |
void HWForm::UpdateTeamsLists(const QStringList* editable_teams) |
245 | 122 |
{ |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
123 |
QStringList teamslist; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
124 |
if(editable_teams) { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
125 |
teamslist=*editable_teams; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
126 |
} else { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
127 |
teamslist = config->GetTeamsList(); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
128 |
} |
245 | 129 |
|
130 |
if(teamslist.empty()) { |
|
131 |
HWTeam defaultTeam("DefaultTeam"); |
|
132 |
defaultTeam.SaveToFile(); |
|
133 |
teamslist.push_back("DefaultTeam"); |
|
134 |
} |
|
135 |
||
136 |
ui.pageOptions->CBTeamName->clear(); |
|
137 |
ui.pageOptions->CBTeamName->addItems(teamslist); |
|
138 |
} |
|
139 |
||
184 | 140 |
void HWForm::GoToMain() |
141 |
{ |
|
289 | 142 |
GoToPage(ID_PAGE_MAIN); |
184 | 143 |
} |
144 |
||
145 |
void HWForm::GoToSinglePlayer() |
|
146 |
{ |
|
289 | 147 |
GoToPage(ID_PAGE_SINGLEPLAYER); |
184 | 148 |
} |
149 |
||
586 | 150 |
void HWForm::GoToSimpleGame() |
151 |
{ |
|
152 |
GoToPage(ID_PAGE_SIMPLEGAME); |
|
153 |
} |
|
154 |
||
587 | 155 |
void HWForm::GoToTraining() |
156 |
{ |
|
157 |
GoToPage(ID_PAGE_TRAINING); |
|
158 |
} |
|
159 |
||
184 | 160 |
void HWForm::GoToSetup() |
161 |
{ |
|
289 | 162 |
GoToPage(ID_PAGE_SETUP); |
184 | 163 |
} |
164 |
||
600 | 165 |
void HWForm::GoToSelectWeapon() |
166 |
{ |
|
167 |
GoToPage(ID_PAGE_SELECTWEAPON); |
|
168 |
} |
|
169 |
||
187 | 170 |
void HWForm::GoToInfo() |
171 |
{ |
|
289 | 172 |
GoToPage(ID_PAGE_INFO); |
187 | 173 |
} |
174 |
||
184 | 175 |
void HWForm::GoToMultiplayer() |
176 |
{ |
|
290 | 177 |
GoToPage(ID_PAGE_MULTIPLAYER); |
184 | 178 |
} |
179 |
||
579 | 180 |
void HWForm::GoToSaves() |
181 |
{ |
|
581 | 182 |
ui.pagePlayDemo->FillFromDir(PagePlayDemo::RT_Save); |
579 | 183 |
|
184 |
GoToPage(ID_PAGE_DEMOS); |
|
185 |
} |
|
186 |
||
184 | 187 |
void HWForm::GoToDemos() |
188 |
{ |
|
581 | 189 |
ui.pagePlayDemo->FillFromDir(PagePlayDemo::RT_Demo); |
579 | 190 |
|
290 | 191 |
GoToPage(ID_PAGE_DEMOS); |
184 | 192 |
} |
193 |
||
194 |
void HWForm::GoToNet() |
|
195 |
{ |
|
646 | 196 |
ui.pageNet->updateServersList(); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
197 |
|
289 | 198 |
GoToPage(ID_PAGE_NET); |
184 | 199 |
} |
200 |
||
646 | 201 |
void HWForm::GoToNetServer() |
202 |
{ |
|
203 |
GoToPage(ID_PAGE_NETSERVER); |
|
204 |
} |
|
205 |
||
496 | 206 |
void HWForm::OnPageShown(quint8 id, quint8 lastid) |
311 | 207 |
{ |
322 | 208 |
if (id == ID_PAGE_MULTIPLAYER || id == ID_PAGE_NETCFG) { |
311 | 209 |
QStringList tmNames=config->GetTeamsList(); |
322 | 210 |
TeamSelWidget* curTeamSelWidget; |
496 | 211 |
if(id == ID_PAGE_MULTIPLAYER) { |
212 |
curTeamSelWidget=ui.pageMultiplayer->teamsSelect; |
|
213 |
} else { |
|
322 | 214 |
curTeamSelWidget=ui.pageNetGame->pNetTeamsWidget; |
496 | 215 |
} |
311 | 216 |
QList<HWTeam> teamsList; |
217 |
for(QStringList::iterator it=tmNames.begin(); it!=tmNames.end(); it++) { |
|
218 |
HWTeam team(*it); |
|
219 |
team.LoadFromFile(); |
|
220 |
teamsList.push_back(team); |
|
221 |
} |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
222 |
if(lastid==ID_PAGE_SETUP) { // _TEAM |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
223 |
if (editedTeam) { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
224 |
curTeamSelWidget->addTeam(*editedTeam); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
225 |
} |
496 | 226 |
} else { |
227 |
curTeamSelWidget->resetPlayingTeams(teamsList); |
|
228 |
} |
|
311 | 229 |
} |
230 |
} |
|
231 |
||
289 | 232 |
void HWForm::GoToPage(quint8 id) |
233 |
{ |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
234 |
quint8 lastid=ui.Pages->currentIndex(); |
289 | 235 |
PagesStack.push(ui.Pages->currentIndex()); |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
236 |
OnPageShown(id, lastid); |
289 | 237 |
ui.Pages->setCurrentIndex(id); |
238 |
} |
|
239 |
||
240 |
void HWForm::GoBack() |
|
241 |
{ |
|
350 | 242 |
if (!PagesStack.isEmpty() && PagesStack.top() == ID_PAGE_NET) { |
383 | 243 |
if(hwnet || pnetserver) NetDisconnect(); |
350 | 244 |
} |
289 | 245 |
quint8 id = PagesStack.isEmpty() ? ID_PAGE_MAIN : PagesStack.pop(); |
496 | 246 |
OnPageShown(id, ui.Pages->currentIndex()); |
289 | 247 |
ui.Pages->setCurrentIndex(id); |
184 | 248 |
} |
249 |
||
530 | 250 |
void HWForm::btnExitPressed() |
251 |
{ |
|
252 |
eggTimer.start(); |
|
253 |
} |
|
254 |
||
255 |
void HWForm::btnExitClicked() |
|
256 |
{ |
|
257 |
if (eggTimer.elapsed() < 3000) |
|
258 |
close(); |
|
259 |
else |
|
260 |
{ |
|
261 |
QPushButton * btn = findChild<QPushButton *>("imageButt"); |
|
262 |
if (btn) |
|
263 |
{ |
|
264 |
btn->setIcon(QIcon(":/res/bonus.png")); |
|
265 |
} |
|
266 |
} |
|
267 |
} |
|
268 |
||
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
269 |
void HWForm::IntermediateSetup() |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
270 |
{ |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
271 |
quint8 id=ui.Pages->currentIndex(); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
272 |
TeamSelWidget* curTeamSelWidget; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
273 |
if(id == ID_PAGE_MULTIPLAYER) { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
274 |
curTeamSelWidget=ui.pageMultiplayer->teamsSelect; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
275 |
} else { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
276 |
curTeamSelWidget=ui.pageNetGame->pNetTeamsWidget; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
277 |
} |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
278 |
QList<HWTeam> teams=curTeamSelWidget->getDontPlayingTeams(); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
279 |
QStringList tmnames; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
280 |
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
|
281 |
tmnames+=it->TeamName; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
282 |
} |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
283 |
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
|
284 |
|
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
285 |
GoToPage(ID_PAGE_SETUP); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
286 |
} |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
287 |
|
184 | 288 |
void HWForm::NewTeam() |
289 |
{ |
|
245 | 290 |
editedTeam = new HWTeam("unnamed"); |
291 |
editedTeam->SetToPage(this); |
|
290 | 292 |
GoToPage(ID_PAGE_SETUP_TEAM); |
184 | 293 |
} |
294 |
||
295 |
void HWForm::EditTeam() |
|
296 |
{ |
|
245 | 297 |
editedTeam = new HWTeam(ui.pageOptions->CBTeamName->currentText()); |
298 |
editedTeam->LoadFromFile(); |
|
299 |
editedTeam->SetToPage(this); |
|
290 | 300 |
GoToPage(ID_PAGE_SETUP_TEAM); |
184 | 301 |
} |
302 |
||
303 |
void HWForm::TeamSave() |
|
304 |
{ |
|
245 | 305 |
editedTeam->GetFromPage(this); |
306 |
editedTeam->SaveToFile(); |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
307 |
delete editedTeam; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
308 |
editedTeam=0; |
245 | 309 |
UpdateTeamsLists(); |
290 | 310 |
GoBack(); |
184 | 311 |
} |
312 |
||
313 |
void HWForm::TeamDiscard() |
|
314 |
{ |
|
245 | 315 |
delete editedTeam; |
496 | 316 |
editedTeam=0; |
290 | 317 |
GoBack(); |
184 | 318 |
} |
319 |
||
320 |
void HWForm::SimpleGame() |
|
321 |
{ |
|
585
7531ae5b146e
Rename PageLocalGame -> PageSimpleGame due to future changes
unc0rr
parents:
581
diff
changeset
|
322 |
CreateGame(ui.pageSimpleGame->gameCFG, 0); |
184 | 323 |
game->StartQuick(); |
324 |
} |
|
325 |
||
326 |
void HWForm::PlayDemo() |
|
327 |
{ |
|
328 |
QListWidgetItem * curritem = ui.pagePlayDemo->DemosList->currentItem(); |
|
329 |
if (!curritem) |
|
330 |
{ |
|
331 |
QMessageBox::critical(this, |
|
332 |
tr("Error"), |
|
581 | 333 |
tr("Please, select record from the list above"), |
184 | 334 |
tr("OK")); |
335 |
return ; |
|
336 |
} |
|
341 | 337 |
CreateGame(0, 0); |
580 | 338 |
game->PlayDemo(curritem->data(Qt::UserRole).toString()); |
184 | 339 |
} |
340 |
||
666 | 341 |
void HWForm::NetConnectServer(const QString & host, quint16 port) |
416 | 342 |
{ |
666 | 343 |
_NetConnect(host, port, ui.pageOptions->editNetNick->text()); |
416 | 344 |
} |
345 |
||
314 | 346 |
void HWForm::_NetConnect(const QString & hostName, quint16 port, const QString & nick) |
184 | 347 |
{ |
637
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
348 |
if(hwnet) { |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
349 |
hwnet->Disconnect(); |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
350 |
delete hwnet; |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
351 |
hwnet=0; |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
352 |
} |
465 | 353 |
ui.pageNetGame->pChatWidget->clear(); |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
354 |
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
|
355 |
|
660 | 356 |
connect(hwnet, SIGNAL(AskForRunGame()), this, SLOT(CreateNetGame())); |
184 | 357 |
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
|
358 |
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
|
359 |
|
471 | 360 |
connect(hwnet, SIGNAL(chatStringFromNet(const QStringList&)), |
461 | 361 |
ui.pageNetGame->pChatWidget, SLOT(onChatStringFromNet(const QStringList&))); |
362 |
connect(ui.pageNetGame->pChatWidget, SIGNAL(chatLine(const QString&)), |
|
363 |
hwnet, SLOT(chatLineToNet(const QString&))); |
|
471 | 364 |
connect(hwnet, SIGNAL(nickAdded(const QString&)), |
465 | 365 |
ui.pageNetGame->pChatWidget, SLOT(nickAdded(const QString&))); |
471 | 366 |
connect(hwnet, SIGNAL(nickRemoved(const QString&)), |
465 | 367 |
ui.pageNetGame->pChatWidget, SLOT(nickRemoved(const QString&))); |
461 | 368 |
|
352 | 369 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(hhogsNumChanged(const HWTeam&)), |
370 |
hwnet, SLOT(onHedgehogsNumChanged(const HWTeam&))); |
|
372 | 371 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(teamColorChanged(const HWTeam&)), |
372 |
hwnet, SLOT(onTeamColorChanged(const HWTeam&))); |
|
327 | 373 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(teamWillPlay(HWTeam)), hwnet, SLOT(AddTeam(HWTeam))); |
373 | 374 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(acceptRequested(HWTeam)), hwnet, SLOT(AddTeam(HWTeam))); |
347 | 375 |
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
|
376 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
377 |
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
|
378 |
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
|
379 |
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
|
380 |
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
|
381 |
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
|
382 |
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
|
383 |
|
383 | 384 |
connect(hwnet, SIGNAL(Disconnected()), this, SLOT(ForcedDisconnect())); |
330 | 385 |
connect(hwnet, SIGNAL(seedChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setSeed(const QString &))); |
386 |
connect(hwnet, SIGNAL(mapChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setMap(const QString &))); |
|
387 |
connect(hwnet, SIGNAL(themeChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setTheme(const QString &))); |
|
388 |
connect(hwnet, SIGNAL(initHealthChanged(quint32)), ui.pageNetGame->pGameCFG, SLOT(setInitHealth(quint32))); |
|
389 |
connect(hwnet, SIGNAL(turnTimeChanged(quint32)), ui.pageNetGame->pGameCFG, SLOT(setTurnTime(quint32))); |
|
390 |
connect(hwnet, SIGNAL(fortsModeChanged(bool)), ui.pageNetGame->pGameCFG, SLOT(setFortsMode(bool))); |
|
425 | 391 |
connect(hwnet, SIGNAL(hhnumChanged(const HWTeam&)), |
352 | 392 |
ui.pageNetGame->pNetTeamsWidget, SLOT(changeHHNum(const HWTeam&))); |
425 | 393 |
connect(hwnet, SIGNAL(teamColorChanged(const HWTeam&)), |
372 | 394 |
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
|
395 |
|
314 | 396 |
hwnet->Connect(hostName, port, nick); |
184 | 397 |
} |
398 |
||
314 | 399 |
void HWForm::NetConnect() |
400 |
{ |
|
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
401 |
HWHostPortDialog * hpd = new HWHostPortDialog(this); |
654 | 402 |
hpd->leHost->setText(*netHost); |
403 |
hpd->sbPort->setValue(netPort); |
|
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
404 |
|
654 | 405 |
if (hpd->exec() == QDialog::Accepted) |
406 |
{ |
|
407 |
config->SaveOptions(); |
|
408 |
delete netHost; |
|
409 |
netHost = new QString(hpd->leHost->text()); |
|
410 |
netPort = hpd->sbPort->value(); |
|
411 |
_NetConnect(*netHost, netPort, ui.pageOptions->editNetNick->text()); |
|
412 |
} |
|
314 | 413 |
} |
414 |
||
415 |
void HWForm::NetStartServer() |
|
416 |
{ |
|
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
|
417 |
config->SaveOptions(); |
636 | 418 |
|
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
|
419 |
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
|
420 |
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
|
421 |
{ |
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
|
422 |
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
|
423 |
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
|
424 |
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
|
425 |
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
|
426 |
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
|
427 |
} |
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
|
428 |
|
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
|
429 |
_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
|
430 |
|
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
|
431 |
if (ui.pageNet->rbLocalGame->isChecked()) |
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
|
432 |
pRegisterServer = new HWNetUdpServer(0, ui.pageNetServer->leServerDescr->text(), 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
|
433 |
else |
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
|
434 |
pRegisterServer = new HWNetWwwServer(0, ui.pageNetServer->leServerDescr->text(), ui.pageNetServer->sbPort->value()); |
314 | 435 |
} |
436 |
||
184 | 437 |
void HWForm::NetDisconnect() |
438 |
{ |
|
383 | 439 |
if(hwnet) { |
440 |
hwnet->Disconnect(); |
|
441 |
delete hwnet; |
|
442 |
hwnet=0; |
|
443 |
} |
|
314 | 444 |
if(pnetserver) { |
660 | 445 |
if (pRegisterServer) |
446 |
{ |
|
447 |
pRegisterServer->unregister(); |
|
448 |
pRegisterServer = 0; |
|
449 |
} |
|
659 | 450 |
|
314 | 451 |
pnetserver->StopServer(); |
452 |
delete pnetserver; |
|
453 |
pnetserver=0; |
|
454 |
} |
|
184 | 455 |
} |
456 |
||
383 | 457 |
void HWForm::ForcedDisconnect() |
458 |
{ |
|
459 |
if(pnetserver) return; // we have server - let it care of all things |
|
460 |
if (hwnet) { |
|
461 |
hwnet->deleteLater(); |
|
462 |
hwnet=0; |
|
425 | 463 |
QMessageBox::warning(this, QMessageBox::tr("Network"), |
407 | 464 |
QMessageBox::tr("Connection to server is lost")); |
383 | 465 |
} |
466 |
GoBack(); |
|
467 |
} |
|
468 |
||
184 | 469 |
void HWForm::NetGameEnter() |
470 |
{ |
|
290 | 471 |
GoToPage(ID_PAGE_NETCFG); |
184 | 472 |
} |
473 |
||
474 |
void HWForm::NetStartGame() |
|
475 |
{ |
|
448 | 476 |
ui.pageNetGame->BtnGo->setText(QPushButton::tr("Waiting")); |
477 |
ui.pageNetGame->BtnGo->setEnabled(false); |
|
478 |
hwnet->StartGame(); |
|
184 | 479 |
} |
480 |
||
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
481 |
void HWForm::AddNetTeam(const HWTeam& team) |
184 | 482 |
{ |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
483 |
ui.pageNetGame->pNetTeamsWidget->addTeam(team); |
184 | 484 |
} |
485 |
||
486 |
void HWForm::StartMPGame() |
|
487 |
{ |
|
341 | 488 |
CreateGame(ui.pageMultiplayer->gameCFG, ui.pageMultiplayer->teamsSelect); |
306 | 489 |
|
184 | 490 |
game->StartLocal(); |
491 |
} |
|
306 | 492 |
|
493 |
void HWForm::GameStateChanged(GameState gameState) |
|
494 |
{ |
|
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
495 |
switch(gameState) { |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
496 |
case gsStarted: { |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
497 |
ui.pageGameStats->labelGameStats->setText(""); |
661
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
498 |
if (pRegisterServer) |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
499 |
{ |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
500 |
pRegisterServer->unregister(); |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
501 |
pRegisterServer = 0; |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
502 |
} |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
503 |
break; |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
504 |
} |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
505 |
case gsFinished: { |
686 | 506 |
GoBack(); |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
507 |
GoToPage(ID_PAGE_GAMESTATS); |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
508 |
break; |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
509 |
} |
686 | 510 |
default: { |
511 |
quint8 id = ui.Pages->currentIndex(); |
|
512 |
if (id == ID_PAGE_INGAME) GoBack(); |
|
513 |
}; |
|
307 | 514 |
} |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
515 |
|
660 | 516 |
if (hwnet) |
517 |
{ |
|
518 |
ui.pageNetGame->BtnGo->setText(QPushButton::tr("Go!")); |
|
519 |
ui.pageNetGame->BtnGo->setEnabled(true); |
|
520 |
} |
|
307 | 521 |
} |
522 |
||
523 |
void HWForm::AddStatText(const QString & msg) |
|
524 |
{ |
|
525 |
ui.pageGameStats->labelGameStats->setText( |
|
526 |
ui.pageGameStats->labelGameStats->text() + msg); |
|
306 | 527 |
} |
528 |
||
529 |
void HWForm::GameStats(char type, const QString & info) |
|
530 |
{ |
|
531 |
switch(type) { |
|
307 | 532 |
case 'r' : { |
533 |
AddStatText(QString("<h1 align=\"center\">%1</h1>").arg(info)); |
|
534 |
break; |
|
535 |
} |
|
536 |
case 'D' : { |
|
537 |
int i = info.indexOf(' '); |
|
538 |
QString message = QLabel::tr("<p>The best shot award was won by <b>%1</b> with <b>%2</b> pts.</p>") |
|
539 |
.arg(info.mid(i + 1), info.left(i)); |
|
540 |
AddStatText(message); |
|
541 |
break; |
|
542 |
} |
|
543 |
case 'K' : { |
|
544 |
QString message = QLabel::tr("<p>A total of <b>%1</b> Hedgehog(s) were killed during this round.</p>").arg(info); |
|
545 |
AddStatText(message); |
|
546 |
break; |
|
547 |
} |
|
306 | 548 |
} |
549 |
} |
|
550 |
||
341 | 551 |
void HWForm::CreateGame(GameCFGWidget * gamecfg, TeamSelWidget* pTeamSelWidget) |
306 | 552 |
{ |
681 | 553 |
game = new HWGame(config, gamecfg, ui.pageSelectWeapon->pWeapons->getWeaponsString(), pTeamSelWidget); |
306 | 554 |
connect(game, SIGNAL(GameStateChanged(GameState)), this, SLOT(GameStateChanged(GameState))); |
555 |
connect(game, SIGNAL(GameStats(char, const QString &)), this, SLOT(GameStats(char, const QString &))); |
|
425 | 556 |
connect(game, SIGNAL(ErrorMessage(const QString &)), this, SLOT(ShowErrorMessage(const QString &)), Qt::QueuedConnection); |
533 | 557 |
connect(game, SIGNAL(HaveRecord(bool, const QByteArray &)), this, SLOT(GetRecord(bool, const QByteArray &))); |
686 | 558 |
|
559 |
GoToPage(ID_PAGE_INGAME); |
|
306 | 560 |
} |
425 | 561 |
|
562 |
void HWForm::ShowErrorMessage(const QString & msg) |
|
563 |
{ |
|
564 |
QMessageBox::warning(this, |
|
565 |
"Hedgewars", |
|
566 |
msg); |
|
567 |
} |
|
533 | 568 |
|
569 |
void HWForm::GetRecord(bool isDemo, const QByteArray & record) |
|
570 |
{ |
|
571 |
QString filename; |
|
572 |
QByteArray demo = record; |
|
573 |
if (isDemo) |
|
574 |
{ |
|
575 |
demo.replace(QByteArray("\x02TL"), QByteArray("\x02TD")); |
|
576 |
demo.replace(QByteArray("\x02TN"), QByteArray("\x02TD")); |
|
579 | 577 |
filename = cfgdir->absolutePath() + "/Demos/LastRound.hwd_" + *cProtoVer; |
533 | 578 |
} else |
579 |
{ |
|
580 |
demo.replace(QByteArray("\x02TL"), QByteArray("\x02TS")); |
|
581 |
demo.replace(QByteArray("\x02TN"), QByteArray("\x02TS")); |
|
579 | 582 |
filename = cfgdir->absolutePath() + "/Saves/LastRound.hws_" + *cProtoVer; |
533 | 583 |
} |
584 |
||
585 |
||
586 |
QFile demofile(filename); |
|
587 |
if (!demofile.open(QIODevice::WriteOnly)) |
|
588 |
{ |
|
589 |
ShowErrorMessage(tr("Cannot save record to file %1").arg(filename)); |
|
590 |
return ; |
|
591 |
} |
|
592 |
demofile.write(demo.constData(), demo.size()); |
|
593 |
demofile.close(); |
|
594 |
} |
|
587 | 595 |
|
596 |
void HWForm::StartTraining() |
|
597 |
{ |
|
598 |
CreateGame(0, 0); |
|
599 |
||
600 |
game->StartTraining(); |
|
601 |
} |
|
660 | 602 |
|
603 |
void HWForm::CreateNetGame() |
|
604 |
{ |
|
605 |
CreateGame(ui.pageNetGame->pGameCFG, ui.pageNetGame->pNetTeamsWidget); |
|
606 |
||
607 |
connect(game, SIGNAL(SendNet(const QByteArray &)), hwnet, SLOT(SendNet(const QByteArray &))); |
|
608 |
connect(hwnet, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &))); |
|
609 |
||
610 |
game->StartNet(); |
|
611 |
} |
|
674 | 612 |
|
613 |
void HWForm::closeEvent(QCloseEvent *event) |
|
614 |
{ |
|
615 |
config->SaveOptions(); |
|
616 |
event->accept(); |
|
617 |
} |