author | inu |
Sun, 31 Oct 2010 00:05:49 +0200 | |
changeset 4025 | 1e60c5b77077 |
parent 3133 | 1ab5f18f4df8 |
child 4489 | c4ca9ced258b |
permissions | -rw-r--r-- |
172 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
486 | 3 |
* Copyright (c) 2006, 2007 Igor Ulyanov <iulyanov@gmail.com> |
172 | 4 |
* |
184 | 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 |
|
172 | 8 |
* |
184 | 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. |
|
172 | 13 |
* |
184 | 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 */ |
|
172 | 17 |
|
497 | 18 |
#include "hwconsts.h" |
164 | 19 |
#include "hwmap.h" |
1797 | 20 |
|
180
ea83b9e9057f
tcp sockets are incapsulated in TCPBase class now
displacer
parents:
177
diff
changeset
|
21 |
HWMap::HWMap() : |
ea83b9e9057f
tcp sockets are incapsulated in TCPBase class now
displacer
parents:
177
diff
changeset
|
22 |
TCPBase(false) |
164 | 23 |
{ |
24 |
} |
|
25 |
||
168 | 26 |
HWMap::~HWMap() |
27 |
{ |
|
28 |
} |
|
29 |
||
3133 | 30 |
void HWMap::getImage(std::string seed, int filter, MapGenerator mapgen, int maze_size) |
164 | 31 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
32 |
m_seed = seed; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
33 |
templateFilter = filter; |
3133 | 34 |
m_mapgen = mapgen; |
35 |
m_maze_size = maze_size; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
36 |
Start(); |
164 | 37 |
} |
38 |
||
177 | 39 |
QStringList HWMap::setArguments() |
40 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
41 |
QStringList arguments; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
42 |
arguments << cfgdir->absolutePath(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
43 |
arguments << QString("%1").arg(ipc_port); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
44 |
arguments << "landpreview"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
45 |
return arguments; |
177 | 46 |
} |
47 |
||
48 |
void HWMap::onClientDisconnect() |
|
164 | 49 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
50 |
if (readbuffer.size() == 128 * 32 + 1) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
51 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
52 |
quint8 *buf = (quint8*) readbuffer.constData(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
53 |
QImage im(buf, 256, 128, QImage::Format_Mono); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
54 |
im.setNumColors(2); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
55 |
emit HHLimitReceived(buf[128 * 32]); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
56 |
emit ImageReceived(im); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
57 |
} |
164 | 58 |
} |
59 |
||
60 |
void HWMap::SendToClientFirst() |
|
61 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
62 |
SendIPC(QString("eseed %1").arg(m_seed.c_str()).toLatin1()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
63 |
SendIPC(QString("e$template_filter %1").arg(templateFilter).toLatin1()); |
3133 | 64 |
SendIPC(QString("e$mapgen %1").arg(m_mapgen).toLatin1()); |
65 |
SendIPC(QString("e$maze_size %1").arg(m_maze_size).toLatin1()); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
66 |
SendIPC("!"); |
164 | 67 |
} |