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