author | unc0rr |
Sat, 10 Jan 2009 15:50:27 +0000 | |
changeset 1637 | 897b37fc4966 |
parent 1627 | efcf6e976869 |
child 1648 | 32d99a3c7998 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1569 | 3 |
* Copyright (c) 2005-2009 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> |
1235 | 30 |
#include <QCheckBox> |
1377 | 31 |
#include <QTextBrowser> |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
32 |
#include <QAction> |
1418 | 33 |
#include <QTimer> |
1419 | 34 |
#include <QScrollBar> |
184 | 35 |
|
36 |
#include "hwform.h" |
|
37 |
#include "game.h" |
|
38 |
#include "team.h" |
|
39 |
#include "teamselect.h" |
|
681 | 40 |
#include "selectWeapon.h" |
184 | 41 |
#include "gameuiconfig.h" |
42 |
#include "pages.h" |
|
1621 | 43 |
#include "statsPage.h" |
184 | 44 |
#include "hwconsts.h" |
314 | 45 |
#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
|
46 |
#include "gamecfgwidget.h" |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
47 |
#include "netserverslist.h" |
634 | 48 |
#include "netudpserver.h" |
461 | 49 |
#include "chatwidget.h" |
579 | 50 |
#include "playrecordpage.h" |
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
51 |
#include "input_ip.h" |
184 | 52 |
|
53 |
HWForm::HWForm(QWidget *parent) |
|
637
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
54 |
: QMainWindow(parent), pnetserver(0), pRegisterServer(0), editedTeam(0), hwnet(0) |
184 | 55 |
{ |
56 |
ui.setupUi(this); |
|
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
57 |
|
1419 | 58 |
CustomizePalettes(); |
59 |
||
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
60 |
ui.pageOptions->CBResolution->addItems(sdli.getResolutions()); |
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
61 |
|
301 | 62 |
config = new GameUIConfig(this, cfgdir->absolutePath() + "/hedgewars.ini"); |
184 | 63 |
|
245 | 64 |
UpdateTeamsLists(); |
695 | 65 |
UpdateWeapons(); |
184 | 66 |
|
1162 | 67 |
connect(config, SIGNAL(frontendFullscreen(bool)), this, SLOT(onFrontendFullscreen(bool))); |
68 |
onFrontendFullscreen(config->isFrontendFullscreen()); |
|
69 |
||
184 | 70 |
connect(ui.pageMain->BtnSinglePlayer, SIGNAL(clicked()), this, SLOT(GoToSinglePlayer())); |
71 |
connect(ui.pageMain->BtnSetup, SIGNAL(clicked()), this, SLOT(GoToSetup())); |
|
72 |
connect(ui.pageMain->BtnNet, SIGNAL(clicked()), this, SLOT(GoToNet())); |
|
187 | 73 |
connect(ui.pageMain->BtnInfo, SIGNAL(clicked()), this, SLOT(GoToInfo())); |
530 | 74 |
connect(ui.pageMain->BtnExit, SIGNAL(pressed()), this, SLOT(btnExitPressed())); |
75 |
connect(ui.pageMain->BtnExit, SIGNAL(clicked()), this, SLOT(btnExitClicked())); |
|
184 | 76 |
|
77 |
connect(ui.pageEditTeam->BtnTeamSave, SIGNAL(clicked()), this, SLOT(TeamSave())); |
|
78 |
connect(ui.pageEditTeam->BtnTeamDiscard, SIGNAL(clicked()), this, SLOT(TeamDiscard())); |
|
79 |
||
289 | 80 |
connect(ui.pageMultiplayer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 81 |
connect(ui.pageMultiplayer->BtnStartMPGame, SIGNAL(clicked()), this, SLOT(StartMPGame())); |
493 | 82 |
connect(ui.pageMultiplayer->teamsSelect, SIGNAL(setEnabledGameStart(bool)), |
492 | 83 |
ui.pageMultiplayer->BtnStartMPGame, SLOT(setEnabled(bool))); |
586 | 84 |
connect(ui.pageMultiplayer->teamsSelect, SIGNAL(SetupClicked()), this, SLOT(IntermediateSetup())); |
184 | 85 |
|
289 | 86 |
connect(ui.pagePlayDemo->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 87 |
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
|
88 |
connect(ui.pagePlayDemo->DemosList, SIGNAL(doubleClicked (const QModelIndex &)), this, SLOT(PlayDemo())); |
184 | 89 |
|
289 | 90 |
connect(ui.pageOptions->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 91 |
connect(ui.pageOptions->BtnNewTeam, SIGNAL(clicked()), this, SLOT(NewTeam())); |
92 |
connect(ui.pageOptions->BtnEditTeam, SIGNAL(clicked()), this, SLOT(EditTeam())); |
|
93 |
connect(ui.pageOptions->BtnSaveOptions, SIGNAL(clicked()), config, SLOT(SaveOptions())); |
|
312 | 94 |
connect(ui.pageOptions->BtnSaveOptions, SIGNAL(clicked()), this, SLOT(GoBack())); |
695 | 95 |
|
1509 | 96 |
connect(ui.pageOptions->WeaponEdit, SIGNAL(clicked()), this, SLOT(GoToSelectWeapon())); |
97 |
connect(ui.pageOptions->WeaponsButt, SIGNAL(clicked()), this, SLOT(GoToSelectNewWeapon())); |
|
98 |
connect(ui.pageSelectWeapon->pWeapons, SIGNAL(weaponsChanged()), this, SLOT(UpdateWeapons())); |
|
184 | 99 |
|
1395 | 100 |
connect(ui.pageNet->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
101 |
connect(ui.pageNet->BtnSpecifyServer, SIGNAL(clicked()), this, SLOT(NetConnect())); |
|
102 |
connect(ui.pageNet->BtnOfficialServer, SIGNAL(clicked()), this, SLOT(NetConnectOfficialServer())); |
|
103 |
connect(ui.pageNet->BtnNetSvrStart, SIGNAL(clicked()), this, SLOT(GoToNetServer())); |
|
104 |
connect(ui.pageNet, SIGNAL(connectClicked(const QString &, quint16)), this, SLOT(NetConnectServer(const QString &, quint16))); |
|
646 | 105 |
|
106 |
connect(ui.pageNetServer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
|
107 |
connect(ui.pageNetServer->BtnStart, SIGNAL(clicked()), this, SLOT(NetStartServer())); |
|
184 | 108 |
|
289 | 109 |
connect(ui.pageNetGame->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
493 | 110 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(setEnabledGameStart(bool)), |
492 | 111 |
ui.pageNetGame->BtnGo, SLOT(setEnabled(bool))); |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
112 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(SetupClicked()), this, SLOT(IntermediateSetup())); |
184 | 113 |
|
1312 | 114 |
connect(ui.pageRoomsList->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
187 | 115 |
|
1312 | 116 |
connect(ui.pageInfo->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
117 |
||
118 |
connect(ui.pageGameStats->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
|
306 | 119 |
|
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
724
diff
changeset
|
120 |
connect(ui.pageSinglePlayer->BtnSimpleGamePage, SIGNAL(clicked()), this, SLOT(SimpleGame())); |
587 | 121 |
connect(ui.pageSinglePlayer->BtnTrainPage, SIGNAL(clicked()), this, SLOT(GoToTraining())); |
1150 | 122 |
connect(ui.pageSinglePlayer->BtnMultiplayer, SIGNAL(clicked()), this, SLOT(GoToMultiplayer())); |
123 |
connect(ui.pageSinglePlayer->BtnLoad, SIGNAL(clicked()), this, SLOT(GoToSaves())); |
|
124 |
connect(ui.pageSinglePlayer->BtnDemos, SIGNAL(clicked()), this, SLOT(GoToDemos())); |
|
586 | 125 |
connect(ui.pageSinglePlayer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
311 | 126 |
|
587 | 127 |
connect(ui.pageTraining->BtnStartTrain, SIGNAL(clicked()), this, SLOT(StartTraining())); |
128 |
connect(ui.pageTraining->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
|
129 |
||
600 | 130 |
connect(ui.pageSelectWeapon->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
683 | 131 |
connect(ui.pageSelectWeapon->BtnDefault, SIGNAL(clicked()), ui.pageSelectWeapon->pWeapons, SLOT(setDefault())); |
132 |
connect(ui.pageSelectWeapon->BtnSave, SIGNAL(clicked()), ui.pageSelectWeapon->pWeapons, SLOT(save())); |
|
600 | 133 |
|
718 | 134 |
connect(ui.pageSelectWeapon->BtnDelete, SIGNAL(clicked()), |
135 |
ui.pageSelectWeapon->pWeapons, SLOT(deleteWeaponsName())); // executed first |
|
724 | 136 |
connect(ui.pageSelectWeapon->pWeapons, SIGNAL(weaponsDeleted()), |
718 | 137 |
this, SLOT(UpdateWeapons())); // executed second |
724 | 138 |
connect(ui.pageSelectWeapon->pWeapons, SIGNAL(weaponsDeleted()), |
718 | 139 |
this, SLOT(GoBack())); // executed third |
140 |
||
290 | 141 |
GoToPage(ID_PAGE_MAIN); |
184 | 142 |
} |
143 |
||
1162 | 144 |
void HWForm::onFrontendFullscreen(bool value) |
145 |
{ |
|
1163 | 146 |
if (value) |
147 |
setWindowState(windowState() | Qt::WindowFullScreen); |
|
148 |
else { |
|
149 |
setWindowState(windowState() & !Qt::WindowFullScreen); |
|
150 |
} |
|
1162 | 151 |
} |
152 |
||
1419 | 153 |
void HWForm::CustomizePalettes() |
154 |
{ |
|
155 |
QList<QScrollBar *> allSBars = findChildren<QScrollBar *>(); |
|
156 |
QPalette pal = palette(); |
|
157 |
pal.setColor(QPalette::WindowText, QColor(0xff, 0xcc, 0x00)); |
|
158 |
pal.setColor(QPalette::Button, QColor(0x00, 0x35, 0x1d)); |
|
159 |
pal.setColor(QPalette::Base, QColor(0x00, 0x35, 0x1d)); |
|
160 |
pal.setColor(QPalette::Window, QColor(0x00, 0x00, 0x00)); |
|
161 |
||
162 |
for (int i = 0; i < allSBars.size(); ++i) |
|
163 |
allSBars.at(i)->setPalette(pal); |
|
164 |
} |
|
165 |
||
695 | 166 |
void HWForm::UpdateWeapons() |
167 |
{ |
|
1419 | 168 |
QVector<QComboBox*> combos; |
169 |
combos.push_back(ui.pageOptions->WeaponsName); |
|
170 |
combos.push_back(ui.pageMultiplayer->gameCFG->WeaponsName); |
|
171 |
combos.push_back(ui.pageNetGame->pGameCFG->WeaponsName); |
|
696 | 172 |
|
1517 | 173 |
QStringList names = ui.pageSelectWeapon->pWeapons->getWeaponNames(); |
174 |
||
175 |
for(QVector<QComboBox*>::iterator it = combos.begin(); it != combos.end(); ++it) { |
|
1419 | 176 |
(*it)->clear(); |
1517 | 177 |
|
178 |
for(int i = 0; i < names.size(); ++i) |
|
179 |
(*it)->addItem(names[i], ui.pageSelectWeapon->pWeapons->getWeaponsString(names[i])); |
|
180 |
||
1509 | 181 |
int pos = (*it)->findText("Default"); |
182 |
if (pos != -1) { |
|
1419 | 183 |
(*it)->setCurrentIndex(pos); |
184 |
} |
|
185 |
} |
|
695 | 186 |
} |
187 |
||
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
188 |
void HWForm::UpdateTeamsLists(const QStringList* editable_teams) |
245 | 189 |
{ |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
190 |
QStringList teamslist; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
191 |
if(editable_teams) { |
1509 | 192 |
teamslist =* editable_teams; |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
193 |
} else { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
194 |
teamslist = config->GetTeamsList(); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
195 |
} |
245 | 196 |
|
197 |
if(teamslist.empty()) { |
|
198 |
HWTeam defaultTeam("DefaultTeam"); |
|
199 |
defaultTeam.SaveToFile(); |
|
200 |
teamslist.push_back("DefaultTeam"); |
|
201 |
} |
|
202 |
||
203 |
ui.pageOptions->CBTeamName->clear(); |
|
204 |
ui.pageOptions->CBTeamName->addItems(teamslist); |
|
205 |
} |
|
206 |
||
184 | 207 |
void HWForm::GoToMain() |
208 |
{ |
|
289 | 209 |
GoToPage(ID_PAGE_MAIN); |
184 | 210 |
} |
211 |
||
212 |
void HWForm::GoToSinglePlayer() |
|
213 |
{ |
|
289 | 214 |
GoToPage(ID_PAGE_SINGLEPLAYER); |
184 | 215 |
} |
216 |
||
587 | 217 |
void HWForm::GoToTraining() |
218 |
{ |
|
219 |
GoToPage(ID_PAGE_TRAINING); |
|
220 |
} |
|
221 |
||
184 | 222 |
void HWForm::GoToSetup() |
223 |
{ |
|
289 | 224 |
GoToPage(ID_PAGE_SETUP); |
184 | 225 |
} |
226 |
||
694 | 227 |
void HWForm::GoToSelectNewWeapon() |
228 |
{ |
|
1509 | 229 |
ui.pageSelectWeapon->pWeapons->setWeaponsName(tr("new")); |
694 | 230 |
GoToPage(ID_PAGE_SELECTWEAPON); |
231 |
} |
|
232 |
||
600 | 233 |
void HWForm::GoToSelectWeapon() |
234 |
{ |
|
1509 | 235 |
ui.pageSelectWeapon->pWeapons->setWeaponsName(ui.pageOptions->WeaponsName->currentText()); |
600 | 236 |
GoToPage(ID_PAGE_SELECTWEAPON); |
237 |
} |
|
238 |
||
187 | 239 |
void HWForm::GoToInfo() |
240 |
{ |
|
289 | 241 |
GoToPage(ID_PAGE_INFO); |
187 | 242 |
} |
243 |
||
184 | 244 |
void HWForm::GoToMultiplayer() |
245 |
{ |
|
290 | 246 |
GoToPage(ID_PAGE_MULTIPLAYER); |
184 | 247 |
} |
248 |
||
579 | 249 |
void HWForm::GoToSaves() |
250 |
{ |
|
581 | 251 |
ui.pagePlayDemo->FillFromDir(PagePlayDemo::RT_Save); |
579 | 252 |
|
253 |
GoToPage(ID_PAGE_DEMOS); |
|
254 |
} |
|
255 |
||
184 | 256 |
void HWForm::GoToDemos() |
257 |
{ |
|
581 | 258 |
ui.pagePlayDemo->FillFromDir(PagePlayDemo::RT_Demo); |
579 | 259 |
|
290 | 260 |
GoToPage(ID_PAGE_DEMOS); |
184 | 261 |
} |
262 |
||
263 |
void HWForm::GoToNet() |
|
264 |
{ |
|
646 | 265 |
ui.pageNet->updateServersList(); |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
266 |
|
289 | 267 |
GoToPage(ID_PAGE_NET); |
184 | 268 |
} |
269 |
||
646 | 270 |
void HWForm::GoToNetServer() |
271 |
{ |
|
272 |
GoToPage(ID_PAGE_NETSERVER); |
|
273 |
} |
|
274 |
||
496 | 275 |
void HWForm::OnPageShown(quint8 id, quint8 lastid) |
311 | 276 |
{ |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
277 |
if (id == ID_PAGE_MULTIPLAYER || id == ID_PAGE_NETGAME) { |
1343 | 278 |
QStringList tmNames = config->GetTeamsList(); |
322 | 279 |
TeamSelWidget* curTeamSelWidget; |
1343 | 280 |
|
496 | 281 |
if(id == ID_PAGE_MULTIPLAYER) { |
1343 | 282 |
curTeamSelWidget = ui.pageMultiplayer->teamsSelect; |
496 | 283 |
} else { |
1343 | 284 |
curTeamSelWidget = ui.pageNetGame->pNetTeamsWidget; |
496 | 285 |
} |
1343 | 286 |
|
311 | 287 |
QList<HWTeam> teamsList; |
1343 | 288 |
for(QStringList::iterator it = tmNames.begin(); it != tmNames.end(); it++) { |
311 | 289 |
HWTeam team(*it); |
290 |
team.LoadFromFile(); |
|
291 |
teamsList.push_back(team); |
|
292 |
} |
|
1343 | 293 |
|
294 |
if(lastid == ID_PAGE_SETUP) { // _TEAM |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
295 |
if (editedTeam) { |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
296 |
curTeamSelWidget->addTeam(*editedTeam); |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
297 |
} |
1368
a734715a777a
- Frontend: don't reset playing teams list after end of round
unc0rr
parents:
1364
diff
changeset
|
298 |
} else if(lastid != ID_PAGE_GAMESTATS && lastid != ID_PAGE_INGAME) { |
1627 | 299 |
curTeamSelWidget->resetPlayingTeams(teamsList); |
496 | 300 |
} |
1625 | 301 |
} else |
302 |
if (id == ID_PAGE_GAMESTATS) |
|
303 |
{ |
|
304 |
ui.pageGameStats->renderStats(); |
|
311 | 305 |
} |
1627 | 306 |
|
307 |
if ((lastid == ID_PAGE_GAMESTATS) && !hwnet) |
|
308 |
GoBack(); |
|
311 | 309 |
} |
310 |
||
289 | 311 |
void HWForm::GoToPage(quint8 id) |
312 |
{ |
|
1347 | 313 |
quint8 lastid = ui.Pages->currentIndex(); |
289 | 314 |
PagesStack.push(ui.Pages->currentIndex()); |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
315 |
OnPageShown(id, lastid); |
289 | 316 |
ui.Pages->setCurrentIndex(id); |
317 |
} |
|
318 |
||
319 |
void HWForm::GoBack() |
|
320 |
{ |
|
321 |
quint8 id = PagesStack.isEmpty() ? ID_PAGE_MAIN : PagesStack.pop(); |
|
1347 | 322 |
quint8 curid = ui.Pages->currentIndex(); |
289 | 323 |
ui.Pages->setCurrentIndex(id); |
1347 | 324 |
OnPageShown(id, curid); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
325 |
|
1598 | 326 |
if (id == ID_PAGE_NETSERVER || (id == ID_PAGE_ROOMSLIST && !hwnet)) { |
1359 | 327 |
GoBack(); |
328 |
} |
|
329 |
if (id == ID_PAGE_NET) { |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
330 |
if(hwnet || pnetserver) NetDisconnect(); |
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
331 |
} |
184 | 332 |
} |
333 |
||
530 | 334 |
void HWForm::btnExitPressed() |
335 |
{ |
|
336 |
eggTimer.start(); |
|
337 |
} |
|
338 |
||
339 |
void HWForm::btnExitClicked() |
|
340 |
{ |
|
341 |
if (eggTimer.elapsed() < 3000) |
|
342 |
close(); |
|
343 |
else |
|
344 |
{ |
|
345 |
QPushButton * btn = findChild<QPushButton *>("imageButt"); |
|
346 |
if (btn) |
|
347 |
{ |
|
348 |
btn->setIcon(QIcon(":/res/bonus.png")); |
|
349 |
} |
|
350 |
} |
|
351 |
} |
|
352 |
||
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
353 |
void HWForm::IntermediateSetup() |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
354 |
{ |
1509 | 355 |
quint8 id=ui.Pages->currentIndex(); |
356 |
TeamSelWidget* curTeamSelWidget; |
|
357 |
||
358 |
if(id == ID_PAGE_MULTIPLAYER) { |
|
359 |
curTeamSelWidget = ui.pageMultiplayer->teamsSelect; |
|
360 |
} else { |
|
361 |
curTeamSelWidget = ui.pageNetGame->pNetTeamsWidget; |
|
362 |
} |
|
363 |
||
364 |
QList<HWTeam> teams = curTeamSelWidget->getDontPlayingTeams(); |
|
365 |
QStringList tmnames; |
|
366 |
for(QList<HWTeam>::iterator it = teams.begin(); it != teams.end(); ++it) { |
|
367 |
tmnames += it->TeamName; |
|
368 |
} |
|
369 |
UpdateTeamsLists(&tmnames); // FIXME: still need more work if teamname is updated while configuring |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
370 |
|
1509 | 371 |
GoToPage(ID_PAGE_SETUP); |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
372 |
} |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
373 |
|
184 | 374 |
void HWForm::NewTeam() |
375 |
{ |
|
245 | 376 |
editedTeam = new HWTeam("unnamed"); |
377 |
editedTeam->SetToPage(this); |
|
290 | 378 |
GoToPage(ID_PAGE_SETUP_TEAM); |
184 | 379 |
} |
380 |
||
381 |
void HWForm::EditTeam() |
|
382 |
{ |
|
245 | 383 |
editedTeam = new HWTeam(ui.pageOptions->CBTeamName->currentText()); |
384 |
editedTeam->LoadFromFile(); |
|
385 |
editedTeam->SetToPage(this); |
|
290 | 386 |
GoToPage(ID_PAGE_SETUP_TEAM); |
184 | 387 |
} |
388 |
||
389 |
void HWForm::TeamSave() |
|
390 |
{ |
|
245 | 391 |
editedTeam->GetFromPage(this); |
392 |
editedTeam->SaveToFile(); |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
393 |
delete editedTeam; |
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
394 |
editedTeam=0; |
245 | 395 |
UpdateTeamsLists(); |
290 | 396 |
GoBack(); |
184 | 397 |
} |
398 |
||
399 |
void HWForm::TeamDiscard() |
|
400 |
{ |
|
245 | 401 |
delete editedTeam; |
496 | 402 |
editedTeam=0; |
290 | 403 |
GoBack(); |
184 | 404 |
} |
405 |
||
406 |
void HWForm::SimpleGame() |
|
407 |
{ |
|
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1569
diff
changeset
|
408 |
CreateGame(0, 0, *cDefaultAmmoStore); |
184 | 409 |
game->StartQuick(); |
410 |
} |
|
411 |
||
412 |
void HWForm::PlayDemo() |
|
413 |
{ |
|
414 |
QListWidgetItem * curritem = ui.pagePlayDemo->DemosList->currentItem(); |
|
415 |
if (!curritem) |
|
416 |
{ |
|
417 |
QMessageBox::critical(this, |
|
418 |
tr("Error"), |
|
581 | 419 |
tr("Please, select record from the list above"), |
184 | 420 |
tr("OK")); |
421 |
return ; |
|
422 |
} |
|
696 | 423 |
CreateGame(0, 0, 0); |
580 | 424 |
game->PlayDemo(curritem->data(Qt::UserRole).toString()); |
184 | 425 |
} |
426 |
||
666 | 427 |
void HWForm::NetConnectServer(const QString & host, quint16 port) |
416 | 428 |
{ |
1395 | 429 |
_NetConnect(host, port, ui.pageOptions->editNetNick->text()); |
430 |
} |
|
431 |
||
432 |
void HWForm::NetConnectOfficialServer() |
|
433 |
{ |
|
434 |
NetConnectServer("netserver.hedgewars.org", 46631); |
|
416 | 435 |
} |
436 |
||
314 | 437 |
void HWForm::_NetConnect(const QString & hostName, quint16 port, const QString & nick) |
184 | 438 |
{ |
637
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
439 |
if(hwnet) { |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
440 |
hwnet->Disconnect(); |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
441 |
delete hwnet; |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
442 |
hwnet=0; |
8fa7ed5e13bd
Fix bad behavior when quickly click Connect button more than once
unc0rr
parents:
636
diff
changeset
|
443 |
} |
1311 | 444 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1531
diff
changeset
|
445 |
ui.pageRoomsList->chatWidget->clear(); |
1311 | 446 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
447 |
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
|
448 |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1509
diff
changeset
|
449 |
connect(hwnet, SIGNAL(showMessage(const QString &)), this, SLOT(ShowErrorMessage(const QString &)), Qt::QueuedConnection); |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1509
diff
changeset
|
450 |
|
660 | 451 |
connect(hwnet, SIGNAL(AskForRunGame()), this, SLOT(CreateNetGame())); |
1311 | 452 |
connect(hwnet, SIGNAL(Connected()), this, SLOT(NetConnected())); |
184 | 453 |
connect(hwnet, SIGNAL(EnteredGame()), this, SLOT(NetGameEnter())); |
1600 | 454 |
connect(hwnet, SIGNAL(LeftRoom()), this, SLOT(NetLeftRoom())); |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
455 |
connect(hwnet, SIGNAL(AddNetTeam(const HWTeam&)), this, SLOT(AddNetTeam(const HWTeam&))); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1587
diff
changeset
|
456 |
connect(ui.pageNetGame->BtnBack, SIGNAL(clicked()), hwnet, SLOT(partRoom())); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
457 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
458 |
connect(hwnet, SIGNAL(roomsList(const QStringList&)), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
459 |
ui.pageRoomsList, SLOT(setRoomsList(const QStringList&))); |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1577
diff
changeset
|
460 |
|
1377 | 461 |
connect(hwnet, SIGNAL(serverMessage(const QString&)), |
1587 | 462 |
ui.pageRoomsList->chatWidget, SLOT(onServerMessage(const QString&))); |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1577
diff
changeset
|
463 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
464 |
connect(ui.pageRoomsList, SIGNAL(askForCreateRoom(const QString &)), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
465 |
hwnet, SLOT(CreateRoom(const QString&))); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
466 |
connect(ui.pageRoomsList, SIGNAL(askForJoinRoom(const QString &)), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
467 |
hwnet, SLOT(JoinRoom(const QString&))); |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
468 |
connect(ui.pageRoomsList, SIGNAL(askForCreateRoom(const QString &)), |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
469 |
this, SLOT(NetGameMaster())); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
470 |
connect(ui.pageRoomsList, SIGNAL(askForJoinRoom(const QString &)), |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
471 |
this, SLOT(NetGameSlave())); |
1315 | 472 |
connect(ui.pageRoomsList, SIGNAL(askForRoomList()), |
473 |
hwnet, SLOT(askRoomsList())); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1312
diff
changeset
|
474 |
|
1357 | 475 |
connect(hwnet, SIGNAL(chatStringFromNet(const QString&)), |
1360 | 476 |
ui.pageNetGame->pChatWidget, SLOT(onChatString(const QString&))); |
1405 | 477 |
connect(hwnet, SIGNAL(setReadyStatus(const QString &, bool)), |
478 |
ui.pageNetGame->pChatWidget, SLOT(setReadyStatus(const QString &, bool))); |
|
1364 | 479 |
connect(hwnet, SIGNAL(chatStringFromMe(const QString&)), |
1360 | 480 |
ui.pageNetGame->pChatWidget, SLOT(onChatString(const QString&))); |
461 | 481 |
connect(ui.pageNetGame->pChatWidget, SIGNAL(chatLine(const QString&)), |
482 |
hwnet, SLOT(chatLineToNet(const QString&))); |
|
1577 | 483 |
connect(ui.pageNetGame->BtnGo, SIGNAL(clicked()), hwnet, SLOT(ToggleReady())); |
484 |
||
1391 | 485 |
connect(ui.pageNetGame->pChatWidget, SIGNAL(kick(const QString&)), |
486 |
hwnet, SLOT(kickPlayer(const QString&))); |
|
1577 | 487 |
connect(ui.pageNetGame->pChatWidget, SIGNAL(info(const QString&)), |
488 |
hwnet, SLOT(infoPlayer(const QString&))); |
|
489 |
connect(ui.pageRoomsList->chatWidget, SIGNAL(info(const QString&)), |
|
490 |
hwnet, SLOT(infoPlayer(const QString&))); |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1531
diff
changeset
|
491 |
|
1568 | 492 |
connect(ui.pageRoomsList->chatWidget, SIGNAL(chatLine(const QString&)), |
493 |
hwnet, SLOT(chatLineToLobby(const QString&))); |
|
494 |
connect(hwnet, SIGNAL(chatStringLobby(const QString&)), |
|
495 |
ui.pageRoomsList->chatWidget, SLOT(onChatString(const QString&))); |
|
496 |
connect(hwnet, SIGNAL(chatStringFromMeLobby(const QString&)), |
|
497 |
ui.pageRoomsList->chatWidget, SLOT(onChatString(const QString&))); |
|
498 |
||
471 | 499 |
connect(hwnet, SIGNAL(nickAdded(const QString&)), |
465 | 500 |
ui.pageNetGame->pChatWidget, SLOT(nickAdded(const QString&))); |
471 | 501 |
connect(hwnet, SIGNAL(nickRemoved(const QString&)), |
465 | 502 |
ui.pageNetGame->pChatWidget, SLOT(nickRemoved(const QString&))); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1531
diff
changeset
|
503 |
connect(hwnet, SIGNAL(nickAddedLobby(const QString&)), |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1531
diff
changeset
|
504 |
ui.pageRoomsList->chatWidget, SLOT(nickAdded(const QString&))); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1531
diff
changeset
|
505 |
connect(hwnet, SIGNAL(nickRemovedLobby(const QString&)), |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1531
diff
changeset
|
506 |
ui.pageRoomsList->chatWidget, SLOT(nickRemoved(const QString&))); |
461 | 507 |
|
352 | 508 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(hhogsNumChanged(const HWTeam&)), |
509 |
hwnet, SLOT(onHedgehogsNumChanged(const HWTeam&))); |
|
372 | 510 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(teamColorChanged(const HWTeam&)), |
511 |
hwnet, SLOT(onTeamColorChanged(const HWTeam&))); |
|
327 | 512 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(teamWillPlay(HWTeam)), hwnet, SLOT(AddTeam(HWTeam))); |
373 | 513 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(acceptRequested(HWTeam)), hwnet, SLOT(AddTeam(HWTeam))); |
347 | 514 |
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
|
515 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
516 |
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
|
517 |
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
|
518 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(themeChanged(const QString &)), hwnet, SLOT(onThemeChanged(const QString &))); |
1427 | 519 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(initHealthChanged(int)), hwnet, SLOT(onInitHealthChanged(int))); |
520 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(turnTimeChanged(int)), hwnet, SLOT(onTurnTimeChanged(int))); |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
521 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(fortsModeChanged(bool)), hwnet, SLOT(onFortsModeChanged(bool))); |
1427 | 522 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(teamsDivideChanged(bool)), hwnet, SLOT(onTeamsDivideChanged(bool))); |
1530 | 523 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(solidChanged(bool)), hwnet, SLOT(onSolidChanged(bool))); |
1531 | 524 |
connect(ui.pageNetGame->pGameCFG, SIGNAL(newWeaponScheme(const QString &, const QString &)), |
525 |
hwnet, SLOT(onWeaponsNameChanged(const QString &, const QString &))); |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
526 |
|
383 | 527 |
connect(hwnet, SIGNAL(Disconnected()), this, SLOT(ForcedDisconnect())); |
330 | 528 |
connect(hwnet, SIGNAL(seedChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setSeed(const QString &))); |
529 |
connect(hwnet, SIGNAL(mapChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setMap(const QString &))); |
|
530 |
connect(hwnet, SIGNAL(themeChanged(const QString &)), ui.pageNetGame->pGameCFG, SLOT(setTheme(const QString &))); |
|
1427 | 531 |
connect(hwnet, SIGNAL(initHealthChanged(int)), ui.pageNetGame->pGameCFG, SLOT(setInitHealth(int))); |
532 |
connect(hwnet, SIGNAL(turnTimeChanged(int)), ui.pageNetGame->pGameCFG, SLOT(setTurnTime(int))); |
|
330 | 533 |
connect(hwnet, SIGNAL(fortsModeChanged(bool)), ui.pageNetGame->pGameCFG, SLOT(setFortsMode(bool))); |
1427 | 534 |
connect(hwnet, SIGNAL(teamsDivideChanged(bool)), ui.pageNetGame->pGameCFG, SLOT(setTeamsDivide(bool))); |
1530 | 535 |
connect(hwnet, SIGNAL(solidChanged(bool)), ui.pageNetGame->pGameCFG, SLOT(setSolid(bool))); |
425 | 536 |
connect(hwnet, SIGNAL(hhnumChanged(const HWTeam&)), |
352 | 537 |
ui.pageNetGame->pNetTeamsWidget, SLOT(changeHHNum(const HWTeam&))); |
425 | 538 |
connect(hwnet, SIGNAL(teamColorChanged(const HWTeam&)), |
372 | 539 |
ui.pageNetGame->pNetTeamsWidget, SLOT(changeTeamColor(const HWTeam&))); |
703 | 540 |
connect(hwnet, SIGNAL(ammoChanged(const QString&, const QString&)), ui.pageNetGame->pGameCFG, SLOT(setNetAmmo(const QString&, const QString&))); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
541 |
|
314 | 542 |
hwnet->Connect(hostName, port, nick); |
184 | 543 |
} |
544 |
||
314 | 545 |
void HWForm::NetConnect() |
546 |
{ |
|
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
547 |
HWHostPortDialog * hpd = new HWHostPortDialog(this); |
654 | 548 |
hpd->leHost->setText(*netHost); |
549 |
hpd->sbPort->setValue(netPort); |
|
653
4f44fc06ca45
Class to ask host/port to connect to ('Specify' button on PageNet)
unc0rr
parents:
647
diff
changeset
|
550 |
|
654 | 551 |
if (hpd->exec() == QDialog::Accepted) |
552 |
{ |
|
553 |
config->SaveOptions(); |
|
554 |
delete netHost; |
|
555 |
netHost = new QString(hpd->leHost->text()); |
|
556 |
netPort = hpd->sbPort->value(); |
|
1418 | 557 |
NetConnectServer(*netHost, netPort); |
654 | 558 |
} |
314 | 559 |
} |
560 |
||
561 |
void HWForm::NetStartServer() |
|
562 |
{ |
|
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
|
563 |
config->SaveOptions(); |
636 | 564 |
|
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
|
565 |
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
|
566 |
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
|
567 |
{ |
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
|
568 |
QMessageBox::critical(0, tr("Error"), |
1509 | 569 |
tr("Unable to start the server")); |
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
|
570 |
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
|
571 |
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
|
572 |
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
|
573 |
} |
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
|
574 |
|
1418 | 575 |
QTimer::singleShot(250, this, SLOT(AsyncNetServerStart())); |
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
|
576 |
|
1418 | 577 |
pRegisterServer = new HWNetUdpServer(0, |
578 |
ui.pageNetServer->leServerDescr->text(), |
|
579 |
ui.pageNetServer->sbPort->value()); |
|
580 |
} |
|
581 |
||
582 |
void HWForm::AsyncNetServerStart() |
|
583 |
{ |
|
584 |
NetConnectServer("localhost", pnetserver->getRunningPort()); |
|
314 | 585 |
} |
586 |
||
184 | 587 |
void HWForm::NetDisconnect() |
588 |
{ |
|
1509 | 589 |
if(hwnet) { |
590 |
hwnet->Disconnect(); |
|
591 |
delete hwnet; |
|
592 |
hwnet = 0; |
|
593 |
} |
|
594 |
if(pnetserver) { |
|
595 |
if (pRegisterServer) |
|
596 |
{ |
|
597 |
pRegisterServer->unregister(); |
|
598 |
pRegisterServer = 0; |
|
599 |
} |
|
659 | 600 |
|
1509 | 601 |
pnetserver->StopServer(); |
602 |
delete pnetserver; |
|
603 |
pnetserver = 0; |
|
604 |
} |
|
184 | 605 |
} |
606 |
||
383 | 607 |
void HWForm::ForcedDisconnect() |
608 |
{ |
|
1418 | 609 |
if(pnetserver) return; // we have server - let it care of all things |
610 |
if (hwnet) { |
|
611 |
hwnet->deleteLater(); |
|
612 |
hwnet = 0; |
|
613 |
QMessageBox::warning(this, QMessageBox::tr("Network"), |
|
614 |
QMessageBox::tr("Connection to server is lost")); |
|
615 |
} |
|
616 |
GoBack(); |
|
383 | 617 |
} |
618 |
||
1311 | 619 |
void HWForm::NetConnected() |
620 |
{ |
|
621 |
GoToPage(ID_PAGE_ROOMSLIST); |
|
622 |
} |
|
623 |
||
184 | 624 |
void HWForm::NetGameEnter() |
625 |
{ |
|
1593 | 626 |
ui.pageNetGame->pChatWidget->clear(); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1347
diff
changeset
|
627 |
GoToPage(ID_PAGE_NETGAME); |
184 | 628 |
} |
629 |
||
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
630 |
void HWForm::AddNetTeam(const HWTeam& team) |
184 | 631 |
{ |
1418 | 632 |
ui.pageNetGame->pNetTeamsWidget->addTeam(team); |
184 | 633 |
} |
634 |
||
635 |
void HWForm::StartMPGame() |
|
636 |
{ |
|
1531 | 637 |
QString ammo; |
638 |
ammo = ui.pageMultiplayer->gameCFG->WeaponsName->itemData( |
|
639 |
ui.pageMultiplayer->gameCFG->WeaponsName->currentIndex() |
|
640 |
).toString(); |
|
696 | 641 |
|
642 |
CreateGame(ui.pageMultiplayer->gameCFG, ui.pageMultiplayer->teamsSelect, ammo); |
|
306 | 643 |
|
184 | 644 |
game->StartLocal(); |
645 |
} |
|
306 | 646 |
|
647 |
void HWForm::GameStateChanged(GameState gameState) |
|
648 |
{ |
|
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
649 |
switch(gameState) { |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
650 |
case gsStarted: { |
1268
34c3795ecb63
Fix music starting to play after the round even if it was turned off
unc0rr
parents:
1235
diff
changeset
|
651 |
Music(false); |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1165
diff
changeset
|
652 |
GoToPage(ID_PAGE_INGAME); |
1622 | 653 |
ui.pageGameStats->clear(); |
661
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
654 |
if (pRegisterServer) |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
655 |
{ |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
656 |
pRegisterServer->unregister(); |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
657 |
pRegisterServer = 0; |
0523b15353a2
Unregister server in servers list when the game is started
unc0rr
parents:
660
diff
changeset
|
658 |
} |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
659 |
break; |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
660 |
} |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
661 |
case gsFinished: { |
686 | 662 |
GoBack(); |
1268
34c3795ecb63
Fix music starting to play after the round even if it was turned off
unc0rr
parents:
1235
diff
changeset
|
663 |
Music(ui.pageOptions->CBEnableMusic->isChecked()); |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
664 |
GoToPage(ID_PAGE_GAMESTATS); |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1343
diff
changeset
|
665 |
if (hwnet) hwnet->gameFinished(); |
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
666 |
break; |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
323
diff
changeset
|
667 |
} |
686 | 668 |
default: { |
669 |
quint8 id = ui.Pages->currentIndex(); |
|
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
670 |
if (id == ID_PAGE_INGAME) { |
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
671 |
GoBack(); |
1268
34c3795ecb63
Fix music starting to play after the round even if it was turned off
unc0rr
parents:
1235
diff
changeset
|
672 |
Music(ui.pageOptions->CBEnableMusic->isChecked()); |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1343
diff
changeset
|
673 |
if (hwnet) hwnet->gameFinished(); |
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
674 |
} |
686 | 675 |
}; |
307 | 676 |
} |
677 |
} |
|
678 |
||
696 | 679 |
void HWForm::CreateGame(GameCFGWidget * gamecfg, TeamSelWidget* pTeamSelWidget, QString ammo) |
306 | 680 |
{ |
696 | 681 |
game = new HWGame(config, gamecfg, ammo, pTeamSelWidget); |
306 | 682 |
connect(game, SIGNAL(GameStateChanged(GameState)), this, SLOT(GameStateChanged(GameState))); |
1622 | 683 |
connect(game, SIGNAL(GameStats(char, const QString &)), ui.pageGameStats, SLOT(GameStats(char, const QString &))); |
425 | 684 |
connect(game, SIGNAL(ErrorMessage(const QString &)), this, SLOT(ShowErrorMessage(const QString &)), Qt::QueuedConnection); |
533 | 685 |
connect(game, SIGNAL(HaveRecord(bool, const QByteArray &)), this, SLOT(GetRecord(bool, const QByteArray &))); |
306 | 686 |
} |
425 | 687 |
|
688 |
void HWForm::ShowErrorMessage(const QString & msg) |
|
689 |
{ |
|
690 |
QMessageBox::warning(this, |
|
691 |
"Hedgewars", |
|
692 |
msg); |
|
693 |
} |
|
533 | 694 |
|
695 |
void HWForm::GetRecord(bool isDemo, const QByteArray & record) |
|
696 |
{ |
|
697 |
QString filename; |
|
698 |
QByteArray demo = record; |
|
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1427
diff
changeset
|
699 |
QString recordFileName = |
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1427
diff
changeset
|
700 |
config->appendDateTimeToRecordName() ? |
1490 | 701 |
QDateTime::currentDateTime().toString(Qt::ISODate) : |
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1427
diff
changeset
|
702 |
"LastRound"; |
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1427
diff
changeset
|
703 |
|
533 | 704 |
if (isDemo) |
705 |
{ |
|
706 |
demo.replace(QByteArray("\x02TL"), QByteArray("\x02TD")); |
|
707 |
demo.replace(QByteArray("\x02TN"), QByteArray("\x02TD")); |
|
989 | 708 |
demo.replace(QByteArray("\x02TS"), QByteArray("\x02TD")); |
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1427
diff
changeset
|
709 |
filename = cfgdir->absolutePath() + "/Demos/" + recordFileName + ".hwd_" + *cProtoVer; |
533 | 710 |
} else |
711 |
{ |
|
712 |
demo.replace(QByteArray("\x02TL"), QByteArray("\x02TS")); |
|
713 |
demo.replace(QByteArray("\x02TN"), QByteArray("\x02TS")); |
|
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1427
diff
changeset
|
714 |
filename = cfgdir->absolutePath() + "/Saves/" + recordFileName + ".hws_" + *cProtoVer; |
533 | 715 |
} |
716 |
||
717 |
||
718 |
QFile demofile(filename); |
|
719 |
if (!demofile.open(QIODevice::WriteOnly)) |
|
720 |
{ |
|
721 |
ShowErrorMessage(tr("Cannot save record to file %1").arg(filename)); |
|
722 |
return ; |
|
723 |
} |
|
724 |
demofile.write(demo.constData(), demo.size()); |
|
725 |
demofile.close(); |
|
726 |
} |
|
587 | 727 |
|
728 |
void HWForm::StartTraining() |
|
729 |
{ |
|
696 | 730 |
CreateGame(0, 0, 0); |
587 | 731 |
|
732 |
game->StartTraining(); |
|
733 |
} |
|
660 | 734 |
|
735 |
void HWForm::CreateNetGame() |
|
736 |
{ |
|
697 | 737 |
QString ammo; |
1517 | 738 |
ammo = ui.pageNetGame->pGameCFG->WeaponsName->itemData( |
739 |
ui.pageNetGame->pGameCFG->WeaponsName->currentIndex() |
|
740 |
).toString(); |
|
741 |
||
696 | 742 |
CreateGame(ui.pageNetGame->pGameCFG, ui.pageNetGame->pNetTeamsWidget, ammo); |
660 | 743 |
|
744 |
connect(game, SIGNAL(SendNet(const QByteArray &)), hwnet, SLOT(SendNet(const QByteArray &))); |
|
1356 | 745 |
connect(game, SIGNAL(SendChat(const QString &)), hwnet, SLOT(chatLineToNet(const QString &))); |
660 | 746 |
connect(hwnet, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &))); |
1356 | 747 |
connect(hwnet, SIGNAL(chatStringFromNet(const QString &)), game, SLOT(FromNetChat(const QString &))); |
660 | 748 |
|
749 |
game->StartNet(); |
|
750 |
} |
|
674 | 751 |
|
752 |
void HWForm::closeEvent(QCloseEvent *event) |
|
753 |
{ |
|
754 |
config->SaveOptions(); |
|
755 |
event->accept(); |
|
756 |
} |
|
1235 | 757 |
|
758 |
void HWForm::Music(bool checked) |
|
759 |
{ |
|
760 |
if (checked) |
|
761 |
sdli.StartMusic(); |
|
762 |
else |
|
763 |
sdli.StopMusic(); |
|
764 |
} |
|
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
765 |
|
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
766 |
void HWForm::NetGameMaster() |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
767 |
{ |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
768 |
ui.pageNetGame->BtnMaster->setVisible(true); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
769 |
ui.pageNetGame->restrictJoins->setChecked(false); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
770 |
ui.pageNetGame->restrictTeamAdds->setChecked(false); |
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1409
diff
changeset
|
771 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1409
diff
changeset
|
772 |
if (hwnet) |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1409
diff
changeset
|
773 |
{ |
1413 | 774 |
connect(ui.pageNetGame->startGame, SIGNAL(triggered()), hwnet, SLOT(startGame())); |
775 |
connect(ui.pageNetGame->restrictJoins, SIGNAL(triggered()), hwnet, SLOT(toggleRestrictJoins())); |
|
776 |
connect(ui.pageNetGame->restrictTeamAdds, SIGNAL(triggered()), hwnet, SLOT(toggleRestrictTeamAdds())); |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1409
diff
changeset
|
777 |
} |
1409
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
778 |
} |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
779 |
|
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
780 |
void HWForm::NetGameSlave() |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
781 |
{ |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
782 |
ui.pageNetGame->BtnMaster->setVisible(false); |
d1cbe4a57ebf
Add button for controlling room options (no usefull yet)
unc0rr
parents:
1405
diff
changeset
|
783 |
} |
1600 | 784 |
|
785 |
void HWForm::NetLeftRoom() |
|
786 |
{ |
|
787 |
if (ui.Pages->currentIndex() == ID_PAGE_NETGAME) |
|
788 |
GoBack(); |
|
789 |
else |
|
790 |
qWarning("Left room while not in room"); |
|
791 |
} |