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