author | displacer |
Sat, 13 Jan 2007 22:12:30 +0000 | |
changeset 323 | ea947f2c3d2f |
parent 322 | e7175ae57945 |
child 324 | f4c109c82a0c |
permissions | -rw-r--r-- |
184 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com> |
|
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 <QtGui> |
|
20 |
#include <QStringList> |
|
21 |
#include <QProcess> |
|
22 |
#include <QDir> |
|
23 |
#include <QPixmap> |
|
24 |
#include <QRegExp> |
|
25 |
#include <QIcon> |
|
26 |
#include <QFile> |
|
27 |
#include <QTextStream> |
|
28 |
||
29 |
#include "hwform.h" |
|
30 |
#include "game.h" |
|
31 |
#include "team.h" |
|
32 |
#include "netclient.h" |
|
33 |
#include "teamselect.h" |
|
34 |
#include "gameuiconfig.h" |
|
35 |
#include "pages.h" |
|
36 |
#include "hwconsts.h" |
|
314 | 37 |
#include "newnetclient.h" |
184 | 38 |
|
39 |
HWForm::HWForm(QWidget *parent) |
|
314 | 40 |
: QMainWindow(parent), pnetserver(0) |
184 | 41 |
{ |
42 |
ui.setupUi(this); |
|
43 |
||
301 | 44 |
config = new GameUIConfig(this, cfgdir->absolutePath() + "/hedgewars.ini"); |
184 | 45 |
|
245 | 46 |
UpdateTeamsLists(); |
184 | 47 |
|
48 |
connect(ui.pageMain->BtnSinglePlayer, SIGNAL(clicked()), this, SLOT(GoToSinglePlayer())); |
|
49 |
connect(ui.pageMain->BtnSetup, SIGNAL(clicked()), this, SLOT(GoToSetup())); |
|
50 |
connect(ui.pageMain->BtnMultiplayer, SIGNAL(clicked()), this, SLOT(GoToMultiplayer())); |
|
51 |
connect(ui.pageMain->BtnDemos, SIGNAL(clicked()), this, SLOT(GoToDemos())); |
|
52 |
connect(ui.pageMain->BtnNet, SIGNAL(clicked()), this, SLOT(GoToNet())); |
|
187 | 53 |
connect(ui.pageMain->BtnInfo, SIGNAL(clicked()), this, SLOT(GoToInfo())); |
184 | 54 |
connect(ui.pageMain->BtnExit, SIGNAL(clicked()), this, SLOT(close())); |
55 |
||
289 | 56 |
connect(ui.pageLocalGame->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 57 |
connect(ui.pageLocalGame->BtnSimpleGame, SIGNAL(clicked()), this, SLOT(SimpleGame())); |
58 |
||
59 |
connect(ui.pageEditTeam->BtnTeamSave, SIGNAL(clicked()), this, SLOT(TeamSave())); |
|
60 |
connect(ui.pageEditTeam->BtnTeamDiscard, SIGNAL(clicked()), this, SLOT(TeamDiscard())); |
|
61 |
||
289 | 62 |
connect(ui.pageMultiplayer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 63 |
connect(ui.pageMultiplayer->BtnStartMPGame, SIGNAL(clicked()), this, SLOT(StartMPGame())); |
64 |
||
289 | 65 |
connect(ui.pagePlayDemo->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 66 |
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
|
67 |
connect(ui.pagePlayDemo->DemosList, SIGNAL(doubleClicked (const QModelIndex &)), this, SLOT(PlayDemo())); |
184 | 68 |
|
289 | 69 |
connect(ui.pageOptions->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 70 |
connect(ui.pageOptions->BtnNewTeam, SIGNAL(clicked()), this, SLOT(NewTeam())); |
71 |
connect(ui.pageOptions->BtnEditTeam, SIGNAL(clicked()), this, SLOT(EditTeam())); |
|
72 |
connect(ui.pageOptions->BtnSaveOptions, SIGNAL(clicked()), config, SLOT(SaveOptions())); |
|
312 | 73 |
connect(ui.pageOptions->BtnSaveOptions, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 74 |
|
289 | 75 |
connect(ui.pageNet->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
184 | 76 |
connect(ui.pageNet->BtnNetConnect, SIGNAL(clicked()), this, SLOT(NetConnect())); |
314 | 77 |
connect(ui.pageNet->BtnNetSvrStart, SIGNAL(clicked()), this, SLOT(NetStartServer())); |
184 | 78 |
|
289 | 79 |
connect(ui.pageNetGame->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
322 | 80 |
connect(ui.pageNetGame->pNetTeamsWidget, SIGNAL(teamWillPlay(HWTeam)), this, SLOT(NetAddTeam(HWTeam))); |
184 | 81 |
connect(ui.pageNetGame->BtnGo, SIGNAL(clicked()), this, SLOT(NetStartGame())); |
82 |
||
83 |
connect(ui.pageNetChat->BtnDisconnect, SIGNAL(clicked()), this, SLOT(NetDisconnect())); |
|
84 |
connect(ui.pageNetChat->BtnJoin, SIGNAL(clicked()), this, SLOT(NetJoin())); |
|
85 |
connect(ui.pageNetChat->BtnCreate, SIGNAL(clicked()), this, SLOT(NetCreate())); |
|
86 |
||
289 | 87 |
connect(ui.pageInfo->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
187 | 88 |
|
306 | 89 |
connect(ui.pageGameStats->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack())); |
90 |
||
311 | 91 |
connect(ui.pageMultiplayer->teamsSelect, SIGNAL(NewTeam()), this, SLOT(NewTeam())); |
92 |
||
290 | 93 |
GoToPage(ID_PAGE_MAIN); |
184 | 94 |
} |
95 |
||
245 | 96 |
void HWForm::UpdateTeamsLists() |
97 |
{ |
|
98 |
QStringList teamslist = config->GetTeamsList(); |
|
99 |
||
100 |
if(teamslist.empty()) { |
|
101 |
HWTeam defaultTeam("DefaultTeam"); |
|
102 |
defaultTeam.SaveToFile(); |
|
103 |
teamslist.push_back("DefaultTeam"); |
|
104 |
} |
|
105 |
||
106 |
ui.pageOptions->CBTeamName->clear(); |
|
107 |
ui.pageOptions->CBTeamName->addItems(teamslist); |
|
108 |
} |
|
109 |
||
184 | 110 |
void HWForm::GoToMain() |
111 |
{ |
|
289 | 112 |
GoToPage(ID_PAGE_MAIN); |
184 | 113 |
} |
114 |
||
115 |
void HWForm::GoToSinglePlayer() |
|
116 |
{ |
|
289 | 117 |
GoToPage(ID_PAGE_SINGLEPLAYER); |
184 | 118 |
} |
119 |
||
120 |
void HWForm::GoToSetup() |
|
121 |
{ |
|
289 | 122 |
GoToPage(ID_PAGE_SETUP); |
184 | 123 |
} |
124 |
||
187 | 125 |
void HWForm::GoToInfo() |
126 |
{ |
|
289 | 127 |
GoToPage(ID_PAGE_INFO); |
187 | 128 |
} |
129 |
||
184 | 130 |
void HWForm::GoToMultiplayer() |
131 |
{ |
|
290 | 132 |
GoToPage(ID_PAGE_MULTIPLAYER); |
184 | 133 |
} |
134 |
||
135 |
void HWForm::GoToDemos() |
|
136 |
{ |
|
137 |
QDir tmpdir; |
|
138 |
tmpdir.cd(cfgdir->absolutePath()); |
|
139 |
tmpdir.cd("Demos"); |
|
140 |
tmpdir.setFilter(QDir::Files); |
|
141 |
ui.pagePlayDemo->DemosList->clear(); |
|
271 | 142 |
ui.pagePlayDemo->DemosList->addItems(tmpdir.entryList(QStringList("*.hwd_" + cProtoVer)) |
143 |
.replaceInStrings(QRegExp("^(.*).hwd_" + cProtoVer), "\\1")); |
|
290 | 144 |
GoToPage(ID_PAGE_DEMOS); |
184 | 145 |
} |
146 |
||
147 |
void HWForm::GoToNet() |
|
148 |
{ |
|
289 | 149 |
GoToPage(ID_PAGE_NET); |
184 | 150 |
} |
151 |
||
152 |
void HWForm::GoToNetChat() |
|
153 |
{ |
|
289 | 154 |
GoToPage(ID_PAGE_NETCHAT); |
155 |
} |
|
156 |
||
311 | 157 |
void HWForm::OnPageShown(quint8 id) |
158 |
{ |
|
322 | 159 |
if (id == ID_PAGE_MULTIPLAYER || id == ID_PAGE_NETCFG) { |
311 | 160 |
QStringList tmNames=config->GetTeamsList(); |
322 | 161 |
TeamSelWidget* curTeamSelWidget; |
162 |
id == ID_PAGE_MULTIPLAYER ? curTeamSelWidget=ui.pageMultiplayer->teamsSelect : |
|
163 |
curTeamSelWidget=ui.pageNetGame->pNetTeamsWidget; |
|
311 | 164 |
QList<HWTeam> teamsList; |
165 |
for(QStringList::iterator it=tmNames.begin(); it!=tmNames.end(); it++) { |
|
166 |
HWTeam team(*it); |
|
167 |
team.LoadFromFile(); |
|
168 |
teamsList.push_back(team); |
|
169 |
} |
|
322 | 170 |
curTeamSelWidget->resetPlayingTeams(teamsList); |
311 | 171 |
} |
172 |
} |
|
173 |
||
289 | 174 |
void HWForm::GoToPage(quint8 id) |
175 |
{ |
|
176 |
PagesStack.push(ui.Pages->currentIndex()); |
|
311 | 177 |
OnPageShown(id); |
289 | 178 |
ui.Pages->setCurrentIndex(id); |
179 |
} |
|
180 |
||
181 |
void HWForm::GoBack() |
|
182 |
{ |
|
183 |
quint8 id = PagesStack.isEmpty() ? ID_PAGE_MAIN : PagesStack.pop(); |
|
311 | 184 |
OnPageShown(id); |
289 | 185 |
ui.Pages->setCurrentIndex(id); |
184 | 186 |
} |
187 |
||
188 |
void HWForm::NewTeam() |
|
189 |
{ |
|
245 | 190 |
editedTeam = new HWTeam("unnamed"); |
191 |
editedTeam->SetToPage(this); |
|
290 | 192 |
GoToPage(ID_PAGE_SETUP_TEAM); |
184 | 193 |
} |
194 |
||
195 |
void HWForm::EditTeam() |
|
196 |
{ |
|
245 | 197 |
editedTeam = new HWTeam(ui.pageOptions->CBTeamName->currentText()); |
198 |
editedTeam->LoadFromFile(); |
|
199 |
editedTeam->SetToPage(this); |
|
290 | 200 |
GoToPage(ID_PAGE_SETUP_TEAM); |
184 | 201 |
} |
202 |
||
203 |
void HWForm::TeamSave() |
|
204 |
{ |
|
245 | 205 |
editedTeam->GetFromPage(this); |
206 |
editedTeam->SaveToFile(); |
|
207 |
delete editedTeam; |
|
208 |
UpdateTeamsLists(); |
|
290 | 209 |
GoBack(); |
184 | 210 |
} |
211 |
||
212 |
void HWForm::TeamDiscard() |
|
213 |
{ |
|
245 | 214 |
delete editedTeam; |
290 | 215 |
GoBack(); |
184 | 216 |
} |
217 |
||
218 |
void HWForm::SimpleGame() |
|
219 |
{ |
|
306 | 220 |
CreateGame(ui.pageLocalGame->gameCFG); |
184 | 221 |
game->StartQuick(); |
222 |
} |
|
223 |
||
224 |
void HWForm::PlayDemo() |
|
225 |
{ |
|
226 |
QListWidgetItem * curritem = ui.pagePlayDemo->DemosList->currentItem(); |
|
227 |
if (!curritem) |
|
228 |
{ |
|
229 |
QMessageBox::critical(this, |
|
230 |
tr("Error"), |
|
231 |
tr("Please, select demo from the list above"), |
|
232 |
tr("OK")); |
|
233 |
return ; |
|
234 |
} |
|
306 | 235 |
CreateGame(0); |
271 | 236 |
game->PlayDemo(cfgdir->absolutePath() + "/Demos/" + curritem->text() + ".hwd_" + cProtoVer); |
184 | 237 |
} |
238 |
||
314 | 239 |
void HWForm::_NetConnect(const QString & hostName, quint16 port, const QString & nick) |
184 | 240 |
{ |
314 | 241 |
hwnet = new HWNewNet(config); |
184 | 242 |
connect(hwnet, SIGNAL(AddGame(const QString &)), this, SLOT(AddGame(const QString &))); |
243 |
connect(hwnet, SIGNAL(EnteredGame()), this, SLOT(NetGameEnter())); |
|
244 |
connect(hwnet, SIGNAL(ChangeInTeams(const QStringList &)), this, SLOT(ChangeInNetTeams(const QStringList &))); |
|
314 | 245 |
hwnet->Connect(hostName, port, nick); |
184 | 246 |
config->SaveOptions(); |
247 |
} |
|
248 |
||
314 | 249 |
void HWForm::NetConnect() |
250 |
{ |
|
251 |
_NetConnect(ui.pageNet->editIP->text(), 46631, ui.pageNet->editNetNick->text()); |
|
252 |
} |
|
253 |
||
254 |
void HWForm::NetStartServer() |
|
255 |
{ |
|
256 |
pnetserver = new HWNetServer; |
|
257 |
pnetserver->StartServer(); |
|
258 |
_NetConnect(pnetserver->getRunningHostName(), pnetserver->getRunningPort(), ui.pageNet->editNetNick->text()); |
|
259 |
} |
|
260 |
||
184 | 261 |
void HWForm::NetDisconnect() |
262 |
{ |
|
314 | 263 |
hwnet->Disconnect(); |
264 |
GoBack(); |
|
265 |
delete hwnet; |
|
266 |
hwnet=0; |
|
267 |
if(pnetserver) { |
|
268 |
pnetserver->StopServer(); |
|
269 |
delete pnetserver; |
|
270 |
pnetserver=0; |
|
271 |
} |
|
184 | 272 |
} |
273 |
||
274 |
void HWForm::AddGame(const QString & chan) |
|
275 |
{ |
|
276 |
ui.pageNetChat->ChannelsList->addItem(chan); |
|
277 |
} |
|
278 |
||
279 |
void HWForm::NetGameEnter() |
|
280 |
{ |
|
290 | 281 |
GoToPage(ID_PAGE_NETCFG); |
184 | 282 |
} |
283 |
||
284 |
void HWForm::NetJoin() |
|
285 |
{ |
|
286 |
hwnet->JoinGame("#hw"); |
|
287 |
} |
|
288 |
||
289 |
void HWForm::NetCreate() |
|
290 |
{ |
|
291 |
hwnet->JoinGame("#hw"); |
|
292 |
} |
|
293 |
||
322 | 294 |
void HWForm::NetAddTeam(HWTeam team) |
184 | 295 |
{ |
322 | 296 |
hwnet->AddTeam(team); |
184 | 297 |
} |
298 |
||
299 |
void HWForm::NetStartGame() |
|
300 |
{ |
|
301 |
hwnet->StartGame(); |
|
302 |
} |
|
303 |
||
304 |
void HWForm::ChangeInNetTeams(const QStringList & teams) |
|
305 |
{ |
|
322 | 306 |
QStringList addedTeams=teams; |
307 |
list<HWTeam> lstPlaying=ui.pageNetGame->pNetTeamsWidget->getPlayingTeams(); |
|
308 |
for(list<HWTeam>::iterator it=lstPlaying.begin(); it!=lstPlaying.end(); ++it) { |
|
309 |
QString nm=it->TeamName; |
|
310 |
QStringList::iterator itt=std::find(addedTeams.begin(), addedTeams.end(), nm); |
|
311 |
if(itt!=addedTeams.end()) addedTeams.erase(itt); |
|
312 |
} |
|
313 |
for(QStringList::iterator it=addedTeams.begin(); it!=addedTeams.end(); ++it) { |
|
314 |
ui.pageNetGame->pNetTeamsWidget->addTeam(*it, true); |
|
315 |
} |
|
323 | 316 |
|
317 |
/* |
|
318 |
QStringList lstQSPlaying; |
|
319 |
std::for_each(lstPlaying.begin(), lstPlaying.end(), lstQSPlaying.push_back); |
|
320 |
QStringList removedTeams=teams; |
|
321 |
for(QStringList::iterator it=teams.begin() |
|
322 |
list<HWTeam>::iterator removedItem=std::find(addedTeams.begin(), addedTeams.end(), nm); |
|
323 |
*/ |
|
184 | 324 |
} |
325 |
||
326 |
void HWForm::StartMPGame() |
|
327 |
{ |
|
306 | 328 |
CreateGame(ui.pageMultiplayer->gameCFG); |
329 |
||
184 | 330 |
list<HWTeam> teamslist=ui.pageMultiplayer->teamsSelect->getPlayingTeams(); |
331 |
for (list<HWTeam>::const_iterator it = teamslist.begin(); it != teamslist.end(); ++it ) { |
|
207 | 332 |
HWTeamTempParams params=ui.pageMultiplayer->teamsSelect->getTeamParams(it->TeamName); |
213 | 333 |
game->AddTeam(it->TeamName, params); |
184 | 334 |
} |
335 |
game->StartLocal(); |
|
336 |
} |
|
306 | 337 |
|
338 |
void HWForm::GameStateChanged(GameState gameState) |
|
339 |
{ |
|
340 |
if (gameState == gsStarted) |
|
307 | 341 |
{ |
306 | 342 |
GoToPage(ID_PAGE_GAMESTATS); |
307 | 343 |
ui.pageGameStats->labelGameStats->setText(""); |
344 |
} |
|
345 |
} |
|
346 |
||
347 |
void HWForm::AddStatText(const QString & msg) |
|
348 |
{ |
|
349 |
ui.pageGameStats->labelGameStats->setText( |
|
350 |
ui.pageGameStats->labelGameStats->text() + msg); |
|
306 | 351 |
} |
352 |
||
353 |
void HWForm::GameStats(char type, const QString & info) |
|
354 |
{ |
|
355 |
switch(type) { |
|
307 | 356 |
case 'r' : { |
357 |
AddStatText(QString("<h1 align=\"center\">%1</h1>").arg(info)); |
|
358 |
break; |
|
359 |
} |
|
360 |
case 'D' : { |
|
361 |
int i = info.indexOf(' '); |
|
362 |
QString message = QLabel::tr("<p>The best shot award was won by <b>%1</b> with <b>%2</b> pts.</p>") |
|
363 |
.arg(info.mid(i + 1), info.left(i)); |
|
364 |
AddStatText(message); |
|
365 |
break; |
|
366 |
} |
|
367 |
case 'K' : { |
|
368 |
QString message = QLabel::tr("<p>A total of <b>%1</b> Hedgehog(s) were killed during this round.</p>").arg(info); |
|
369 |
AddStatText(message); |
|
370 |
break; |
|
371 |
} |
|
306 | 372 |
} |
373 |
} |
|
374 |
||
375 |
void HWForm::CreateGame(GameCFGWidget * gamecfg) |
|
376 |
{ |
|
377 |
game = new HWGame(config, gamecfg); |
|
378 |
connect(game, SIGNAL(GameStateChanged(GameState)), this, SLOT(GameStateChanged(GameState))); |
|
379 |
connect(game, SIGNAL(GameStats(char, const QString &)), this, SLOT(GameStats(char, const QString &))); |
|
380 |
} |