author | unc0rr |
Fri, 28 Feb 2014 13:55:16 +0400 | |
changeset 10164 | 0570d4b22187 |
parent 10162 | 38dbf26475d8 |
child 10166 | 4be4a3302ff8 |
permissions | -rw-r--r-- |
172 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2006-2007 Ulyanov Igor <iulyanov@gmail.com> |
9998 | 4 |
* Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com> |
172 | 5 |
* |
184 | 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 |
|
172 | 9 |
* |
184 | 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. |
|
172 | 14 |
* |
184 | 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
17 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
4976 | 18 |
*/ |
172 | 19 |
|
10161 | 20 |
#include <QPainter> |
21 |
#include <QBitmap> |
|
22 |
#include <QLinearGradient> |
|
23 |
||
497 | 24 |
#include "hwconsts.h" |
164 | 25 |
#include "hwmap.h" |
1797 | 26 |
|
8070
66bc20d089fc
Okay, remove previous request only if it has same parent
unc0rr
parents:
8069
diff
changeset
|
27 |
HWMap::HWMap(QObject * parent) : |
66bc20d089fc
Okay, remove previous request only if it has same parent
unc0rr
parents:
8069
diff
changeset
|
28 |
TCPBase(false, parent) |
164 | 29 |
{ |
30 |
} |
|
31 |
||
168 | 32 |
HWMap::~HWMap() |
33 |
{ |
|
34 |
} |
|
35 |
||
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
6952
diff
changeset
|
36 |
bool HWMap::couldBeRemoved() |
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
6952
diff
changeset
|
37 |
{ |
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
6952
diff
changeset
|
38 |
return !m_hasStarted; |
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
6952
diff
changeset
|
39 |
} |
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
6952
diff
changeset
|
40 |
|
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
41 |
void HWMap::getImage(const QString & seed, int filter, MapGenerator mapgen, int maze_size, const QByteArray & drawMapData, QString & script) |
164 | 42 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
43 |
m_seed = seed; |
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
44 |
m_script = script; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
45 |
templateFilter = filter; |
3133 | 46 |
m_mapgen = mapgen; |
47 |
m_maze_size = maze_size; |
|
4572 | 48 |
if(mapgen == MAPGEN_DRAWN) m_drawMapData = drawMapData; |
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
6952
diff
changeset
|
49 |
Start(true); |
164 | 50 |
} |
51 |
||
5213
a86768368309
make the associate button use the user's settings for loading demos/saves
nemo
parents:
4976
diff
changeset
|
52 |
QStringList HWMap::getArguments() |
177 | 53 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
54 |
QStringList arguments; |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
55 |
arguments << "--internal"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
56 |
arguments << "--port"; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
57 |
arguments << QString("%1").arg(ipc_port); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
58 |
arguments << "--user-prefix"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
59 |
arguments << cfgdir->absolutePath(); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8070
diff
changeset
|
60 |
arguments << "--landpreview"; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
61 |
return arguments; |
177 | 62 |
} |
63 |
||
64 |
void HWMap::onClientDisconnect() |
|
10161 | 65 |
{ |
66 |
QLinearGradient linearGrad(QPoint(128, 0), QPoint(128, 128)); |
|
67 |
linearGrad.setColorAt(1, QColor(0, 0, 192)); |
|
68 |
linearGrad.setColorAt(0, QColor(66, 115, 225)); |
|
69 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
70 |
if (readbuffer.size() == 128 * 32 + 1) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
71 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
72 |
quint8 *buf = (quint8*) readbuffer.constData(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
73 |
QImage im(buf, 256, 128, QImage::Format_Mono); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
74 |
im.setNumColors(2); |
10161 | 75 |
|
76 |
QPixmap px(QSize(256, 128)); |
|
77 |
QPixmap pxres(px.size()); |
|
78 |
QPainter p(&pxres); |
|
79 |
||
80 |
px.fill(Qt::yellow); |
|
81 |
QBitmap bm = QBitmap::fromImage(im); |
|
82 |
px.setMask(bm); |
|
83 |
||
84 |
p.fillRect(pxres.rect(), linearGrad); |
|
85 |
p.drawPixmap(0, 0, px); |
|
86 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
87 |
emit HHLimitReceived(buf[128 * 32]); |
10161 | 88 |
emit ImageReceived(px); |
10162 | 89 |
} else if (readbuffer.size() == 128 * 256 + 1) |
90 |
{ |
|
91 |
QVector<QRgb> colorTable; |
|
92 |
colorTable.resize(256); |
|
93 |
for(int i = 0; i < 256; ++i) |
|
94 |
colorTable[i] = qRgba(255, 255, 0, i); |
|
95 |
||
96 |
const quint8 *buf = (const quint8*) readbuffer.constData(); |
|
97 |
QImage im(buf, 256, 128, QImage::Format_Indexed8); |
|
98 |
im.setColorTable(colorTable); |
|
99 |
||
100 |
QPixmap px = QPixmap::fromImage(im, Qt::ColorOnly); |
|
101 |
QPixmap pxres(px.size()); |
|
102 |
QPainter p(&pxres); |
|
103 |
||
104 |
p.fillRect(pxres.rect(), linearGrad); |
|
105 |
p.drawPixmap(0, 0, px); |
|
106 |
||
107 |
emit HHLimitReceived(buf[128 * 256]); |
|
108 |
emit ImageReceived(px); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
109 |
} |
164 | 110 |
} |
111 |
||
112 |
void HWMap::SendToClientFirst() |
|
113 |
{ |
|
4534 | 114 |
SendIPC(QString("eseed %1").arg(m_seed).toUtf8()); |
115 |
SendIPC(QString("e$template_filter %1").arg(templateFilter).toUtf8()); |
|
116 |
SendIPC(QString("e$mapgen %1").arg(m_mapgen).toUtf8()); |
|
10159 | 117 |
if (!m_script.isEmpty()) |
10150
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
118 |
{ |
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
119 |
SendIPC(QString("escript Scripts/Multiplayer/%1.lua").arg(m_script).toUtf8()); |
fa5c83fd0ad9
Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents:
10108
diff
changeset
|
120 |
} |
4489 | 121 |
|
122 |
switch (m_mapgen) |
|
123 |
{ |
|
124 |
case MAPGEN_MAZE: |
|
4534 | 125 |
SendIPC(QString("e$maze_size %1").arg(m_maze_size).toUtf8()); |
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
126 |
break; |
4489 | 127 |
|
128 |
case MAPGEN_DRAWN: |
|
129 |
{ |
|
130 |
QByteArray data = m_drawMapData; |
|
131 |
while(data.size() > 0) |
|
132 |
{ |
|
133 |
QByteArray tmp = data; |
|
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
134 |
tmp.truncate(200); |
4489 | 135 |
SendIPC("edraw " + tmp); |
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
136 |
data.remove(0, 200); |
4489 | 137 |
} |
4494
9585435e20f7
Pass hardcoded drawn map from frontend into engine \o/
unc0rr
parents:
4489
diff
changeset
|
138 |
break; |
4489 | 139 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
140 |
default: |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
141 |
; |
4489 | 142 |
} |
143 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1797
diff
changeset
|
144 |
SendIPC("!"); |
164 | 145 |
} |