author | displacer |
Mon, 05 Feb 2007 23:26:00 +0000 | |
changeset 396 | 70dfd02845af |
parent 395 | 641ed71c7c93 |
child 399 | c7da1bd32b4e |
permissions | -rw-r--r-- |
315 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2006 Ulyanov Igor <iulyanov@gmail.com> |
|
4 |
* |
|
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 |
|
8 |
* |
|
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. |
|
13 |
* |
|
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 |
|
17 |
*/ |
|
18 |
||
19 |
#include <QMessageBox> |
|
20 |
#include <QDebug> |
|
21 |
||
22 |
#include "newnetclient.h" |
|
23 |
#include "proto.h" |
|
24 |
#include "gameuiconfig.h" |
|
25 |
#include "game.h" |
|
334 | 26 |
#include "gamecfgwidget.h" |
347 | 27 |
#include "teamselect.h" |
315 | 28 |
|
29 |
char delimeter='\t'; |
|
30 |
||
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
31 |
HWNewNet::HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget) : |
334 | 32 |
config(config), |
33 |
m_pGameCFGWidget(pGameCFGWidget), |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
34 |
m_pTeamSelWidget(pTeamSelWidget), |
383 | 35 |
isChief(false), |
36 |
m_game_connected(false) |
|
315 | 37 |
{ |
38 |
connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead())); |
|
39 |
connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect())); |
|
40 |
connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect())); |
|
41 |
connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, |
|
42 |
SLOT(displayError(QAbstractSocket::SocketError))); |
|
43 |
} |
|
44 |
||
45 |
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
|
46 |
{ |
|
47 |
qDebug() << hostName << ":" << port; |
|
48 |
NetSocket.connectToHost(hostName, port); |
|
49 |
mynick = nick; |
|
50 |
} |
|
51 |
||
52 |
void HWNewNet::Disconnect() |
|
53 |
{ |
|
383 | 54 |
NetSocket.disconnectFromHost(); |
315 | 55 |
} |
56 |
||
57 |
void HWNewNet::JoinGame(const QString & game) |
|
58 |
{ |
|
59 |
RawSendNet(QString("JOIN %1").arg(game)); |
|
60 |
} |
|
61 |
||
62 |
void HWNewNet::AddTeam(const HWTeam & team) |
|
63 |
{ |
|
64 |
RawSendNet(QString("ADDTEAM:") + delimeter + |
|
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
65 |
team.TeamName + delimeter + |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
66 |
team.teamColor.name() + delimeter + |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
67 |
team.HHName[0] + delimeter + team.HHName[1] + delimeter + |
315 | 68 |
team.HHName[2] + delimeter + team.HHName[3] + delimeter + team.HHName[4] + delimeter + |
69 |
team.HHName[5] + delimeter + team.HHName[6] + delimeter + team.HHName[7]); |
|
70 |
} |
|
71 |
||
347 | 72 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
73 |
{ |
|
74 |
RawSendNet(QString("REMOVETEAM:") + delimeter + team.TeamName); |
|
75 |
} |
|
76 |
||
315 | 77 |
void HWNewNet::StartGame() |
78 |
{ |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
79 |
RawSendNet(QString("START:")); |
315 | 80 |
} |
81 |
||
82 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
83 |
{ |
|
84 |
QString msg = QString(buf.toBase64()); |
|
85 |
||
86 |
//NetBuffer += buf; |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
87 |
RawSendNet(QString("GAMEMSG:%1%2").arg(delimeter).arg(msg)); |
315 | 88 |
} |
89 |
||
90 |
void HWNewNet::RawSendNet(const QString & str) |
|
91 |
{ |
|
92 |
RawSendNet(str.toUtf8()); |
|
93 |
} |
|
94 |
||
95 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
96 |
{ |
|
97 |
NetSocket.write(buf); |
|
98 |
NetSocket.write("\n", 1); |
|
99 |
} |
|
100 |
||
101 |
void HWNewNet::ClientRead() |
|
102 |
{ |
|
103 |
while (NetSocket.canReadLine()) { |
|
104 |
ParseLine(NetSocket.readLine().trimmed()); |
|
105 |
} |
|
106 |
} |
|
107 |
||
108 |
void HWNewNet::OnConnect() |
|
109 |
{ |
|
110 |
RawSendNet(QString("USER") + delimeter + "hwgame 1 2 Hedgewars game"); |
|
111 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
|
112 |
} |
|
113 |
||
114 |
void HWNewNet::OnDisconnect() |
|
115 |
{ |
|
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
116 |
//emit ChangeInTeams(QStringList()); |
383 | 117 |
if(m_game_connected) emit Disconnected(); |
118 |
m_game_connected=false; |
|
315 | 119 |
} |
120 |
||
121 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
122 |
{ |
|
123 |
switch (socketError) { |
|
124 |
case QAbstractSocket::RemoteHostClosedError: |
|
125 |
break; |
|
126 |
case QAbstractSocket::HostNotFoundError: |
|
127 |
QMessageBox::information(0, tr("Error"), |
|
128 |
tr("The host was not found. Please check the host name and port settings.")); |
|
129 |
break; |
|
130 |
case QAbstractSocket::ConnectionRefusedError: |
|
131 |
QMessageBox::information(0, tr("Error"), |
|
132 |
tr("Connection refused")); |
|
133 |
break; |
|
134 |
default: |
|
135 |
QMessageBox::information(0, tr("Error"), |
|
136 |
NetSocket.errorString()); |
|
137 |
} |
|
138 |
} |
|
139 |
||
140 |
void HWNewNet::ParseLine(const QByteArray & line) |
|
141 |
{ |
|
142 |
QString msg = QString::fromUtf8 (line.data(), line.size()); |
|
320 | 143 |
|
315 | 144 |
QStringList lst = msg.split(delimeter); |
145 |
if (lst[0] == "ERRONEUSNICKNAME") { |
|
146 |
QMessageBox::information(0, 0, "Your net nickname is in use or cannot be used"); |
|
147 |
return; |
|
148 |
} |
|
149 |
||
150 |
if (lst[0] == "CONNECTED") { |
|
383 | 151 |
m_game_connected=true; |
315 | 152 |
emit Connected(); |
153 |
emit EnteredGame(); |
|
154 |
return; |
|
155 |
} |
|
156 |
||
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
157 |
if (lst[0] == "ADDTEAM:") { |
315 | 158 |
lst.pop_front(); |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
159 |
emit AddNetTeam(lst); |
315 | 160 |
return; |
161 |
} |
|
162 |
||
347 | 163 |
if (lst[0] == "REMOVETEAM:") { |
352 | 164 |
if(lst.size()<3) return; |
165 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1], lst[2].toUInt())); |
|
347 | 166 |
return; |
167 |
} |
|
168 |
||
349 | 169 |
if(lst[0]=="SLAVE") { |
170 |
m_pGameCFGWidget->setEnabled(false); |
|
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
171 |
m_pTeamSelWidget->setNonInteractive(); |
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
172 |
return; |
349 | 173 |
} |
174 |
||
315 | 175 |
if (lst[0] == "CONFIGASKED") { |
334 | 176 |
isChief=true; |
315 | 177 |
ConfigAsked(); |
178 |
return; |
|
179 |
} |
|
320 | 180 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
181 |
if (lst[0] == "RUNGAME") { |
396 | 182 |
RunGame(); |
183 |
return; |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
184 |
} |
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
185 |
|
315 | 186 |
if (lst[0] == "CONFIGURED") { |
187 |
lst.pop_front(); |
|
334 | 188 |
if(lst.size()<5) return; |
189 |
qDebug() << lst; |
|
190 |
emit seedChanged(lst[0]); |
|
191 |
emit mapChanged(lst[1]); |
|
192 |
emit themeChanged(lst[2]); |
|
193 |
emit initHealthChanged(lst[3].toUInt()); |
|
194 |
emit turnTimeChanged(lst[4].toUInt()); |
|
195 |
//emit fortsModeChanged(lst[5].toInt() != 0); // FIXME: add a getFortsMode in ConfigAsked |
|
315 | 196 |
return; |
197 |
} |
|
198 |
||
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
199 |
if(lst[0]=="TEAM_ACCEPTED") { |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
200 |
m_networkToLocalteams.insert(lst[2].toUInt(), lst[1]); |
373 | 201 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
202 |
return; |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
203 |
} |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
204 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
205 |
if (lst[0] == "CONFIG_PARAM") { |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
206 |
if (lst[1] == "SEED") { |
332 | 207 |
emit seedChanged(lst[2]); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
208 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
209 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
210 |
if (lst[1] == "MAP") { |
332 | 211 |
emit mapChanged(lst[2]); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
212 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
213 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
214 |
if (lst[1] == "THEME") { |
332 | 215 |
emit themeChanged(lst[2]); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
216 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
217 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
218 |
if (lst[1] == "HEALTH") { |
332 | 219 |
emit initHealthChanged(lst[2].toUInt()); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
220 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
221 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
222 |
if (lst[1] == "TURNTIME") { |
332 | 223 |
emit turnTimeChanged(lst[2].toUInt()); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
224 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
225 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
226 |
if (lst[1] == "FORTSMODE") { |
332 | 227 |
emit fortsModeChanged(lst[2].toInt() != 0); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
228 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
229 |
} |
352 | 230 |
if (lst[1] == "HHNUM") { |
231 |
HWTeam tmptm(lst[2], lst[3].toUInt()); |
|
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
232 |
if(m_networkToLocalteams.find(lst[3].toUInt())!=m_networkToLocalteams.end()) { |
356
ca3a5dfcae75
network teams hedgehogs nums modifications now working from chief client
displacer
parents:
354
diff
changeset
|
233 |
tmptm=HWTeam(lst[2]); // local team should be changed |
ca3a5dfcae75
network teams hedgehogs nums modifications now working from chief client
displacer
parents:
354
diff
changeset
|
234 |
} |
352 | 235 |
tmptm.numHedgehogs=lst[4].toUInt(); |
236 |
emit hhnumChanged(tmptm); |
|
237 |
return; |
|
238 |
} |
|
372 | 239 |
if (lst[1] == "TEAM_COLOR") { |
240 |
HWTeam tmptm(lst[2], lst[3].toUInt()); |
|
241 |
if(m_networkToLocalteams.find(lst[3].toUInt())!=m_networkToLocalteams.end()) { |
|
242 |
tmptm=HWTeam(lst[2]); // local team should be changed |
|
243 |
} |
|
244 |
tmptm.teamColor=QColor(lst[4]); |
|
245 |
emit teamColorChanged(tmptm); |
|
246 |
return; |
|
247 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
248 |
qDebug() << "unknow config param: " << lst[1]; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
249 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
250 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
251 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
252 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
253 |
// should be kinda game states, which don't allow "GAMEMSG:" at configure step, |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
254 |
// "CONNECTED" at round phase, etc. |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
255 |
if (lst[0] == "GAMEMSG:") { |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
256 |
QByteArray em = QByteArray::fromBase64(lst[1].toAscii()); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
257 |
emit FromNet(em); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
258 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
259 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
260 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
261 |
qDebug() << "unknown net command: " << msg; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
262 |
|
315 | 263 |
} |
264 |
||
265 |
||
266 |
void HWNewNet::ConfigAsked() |
|
267 |
{ |
|
335 | 268 |
onSeedChanged(m_pGameCFGWidget->getCurrentSeed()); |
269 |
onMapChanged(m_pGameCFGWidget->getCurrentMap()); |
|
270 |
onThemeChanged(m_pGameCFGWidget->getCurrentTheme()); |
|
271 |
onInitHealthChanged(m_pGameCFGWidget->getInitHealth()); |
|
272 |
onTurnTimeChanged(m_pGameCFGWidget->getTurnTime()); |
|
315 | 273 |
} |
274 |
||
275 |
void HWNewNet::RunGame() |
|
276 |
{ |
|
395 | 277 |
HWGame* game = new HWGame(config, m_pGameCFGWidget, m_pTeamSelWidget); // FIXME: memory leak here (stackify it?) |
315 | 278 |
connect(game, SIGNAL(SendNet(const QByteArray &)), this, SLOT(SendNet(const QByteArray &))); |
279 |
connect(this, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &))); |
|
280 |
connect(this, SIGNAL(LocalCFG(const QString &)), game, SLOT(LocalCFG(const QString &))); |
|
281 |
game->StartNet(); |
|
282 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
283 |
|
352 | 284 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
285 |
{ |
|
286 |
qDebug() << team.getNetID() << ":" << team.numHedgehogs; |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
287 |
RawSendNet(QString("CONFIG_PARAM%1HHNUM%1%2%1%3%1%4").arg(delimeter).arg(team.TeamName)\ |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
288 |
.arg(team.getNetID() ? team.getNetID() : m_networkToLocalteams.key(team.TeamName))\ |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
289 |
.arg(team.numHedgehogs)); |
352 | 290 |
} |
291 |
||
372 | 292 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
293 |
{ |
|
294 |
qDebug() << team.getNetID() << ":" << team.teamColor.name(); |
|
295 |
RawSendNet(QString("CONFIG_PARAM%1TEAM_COLOR%1%2%1%3%1%4").arg(delimeter).arg(team.TeamName)\ |
|
296 |
.arg(team.getNetID() ? team.getNetID() : m_networkToLocalteams.key(team.TeamName))\ |
|
297 |
.arg(team.teamColor.name())); |
|
298 |
} |
|
299 |
||
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
300 |
void HWNewNet::onSeedChanged(const QString & seed) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
301 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
302 |
RawSendNet(QString("CONFIG_PARAM%1SEED%1%2").arg(delimeter).arg(seed)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
303 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
304 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
305 |
void HWNewNet::onMapChanged(const QString & map) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
306 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
307 |
RawSendNet(QString("CONFIG_PARAM%1MAP%1%2").arg(delimeter).arg(map)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
308 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
309 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
310 |
void HWNewNet::onThemeChanged(const QString & theme) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
311 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
312 |
RawSendNet(QString("CONFIG_PARAM%1THEME%1%2").arg(delimeter).arg(theme)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
313 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
314 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
315 |
void HWNewNet::onInitHealthChanged(quint32 health) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
316 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
317 |
RawSendNet(QString("CONFIG_PARAM%1HEALTH%1%2").arg(delimeter).arg(health)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
318 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
319 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
320 |
void HWNewNet::onTurnTimeChanged(quint32 time) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
321 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
322 |
RawSendNet(QString("CONFIG_PARAM%1TURNTIME%1%2").arg(delimeter).arg(time)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
323 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
324 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
325 |
void HWNewNet::onFortsModeChanged(bool value) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
326 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
327 |
RawSendNet(QString("CONFIG_PARAM%1FORTSMODE%1%2").arg(delimeter).arg(value)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
328 |
} |