author | displacer |
Tue, 10 Jan 2006 22:29:51 +0000 | |
changeset 45 | 1072e7fe85c8 |
parent 44 | 1ef9546971ff |
child 50 | 9ab4067dabec |
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)); |
41 | 73 |
LBind[i]->setGeometry(QRect(10, top + 3, 70, 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)); |
41 | 77 |
CBBind[i]->setGeometry(QRect(90, top, 80, 20)); |
20 | 78 |
CBBind[i]->addItems(binds); |
26 | 79 |
if (cbinds[i].chwidget) |
80 |
{ |
|
81 |
top = 0; |
|
82 |
widind++; |
|
83 |
} else |
|
84 |
{ |
|
41 | 85 |
top += 28; |
26 | 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"), |
43 | 110 |
tr("Cannot create directory %1").arg("/.hedgewars"), |
20 | 111 |
tr("Quit")); |
34 | 112 |
return ; |
20 | 113 |
} |
114 |
} |
|
115 |
cfgdir.cd(".hedgewars"); |
|
25 | 116 |
|
21 | 117 |
list = cfgdir.entryList(QStringList("*.cfg")); |
44 | 118 |
|
119 |
if(list.empty()) { |
|
120 |
HWTeam defaultTeam("DefaultTeam"); |
|
121 |
defaultTeam.SetCfgDir(cfgdir.absolutePath()); |
|
122 |
defaultTeam.SaveToFile(); |
|
123 |
list.push_back("DefaultTeam"); |
|
124 |
} |
|
125 |
||
21 | 126 |
for (QStringList::Iterator it = list.begin(); it != list.end(); ++it ) |
127 |
{ |
|
37 | 128 |
ui.CBTeamName->addItem((*it).replace(QRegExp("^(.*).cfg$"), "\\1")); |
21 | 129 |
} |
25 | 130 |
|
20 | 131 |
QFile settings(cfgdir.absolutePath() + "/options"); |
25 | 132 |
if (settings.open(QIODevice::ReadOnly)) |
20 | 133 |
{ |
25 | 134 |
QTextStream stream(&settings); |
135 |
stream.setCodec("UTF-8"); |
|
136 |
QString str; |
|
137 |
||
138 |
while (!stream.atEnd()) |
|
20 | 139 |
{ |
25 | 140 |
str = stream.readLine(); |
141 |
if (str.startsWith(";")) continue; |
|
142 |
if (str.startsWith("resolution ")) |
|
143 |
{ |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
144 |
ui.CBResolution->setCurrentIndex(str.mid(11).toLong()); |
25 | 145 |
} else |
146 |
if (str.startsWith("fullscreen ")) |
|
147 |
{ |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
148 |
ui.CBFullscreen->setChecked(str.mid(11).toLong()); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
149 |
} else |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
150 |
if (str.startsWith("nick ")) |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
151 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
152 |
ui.editNetNick->setText(str.mid(5)); |
25 | 153 |
} |
20 | 154 |
} |
25 | 155 |
settings.close(); |
20 | 156 |
} |
26 | 157 |
|
28 | 158 |
connect(ui.BtnSPBack, SIGNAL(clicked()), this, SLOT(GoToMain())); |
159 |
connect(ui.BtnDemosBack, SIGNAL(clicked()), this, SLOT(GoToMain())); |
|
160 |
connect(ui.BtnSetupBack, SIGNAL(clicked()), this, SLOT(GoToMain())); |
|
161 |
connect(ui.BtnMPBack, SIGNAL(clicked()), this, SLOT(GoToMain())); |
|
162 |
connect(ui.BtnNetBack, SIGNAL(clicked()), this, SLOT(GoToMain())); |
|
163 |
connect(ui.BtnSinglePlayer, SIGNAL(clicked()), this, SLOT(GoToSinglePlayer())); |
|
164 |
connect(ui.BtnSetup, SIGNAL(clicked()), this, SLOT(GoToSetup())); |
|
165 |
connect(ui.BtnMultiplayer, SIGNAL(clicked()), this, SLOT(GoToMultiplayer())); |
|
166 |
connect(ui.BtnDemos, SIGNAL(clicked()), this, SLOT(GoToDemos())); |
|
167 |
connect(ui.BtnNet, SIGNAL(clicked()), this, SLOT(GoToNet())); |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
168 |
connect(ui.BtnNetCFGBack, SIGNAL(clicked()), this, SLOT(GoToNetChat())); |
28 | 169 |
connect(ui.BtnNewTeam, SIGNAL(clicked()), this, SLOT(NewTeam())); |
170 |
connect(ui.BtnEditTeam, SIGNAL(clicked()), this, SLOT(EditTeam())); |
|
171 |
connect(ui.BtnTeamSave, SIGNAL(clicked()), this, SLOT(TeamSave())); |
|
172 |
connect(ui.BtnTeamDiscard, SIGNAL(clicked()), this, SLOT(TeamDiscard())); |
|
173 |
connect(ui.BtnSimpleGame, SIGNAL(clicked()), this, SLOT(SimpleGame())); |
|
174 |
connect(ui.BtnSaveOptions, SIGNAL(clicked()), this, SLOT(SaveOptions())); |
|
175 |
connect(ui.BtnPlayDemo, SIGNAL(clicked()), this, SLOT(PlayDemo())); |
|
176 |
connect(ui.BtnNetConnect, SIGNAL(clicked()), this, SLOT(NetConnect())); |
|
177 |
connect(ui.BtnNetChatDisconnect, SIGNAL(clicked()), this, SLOT(NetDisconnect())); |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
178 |
connect(ui.BtnNetChatJoin, SIGNAL(clicked()), this, SLOT(NetJoin())); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
179 |
connect(ui.BtnNetChatCreate, SIGNAL(clicked()), this, SLOT(NetCreate())); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
180 |
connect(ui.BtnNetCFGAddTeam, SIGNAL(clicked()), this, SLOT(NetAddTeam())); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
181 |
connect(ui.BtnNetCFGGo, SIGNAL(clicked()), this, SLOT(NetStartGame())); |
28 | 182 |
connect(ui.CBGrave, SIGNAL(activated(const QString &)), this, SLOT(CBGrave_activated(const QString &))); |
183 |
connect(ui.CBFort, SIGNAL(activated(const QString &)), this, SLOT(CBFort_activated(const QString &))); |
|
20 | 184 |
ui.Pages->setCurrentIndex(ID_PAGE_MAIN); |
185 |
} |
|
186 |
||
187 |
void HWForm::GoToMain() |
|
188 |
{ |
|
189 |
ui.Pages->setCurrentIndex(ID_PAGE_MAIN); |
|
190 |
} |
|
191 |
||
192 |
void HWForm::GoToSinglePlayer() |
|
193 |
{ |
|
194 |
ui.Pages->setCurrentIndex(ID_PAGE_SINGLEPLAYER); |
|
195 |
} |
|
196 |
||
197 |
void HWForm::GoToSetup() |
|
198 |
{ |
|
199 |
ui.Pages->setCurrentIndex(ID_PAGE_SETUP); |
|
200 |
} |
|
201 |
||
25 | 202 |
void HWForm::GoToMultiplayer() |
203 |
{ |
|
204 |
ui.Pages->setCurrentIndex(ID_PAGE_MULTIPLAYER); |
|
205 |
} |
|
26 | 206 |
|
207 |
void HWForm::GoToDemos() |
|
208 |
{ |
|
209 |
QDir tmpdir; |
|
210 |
tmpdir.cd(DATA_PATH); |
|
211 |
tmpdir.cd("Demos"); |
|
212 |
tmpdir.setFilter(QDir::Files); |
|
28 | 213 |
ui.DemosList->clear(); |
26 | 214 |
ui.DemosList->addItems(tmpdir.entryList(QStringList("*.hwd_1")).replaceInStrings(QRegExp("^(.*).hwd_1"), "\\1")); |
215 |
ui.Pages->setCurrentIndex(ID_PAGE_DEMOS); |
|
216 |
} |
|
217 |
||
28 | 218 |
void HWForm::GoToNet() |
219 |
{ |
|
220 |
ui.Pages->setCurrentIndex(ID_PAGE_NET); |
|
221 |
} |
|
222 |
||
223 |
void HWForm::GoToNetChat() |
|
224 |
{ |
|
225 |
ui.Pages->setCurrentIndex(ID_PAGE_NETCHAT); |
|
226 |
} |
|
227 |
||
20 | 228 |
void HWForm::NewTeam() |
229 |
{ |
|
25 | 230 |
tmpTeam = new HWTeam("unnamed"); |
21 | 231 |
tmpTeam->SetCfgDir(cfgdir.absolutePath()); |
232 |
tmpTeam->SetToPage(this); |
|
20 | 233 |
ui.Pages->setCurrentIndex(ID_PAGE_SETUP_TEAM); |
234 |
} |
|
235 |
||
236 |
void HWForm::EditTeam() |
|
237 |
{ |
|
25 | 238 |
tmpTeam = new HWTeam(ui.CBTeamName->currentText()); |
21 | 239 |
tmpTeam->SetCfgDir(cfgdir.absolutePath()); |
240 |
tmpTeam->LoadFromFile(); |
|
241 |
tmpTeam->SetToPage(this); |
|
20 | 242 |
ui.Pages->setCurrentIndex(ID_PAGE_SETUP_TEAM); |
243 |
} |
|
244 |
||
245 |
void HWForm::TeamSave() |
|
246 |
{ |
|
21 | 247 |
tmpTeam->GetFromPage(this); |
248 |
tmpTeam->SaveToFile(); |
|
249 |
delete tmpTeam; |
|
20 | 250 |
ui.Pages->setCurrentIndex(ID_PAGE_SETUP); |
251 |
} |
|
252 |
||
253 |
void HWForm::TeamDiscard() |
|
254 |
{ |
|
255 |
ui.Pages->setCurrentIndex(ID_PAGE_SETUP); |
|
256 |
} |
|
257 |
||
258 |
void HWForm::SimpleGame() |
|
259 |
{ |
|
26 | 260 |
game = new HWGame(ui.CBResolution->currentIndex(), ui.CBFullscreen->isChecked()); |
45
1072e7fe85c8
DefaultTeam is now default to play with single and network game
displacer
parents:
44
diff
changeset
|
261 |
game->AddTeam("DefaultTeam"); |
1072e7fe85c8
DefaultTeam is now default to play with single and network game
displacer
parents:
44
diff
changeset
|
262 |
game->AddTeam("DefaultTeam"); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
263 |
game->StartLocal(); |
20 | 264 |
} |
265 |
||
266 |
void HWForm::CBGrave_activated(const QString & gravename) |
|
267 |
{ |
|
268 |
QPixmap pix(QString(DATA_PATH) + "/Graphics/Graves/" + gravename + ".png"); |
|
269 |
ui.GravePreview->setPixmap(pix.copy(0, 0, 32, 32)); |
|
270 |
} |
|
271 |
||
272 |
void HWForm::CBFort_activated(const QString & fortname) |
|
273 |
{ |
|
274 |
QPixmap pix(QString(DATA_PATH) + "/Forts/" + fortname + "L.png"); |
|
275 |
ui.FortPreview->setPixmap(pix); |
|
276 |
} |
|
277 |
||
278 |
void HWForm::SaveOptions() |
|
279 |
{ |
|
280 |
QFile settings(cfgdir.absolutePath() + "/options"); |
|
281 |
if (!settings.open(QIODevice::WriteOnly)) |
|
282 |
{ |
|
25 | 283 |
QMessageBox::critical(this, |
20 | 284 |
tr("Error"), |
43 | 285 |
tr("Cannot save options to file %1").arg(settings.fileName()), |
20 | 286 |
tr("Quit")); |
287 |
return ; |
|
288 |
} |
|
289 |
QTextStream stream(&settings); |
|
290 |
stream.setCodec("UTF-8"); |
|
291 |
stream << "; Generated by Hedgewars, do not modify" << endl; |
|
292 |
stream << "resolution " << ui.CBResolution->currentIndex() << endl; |
|
293 |
stream << "fullscreen " << ui.CBFullscreen->isChecked() << endl; |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
294 |
stream << "nick " << ui.editNetNick->text() << endl; |
20 | 295 |
settings.close(); |
296 |
} |
|
26 | 297 |
|
298 |
void HWForm::PlayDemo() |
|
299 |
{ |
|
300 |
QListWidgetItem * curritem = ui.DemosList->currentItem(); |
|
301 |
if (!curritem) |
|
302 |
{ |
|
303 |
QMessageBox::critical(this, |
|
304 |
tr("Error"), |
|
305 |
tr("Please, select demo from the list above"), |
|
306 |
tr("OK")); |
|
307 |
return ; |
|
308 |
} |
|
309 |
game = new HWGame(ui.CBResolution->currentIndex(), ui.CBFullscreen->isChecked()); |
|
310 |
game->PlayDemo(QString(DATA_PATH) + "/Demos/" + curritem->text() + ".hwd_1"); |
|
311 |
} |
|
312 |
||
28 | 313 |
void HWForm::NetConnect() |
314 |
{ |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
315 |
hwnet = new HWNet(ui.CBResolution->currentIndex(), ui.CBFullscreen->isChecked()); |
28 | 316 |
connect(hwnet, SIGNAL(Connected()), this, SLOT(GoToNetChat())); |
317 |
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
|
318 |
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
|
319 |
connect(hwnet, SIGNAL(ChangeInTeams(const QStringList &)), this, SLOT(ChangeInNetTeams(const QStringList &))); |
36 | 320 |
hwnet->Connect("172.19.5.168", 6667, ui.editNetNick->text()); |
28 | 321 |
} |
26 | 322 |
|
28 | 323 |
void HWForm::NetDisconnect() |
324 |
{ |
|
325 |
hwnet->Disconnect(); |
|
326 |
GoToNet(); |
|
327 |
} |
|
328 |
||
329 |
void HWForm::AddGame(const QString & chan) |
|
330 |
{ |
|
331 |
ui.ChannelsList->addItem(chan); |
|
332 |
} |
|
31
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 |
void HWForm::NetGameEnter() |
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 |
ui.Pages->setCurrentIndex(ID_PAGE_NETCFG); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
337 |
} |
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 |
void HWForm::NetJoin() |
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 |
hwnet->JoinGame("#hw"); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
342 |
} |
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 |
void HWForm::NetCreate() |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
345 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
346 |
hwnet->JoinGame("#hw"); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
347 |
} |
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 |
void HWForm::NetAddTeam() |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
350 |
{ |
45
1072e7fe85c8
DefaultTeam is now default to play with single and network game
displacer
parents:
44
diff
changeset
|
351 |
HWTeam team("DefaultTeam"); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
352 |
team.SetCfgDir(cfgdir.absolutePath()); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
353 |
team.LoadFromFile(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
354 |
hwnet->AddTeam(team); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
355 |
} |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
356 |
|
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
357 |
void HWForm::NetStartGame() |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
358 |
{ |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
359 |
hwnet->StartGame(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
360 |
} |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
361 |
|
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
362 |
void HWForm::ChangeInNetTeams(const QStringList & teams) |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
363 |
{ |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
364 |
ui.listNetTeams->clear(); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
365 |
ui.listNetTeams->addItems(teams); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
366 |
} |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
367 |