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