author | palewolf |
Sun, 21 Mar 2010 20:53:34 +0000 | |
changeset 3039 | 057486a3a6c0 |
parent 2948 | 3f21a9dc93d0 |
child 3236 | 4ab3917d7d44 |
permissions | -rw-r--r-- |
315 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
884 | 3 |
* Copyright (c) 2006-2008 Igor Ulyanov <iulyanov@gmail.com> |
1374 | 4 |
* Copyright (c) 2008 Andrey Korotaev <unC0Rr@gmail.com> |
315 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
1374 | 20 |
#include <QMessageBox> |
1375 | 21 |
|
22 |
#include "hwconsts.h" |
|
315 | 23 |
#include "netserver.h" |
24 |
||
1375 | 25 |
HWNetServer::~HWNetServer() |
26 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
27 |
StopServer(); |
1375 | 28 |
} |
29 |
||
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:
658
diff
changeset
|
30 |
bool HWNetServer::StartServer(quint16 port) |
315 | 31 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
32 |
ds_port = port; |
326 | 33 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
34 |
QStringList params; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
35 |
params << QString("--port=%1").arg(port); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
36 |
params << "--dedicated=False"; |
2377 | 37 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
38 |
process.start(bindir->absolutePath() + "/hedgewars-server", params); |
1375 | 39 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
40 |
return process.waitForStarted(5000); |
315 | 41 |
} |
42 |
||
43 |
void HWNetServer::StopServer() |
|
44 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
45 |
process.close(); |
315 | 46 |
} |
47 |
||
48 |
||
49 |
quint16 HWNetServer::getRunningPort() const |
|
50 |
{ |
|
51 |
return ds_port; |
|
52 |
} |