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