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