author | unc0rr |
Thu, 05 Jan 2006 15:54:22 +0000 | |
changeset 37 | 2b7f2a43b999 |
parent 36 | a803a00a3272 |
child 41 | 5d7a505875cd |
permissions | -rw-r--r-- |
20 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2005 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*/ |
|
33 |
||
34 |
#include <QtGui> |
|
35 |
#include <QStringList> |
|
36 |
#include <QProcess> |
|
37 |
#include <QDir> |
|
38 |
#include <QPixmap> |
|
39 |
#include <QRegExp> |
|
40 |
#include <QIcon> |
|
41 |
#include <QFile> |
|
42 |
#include <QTextStream> |
|
43 |
||
44 |
#include "hwform.h" |
|
45 |
#include "sdlkeys.h" |
|
46 |
#include "hwconsts.h" |
|
25 | 47 |
//#include "gamecmds.h" |
20 | 48 |
|
49 |
HWForm::HWForm(QWidget *parent) |
|
50 |
: QMainWindow(parent) |
|
51 |
{ |
|
52 |
ui.setupUi(this); |
|
53 |
TeamNameEdit = new QLineEdit(ui.GBoxTeam); |
|
54 |
TeamNameEdit->setGeometry(QRect(10, 20, 141, 20)); |
|
55 |
TeamNameEdit->setMaxLength(15); |
|
56 |
for(int i = 0; i < 8; i++) |
|
57 |
{ |
|
58 |
HHNameEdit[i] = new QLineEdit(ui.GBoxHedgehogs); |
|
59 |
HHNameEdit[i]->setGeometry(QRect(10, 20 + i * 30, 141, 20)); |
|
60 |
HHNameEdit[i]->setMaxLength(15); |
|
61 |
} |
|
25 | 62 |
|
20 | 63 |
QStringList binds; |
64 |
for(int i = 0; strlen(sdlkeys[i][1]) > 0; i++) |
|
65 |
{ |
|
66 |
binds << sdlkeys[i][1]; |
|
67 |
} |
|
25 | 68 |
|
26 | 69 |
quint16 widind = 0, top = 0; |
70 |
for(quint8 i = 0; i < BINDS_NUMBER; i++) |
|
20 | 71 |
{ |
26 | 72 |
LBind[i] = new QLabel(ui.BindsBox->widget(widind)); |
73 |
LBind[i]->setGeometry(QRect(10, top + 3, 60, 20)); |
|
20 | 74 |
LBind[i]->setText(cbinds[i].name); |
75 |
LBind[i]->setAlignment(Qt::AlignRight); |
|
26 | 76 |
CBBind[i] = new QComboBox(ui.BindsBox->widget(widind)); |
77 |
CBBind[i]->setGeometry(QRect(80, top, 80, 20)); |
|
20 | 78 |
CBBind[i]->addItems(binds); |
26 | 79 |
if (cbinds[i].chwidget) |
80 |
{ |
|
81 |
top = 0; |
|
82 |
widind++; |
|
83 |
} else |
|
84 |
{ |
|
85 |
top += 30; |
|
86 |
} |
|
20 | 87 |
} |
25 | 88 |
|
20 | 89 |
QDir tmpdir; |
90 |
tmpdir.cd(DATA_PATH); |
|
91 |
tmpdir.cd("Forts"); |
|
92 |
tmpdir.setFilter(QDir::Files); |
|
25 | 93 |
|
20 | 94 |
ui.CBFort->addItems(tmpdir.entryList(QStringList("*L.png")).replaceInStrings(QRegExp("^(.*)L.png"), "\\1")); |
25 | 95 |
|
20 | 96 |
tmpdir.cd("../Graphics/Graves"); |
97 |
QStringList list = tmpdir.entryList(QStringList("*.png")); |
|
98 |
for (QStringList::Iterator it = list.begin(); it != list.end(); ++it ) |
|
99 |
{ |
|
100 |
ui.CBGrave->addItem((*it).replace(QRegExp("^(.*).png"), "\\1")); |
|
101 |
} |
|
102 |
||
103 |
cfgdir.setPath(cfgdir.homePath()); |
|
104 |
if (!cfgdir.exists(".hedgewars")) |
|
105 |
{ |
|
106 |
if (!cfgdir.mkdir(".hedgewars")) |
|
107 |
{ |
|
25 | 108 |
QMessageBox::critical(this, |
20 | 109 |
tr("Error"), |
110 |
tr("Cannot create directory %s").arg("/.hedgewars"), |
|
111 |
tr("Quit")); |
|
34 | 112 |
return ; |
20 | 113 |
} |
114 |
} |
|
115 |
cfgdir.cd(".hedgewars"); |
|
25 | 116 |
|
21 | 117 |
list = cfgdir.entryList(QStringList("*.cfg")); |
118 |
for (QStringList::Iterator it = list.begin(); it != list.end(); ++it ) |
|
119 |
{ |
|
37 | 120 |
ui.CBTeamName->addItem((*it).replace(QRegExp("^(.*).cfg$"), "\\1")); |
21 | 121 |
} |
25 | 122 |
|
123 |
||
20 | 124 |
QFile settings(cfgdir.absolutePath() + "/options"); |
25 | 125 |
if (settings.open(QIODevice::ReadOnly)) |
20 | 126 |
{ |
25 | 127 |
QTextStream stream(&settings); |
128 |
stream.setCodec("UTF-8"); |
|
129 |
QString str; |
|
130 |
||
131 |
while (!stream.atEnd()) |
|
20 | 132 |
{ |
25 | 133 |
str = stream.readLine(); |
134 |
if (str.startsWith(";")) continue; |
|
135 |
if (str.startsWith("resolution ")) |
|
136 |
{ |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
137 |
ui.CBResolution->setCurrentIndex(str.mid(11).toLong()); |
25 | 138 |
} else |
139 |
if (str.startsWith("fullscreen ")) |
|
140 |
{ |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
141 |
ui.CBFullscreen->setChecked(str.mid(11).toLong()); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
142 |
} else |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
143 |
if (str.startsWith("nick ")) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
144 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
145 |
ui.editNetNick->setText(str.mid(5)); |
25 | 146 |
} |
20 | 147 |
} |
25 | 148 |
settings.close(); |
20 | 149 |
} |
26 | 150 |
|
28 | 151 |
connect(ui.BtnSPBack, SIGNAL(clicked()), this, SLOT(GoToMain())); |
152 |
connect(ui.BtnDemosBack, SIGNAL(clicked()), this, SLOT(GoToMain())); |
|
153 |
connect(ui.BtnSetupBack, SIGNAL(clicked()), this, SLOT(GoToMain())); |
|
154 |
connect(ui.BtnMPBack, SIGNAL(clicked()), this, SLOT(GoToMain())); |
|
155 |
connect(ui.BtnNetBack, SIGNAL(clicked()), this, SLOT(GoToMain())); |
|
156 |
connect(ui.BtnSinglePlayer, SIGNAL(clicked()), this, SLOT(GoToSinglePlayer())); |
|
157 |
connect(ui.BtnSetup, SIGNAL(clicked()), this, SLOT(GoToSetup())); |
|
158 |
connect(ui.BtnMultiplayer, SIGNAL(clicked()), this, SLOT(GoToMultiplayer())); |
|
159 |
connect(ui.BtnDemos, SIGNAL(clicked()), this, SLOT(GoToDemos())); |
|
160 |
connect(ui.BtnNet, SIGNAL(clicked()), this, SLOT(GoToNet())); |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
161 |
connect(ui.BtnNetCFGBack, SIGNAL(clicked()), this, SLOT(GoToNetChat())); |
28 | 162 |
connect(ui.BtnNewTeam, SIGNAL(clicked()), this, SLOT(NewTeam())); |
163 |
connect(ui.BtnEditTeam, SIGNAL(clicked()), this, SLOT(EditTeam())); |
|
164 |
connect(ui.BtnTeamSave, SIGNAL(clicked()), this, SLOT(TeamSave())); |
|
165 |
connect(ui.BtnTeamDiscard, SIGNAL(clicked()), this, SLOT(TeamDiscard())); |
|
166 |
connect(ui.BtnSimpleGame, SIGNAL(clicked()), this, SLOT(SimpleGame())); |
|
167 |
connect(ui.BtnSaveOptions, SIGNAL(clicked()), this, SLOT(SaveOptions())); |
|
168 |
connect(ui.BtnPlayDemo, SIGNAL(clicked()), this, SLOT(PlayDemo())); |
|
169 |
connect(ui.BtnNetConnect, SIGNAL(clicked()), this, SLOT(NetConnect())); |
|
170 |
connect(ui.BtnNetChatDisconnect, SIGNAL(clicked()), this, SLOT(NetDisconnect())); |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
171 |
connect(ui.BtnNetChatJoin, SIGNAL(clicked()), this, SLOT(NetJoin())); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
172 |
connect(ui.BtnNetChatCreate, SIGNAL(clicked()), this, SLOT(NetCreate())); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
173 |
connect(ui.BtnNetCFGAddTeam, SIGNAL(clicked()), this, SLOT(NetAddTeam())); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
174 |
connect(ui.BtnNetCFGGo, SIGNAL(clicked()), this, SLOT(NetStartGame())); |
28 | 175 |
connect(ui.CBGrave, SIGNAL(activated(const QString &)), this, SLOT(CBGrave_activated(const QString &))); |
176 |
connect(ui.CBFort, SIGNAL(activated(const QString &)), this, SLOT(CBFort_activated(const QString &))); |
|
20 | 177 |
ui.Pages->setCurrentIndex(ID_PAGE_MAIN); |
178 |
} |
|
179 |
||
180 |
void HWForm::GoToMain() |
|
181 |
{ |
|
182 |
ui.Pages->setCurrentIndex(ID_PAGE_MAIN); |
|
183 |
} |
|
184 |
||
185 |
void HWForm::GoToSinglePlayer() |
|
186 |
{ |
|
187 |
ui.Pages->setCurrentIndex(ID_PAGE_SINGLEPLAYER); |
|
188 |
} |
|
189 |
||
190 |
void HWForm::GoToSetup() |
|
191 |
{ |
|
192 |
ui.Pages->setCurrentIndex(ID_PAGE_SETUP); |
|
193 |
} |
|
194 |
||
25 | 195 |
void HWForm::GoToMultiplayer() |
196 |
{ |
|
197 |
ui.Pages->setCurrentIndex(ID_PAGE_MULTIPLAYER); |
|
198 |
} |
|
26 | 199 |
|
200 |
void HWForm::GoToDemos() |
|
201 |
{ |
|
202 |
QDir tmpdir; |
|
203 |
tmpdir.cd(DATA_PATH); |
|
204 |
tmpdir.cd("Demos"); |
|
205 |
tmpdir.setFilter(QDir::Files); |
|
28 | 206 |
ui.DemosList->clear(); |
26 | 207 |
ui.DemosList->addItems(tmpdir.entryList(QStringList("*.hwd_1")).replaceInStrings(QRegExp("^(.*).hwd_1"), "\\1")); |
208 |
ui.Pages->setCurrentIndex(ID_PAGE_DEMOS); |
|
209 |
} |
|
210 |
||
28 | 211 |
void HWForm::GoToNet() |
212 |
{ |
|
213 |
ui.Pages->setCurrentIndex(ID_PAGE_NET); |
|
214 |
} |
|
215 |
||
216 |
void HWForm::GoToNetChat() |
|
217 |
{ |
|
218 |
ui.Pages->setCurrentIndex(ID_PAGE_NETCHAT); |
|
219 |
} |
|
220 |
||
20 | 221 |
void HWForm::NewTeam() |
222 |
{ |
|
25 | 223 |
tmpTeam = new HWTeam("unnamed"); |
21 | 224 |
tmpTeam->SetCfgDir(cfgdir.absolutePath()); |
225 |
tmpTeam->SetToPage(this); |
|
20 | 226 |
ui.Pages->setCurrentIndex(ID_PAGE_SETUP_TEAM); |
227 |
} |
|
228 |
||
229 |
void HWForm::EditTeam() |
|
230 |
{ |
|
25 | 231 |
tmpTeam = new HWTeam(ui.CBTeamName->currentText()); |
21 | 232 |
tmpTeam->SetCfgDir(cfgdir.absolutePath()); |
233 |
tmpTeam->LoadFromFile(); |
|
234 |
tmpTeam->SetToPage(this); |
|
20 | 235 |
ui.Pages->setCurrentIndex(ID_PAGE_SETUP_TEAM); |
236 |
} |
|
237 |
||
238 |
void HWForm::TeamSave() |
|
239 |
{ |
|
21 | 240 |
tmpTeam->GetFromPage(this); |
241 |
tmpTeam->SaveToFile(); |
|
242 |
delete tmpTeam; |
|
20 | 243 |
ui.Pages->setCurrentIndex(ID_PAGE_SETUP); |
244 |
} |
|
245 |
||
246 |
void HWForm::TeamDiscard() |
|
247 |
{ |
|
248 |
ui.Pages->setCurrentIndex(ID_PAGE_SETUP); |
|
249 |
} |
|
250 |
||
251 |
void HWForm::SimpleGame() |
|
252 |
{ |
|
26 | 253 |
game = new HWGame(ui.CBResolution->currentIndex(), ui.CBFullscreen->isChecked()); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
254 |
game->AddTeam("team"); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
255 |
game->AddTeam("team"); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
256 |
game->StartLocal(); |
20 | 257 |
} |
258 |
||
259 |
void HWForm::CBGrave_activated(const QString & gravename) |
|
260 |
{ |
|
261 |
QPixmap pix(QString(DATA_PATH) + "/Graphics/Graves/" + gravename + ".png"); |
|
262 |
ui.GravePreview->setPixmap(pix.copy(0, 0, 32, 32)); |
|
263 |
} |
|
264 |
||
265 |
void HWForm::CBFort_activated(const QString & fortname) |
|
266 |
{ |
|
267 |
QPixmap pix(QString(DATA_PATH) + "/Forts/" + fortname + "L.png"); |
|
268 |
ui.FortPreview->setPixmap(pix); |
|
269 |
} |
|
270 |
||
271 |
void HWForm::SaveOptions() |
|
272 |
{ |
|
273 |
QFile settings(cfgdir.absolutePath() + "/options"); |
|
274 |
if (!settings.open(QIODevice::WriteOnly)) |
|
275 |
{ |
|
25 | 276 |
QMessageBox::critical(this, |
20 | 277 |
tr("Error"), |
278 |
tr("Cannot save options to file %s").arg(settings.fileName()), |
|
279 |
tr("Quit")); |
|
280 |
return ; |
|
281 |
} |
|
282 |
QTextStream stream(&settings); |
|
283 |
stream.setCodec("UTF-8"); |
|
284 |
stream << "; Generated by Hedgewars, do not modify" << endl; |
|
285 |
stream << "resolution " << ui.CBResolution->currentIndex() << endl; |
|
286 |
stream << "fullscreen " << ui.CBFullscreen->isChecked() << endl; |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
287 |
stream << "nick " << ui.editNetNick->text() << endl; |
20 | 288 |
settings.close(); |
289 |
} |
|
26 | 290 |
|
291 |
void HWForm::PlayDemo() |
|
292 |
{ |
|
293 |
QListWidgetItem * curritem = ui.DemosList->currentItem(); |
|
294 |
if (!curritem) |
|
295 |
{ |
|
296 |
QMessageBox::critical(this, |
|
297 |
tr("Error"), |
|
298 |
tr("Please, select demo from the list above"), |
|
299 |
tr("OK")); |
|
300 |
return ; |
|
301 |
} |
|
302 |
game = new HWGame(ui.CBResolution->currentIndex(), ui.CBFullscreen->isChecked()); |
|
303 |
game->PlayDemo(QString(DATA_PATH) + "/Demos/" + curritem->text() + ".hwd_1"); |
|
304 |
} |
|
305 |
||
28 | 306 |
void HWForm::NetConnect() |
307 |
{ |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
308 |
hwnet = new HWNet(ui.CBResolution->currentIndex(), ui.CBFullscreen->isChecked()); |
28 | 309 |
connect(hwnet, SIGNAL(Connected()), this, SLOT(GoToNetChat())); |
310 |
connect(hwnet, SIGNAL(AddGame(const QString &)), this, SLOT(AddGame(const QString &))); |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
311 |
connect(hwnet, SIGNAL(EnteredGame()), this, SLOT(NetGameEnter())); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
312 |
connect(hwnet, SIGNAL(ChangeInTeams(const QStringList &)), this, SLOT(ChangeInNetTeams(const QStringList &))); |
36 | 313 |
hwnet->Connect("172.19.5.168", 6667, ui.editNetNick->text()); |
28 | 314 |
} |
26 | 315 |
|
28 | 316 |
void HWForm::NetDisconnect() |
317 |
{ |
|
318 |
hwnet->Disconnect(); |
|
319 |
GoToNet(); |
|
320 |
} |
|
321 |
||
322 |
void HWForm::AddGame(const QString & chan) |
|
323 |
{ |
|
324 |
ui.ChannelsList->addItem(chan); |
|
325 |
} |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
326 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
327 |
void HWForm::NetGameEnter() |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
328 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
329 |
ui.Pages->setCurrentIndex(ID_PAGE_NETCFG); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
330 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
331 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
332 |
void HWForm::NetJoin() |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
333 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
334 |
hwnet->JoinGame("#hw"); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
335 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
336 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
337 |
void HWForm::NetCreate() |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
338 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
339 |
hwnet->JoinGame("#hw"); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
340 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
341 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
342 |
void HWForm::NetAddTeam() |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
343 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
344 |
HWTeam team("team"); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
345 |
team.SetCfgDir(cfgdir.absolutePath()); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
346 |
team.LoadFromFile(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
347 |
hwnet->AddTeam(team); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
348 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
349 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
350 |
void HWForm::NetStartGame() |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
351 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
352 |
hwnet->StartGame(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
353 |
} |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
354 |
|
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
355 |
void HWForm::ChangeInNetTeams(const QStringList & teams) |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
356 |
{ |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
357 |
ui.listNetTeams->clear(); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
358 |
ui.listNetTeams->addItems(teams); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
359 |
} |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
360 |