author | displacer |
Fri, 11 Jan 2008 21:45:24 +0000 | |
changeset 697 | 44f167938201 |
parent 660 | 7c155e849602 |
child 703 | 424297e3165a |
permissions | -rw-r--r-- |
315 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
486 | 3 |
* Copyright (c) 2006-2007 Ulyanov Igor <iulyanov@gmail.com> |
315 | 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 |
||
697 | 21 |
#include "hwconsts.h" |
315 | 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 |
|
655
e58a77556878
- Temporary set delimiter to *, as \t seems to be endline now in Qt
unc0rr
parents:
574
diff
changeset
|
29 |
char delimeter='*'; |
315 | 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 |
{ |
|
655
e58a77556878
- Temporary set delimiter to *, as \t seems to be endline now in Qt
unc0rr
parents:
574
diff
changeset
|
47 |
mynick = nick; |
315 | 48 |
NetSocket.connectToHost(hostName, port); |
49 |
} |
|
50 |
||
51 |
void HWNewNet::Disconnect() |
|
52 |
{ |
|
407 | 53 |
m_game_connected=false; |
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 + |
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
67 |
team.Grave + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
68 |
team.Fort + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
69 |
QString::number(team.difficulty) + delimeter + |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
70 |
team.HHName[0] + delimeter + team.HHName[1] + delimeter + |
315 | 71 |
team.HHName[2] + delimeter + team.HHName[3] + delimeter + team.HHName[4] + delimeter + |
72 |
team.HHName[5] + delimeter + team.HHName[6] + delimeter + team.HHName[7]); |
|
73 |
} |
|
74 |
||
347 | 75 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
76 |
{ |
|
77 |
RawSendNet(QString("REMOVETEAM:") + delimeter + team.TeamName); |
|
401 | 78 |
m_networkToLocalteams.remove(m_networkToLocalteams.key(team.TeamName)); |
347 | 79 |
} |
80 |
||
315 | 81 |
void HWNewNet::StartGame() |
82 |
{ |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
83 |
RawSendNet(QString("START:")); |
315 | 84 |
} |
85 |
||
86 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
87 |
{ |
|
88 |
QString msg = QString(buf.toBase64()); |
|
89 |
||
90 |
//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
|
91 |
RawSendNet(QString("GAMEMSG:%1%2").arg(delimeter).arg(msg)); |
315 | 92 |
} |
93 |
||
94 |
void HWNewNet::RawSendNet(const QString & str) |
|
95 |
{ |
|
96 |
RawSendNet(str.toUtf8()); |
|
97 |
} |
|
98 |
||
99 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
100 |
{ |
|
101 |
NetSocket.write(buf); |
|
102 |
NetSocket.write("\n", 1); |
|
103 |
} |
|
104 |
||
105 |
void HWNewNet::ClientRead() |
|
106 |
{ |
|
107 |
while (NetSocket.canReadLine()) { |
|
108 |
ParseLine(NetSocket.readLine().trimmed()); |
|
109 |
} |
|
110 |
} |
|
111 |
||
112 |
void HWNewNet::OnConnect() |
|
113 |
{ |
|
114 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
|
115 |
} |
|
116 |
||
117 |
void HWNewNet::OnDisconnect() |
|
118 |
{ |
|
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
119 |
//emit ChangeInTeams(QStringList()); |
383 | 120 |
if(m_game_connected) emit Disconnected(); |
121 |
m_game_connected=false; |
|
315 | 122 |
} |
123 |
||
124 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
125 |
{ |
|
126 |
switch (socketError) { |
|
127 |
case QAbstractSocket::RemoteHostClosedError: |
|
128 |
break; |
|
129 |
case QAbstractSocket::HostNotFoundError: |
|
130 |
QMessageBox::information(0, tr("Error"), |
|
131 |
tr("The host was not found. Please check the host name and port settings.")); |
|
132 |
break; |
|
133 |
case QAbstractSocket::ConnectionRefusedError: |
|
134 |
QMessageBox::information(0, tr("Error"), |
|
135 |
tr("Connection refused")); |
|
136 |
break; |
|
137 |
default: |
|
138 |
QMessageBox::information(0, tr("Error"), |
|
139 |
NetSocket.errorString()); |
|
140 |
} |
|
141 |
} |
|
142 |
||
143 |
void HWNewNet::ParseLine(const QByteArray & line) |
|
144 |
{ |
|
145 |
QString msg = QString::fromUtf8 (line.data(), line.size()); |
|
320 | 146 |
|
315 | 147 |
QStringList lst = msg.split(delimeter); |
148 |
if (lst[0] == "ERRONEUSNICKNAME") { |
|
149 |
QMessageBox::information(0, 0, "Your net nickname is in use or cannot be used"); |
|
150 |
return; |
|
151 |
} |
|
152 |
||
153 |
if (lst[0] == "CONNECTED") { |
|
383 | 154 |
m_game_connected=true; |
315 | 155 |
emit Connected(); |
156 |
emit EnteredGame(); |
|
157 |
return; |
|
158 |
} |
|
159 |
||
453 | 160 |
if (lst[0] == "CHAT_STRING") { |
161 |
lst.pop_front(); |
|
573 | 162 |
if(lst.size() < 2) |
163 |
{ |
|
164 |
qWarning("Net: Empty CHAT_STRING message"); |
|
165 |
return; |
|
166 |
} |
|
453 | 167 |
emit chatStringFromNet(lst); |
168 |
return; |
|
169 |
} |
|
170 |
||
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
171 |
if (lst[0] == "ADDTEAM:") { |
574 | 172 |
if(lst.size() < 14) |
173 |
{ |
|
174 |
qWarning("Net: Too short ADDTEAM message"); |
|
175 |
return; |
|
176 |
} |
|
315 | 177 |
lst.pop_front(); |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
178 |
emit AddNetTeam(lst); |
315 | 179 |
return; |
180 |
} |
|
181 |
||
347 | 182 |
if (lst[0] == "REMOVETEAM:") { |
573 | 183 |
if(lst.size() < 3) |
184 |
{ |
|
185 |
qWarning("Net: Bad REMOVETEAM message"); |
|
186 |
return; |
|
187 |
} |
|
352 | 188 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1], lst[2].toUInt())); |
347 | 189 |
return; |
190 |
} |
|
191 |
||
349 | 192 |
if(lst[0]=="SLAVE") { |
193 |
m_pGameCFGWidget->setEnabled(false); |
|
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
194 |
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
|
195 |
return; |
349 | 196 |
} |
197 |
||
455 | 198 |
if(lst[0]=="JOINED") { |
573 | 199 |
if(lst.size() < 2) |
200 |
{ |
|
201 |
qWarning("Net: Bad JOINED message"); |
|
202 |
return; |
|
203 |
} |
|
465 | 204 |
emit nickAdded(lst[1]); |
455 | 205 |
return; |
206 |
} |
|
207 |
||
461 | 208 |
if(lst[0]=="LEFT") { |
573 | 209 |
if(lst.size() < 2) |
210 |
{ |
|
211 |
qWarning("Net: Bad LEFT message"); |
|
212 |
return; |
|
213 |
} |
|
465 | 214 |
emit nickRemoved(lst[1]); |
461 | 215 |
return; |
216 |
} |
|
217 |
||
315 | 218 |
if (lst[0] == "CONFIGASKED") { |
334 | 219 |
isChief=true; |
315 | 220 |
ConfigAsked(); |
221 |
return; |
|
222 |
} |
|
320 | 223 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
224 |
if (lst[0] == "RUNGAME") { |
396 | 225 |
RunGame(); |
226 |
return; |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
227 |
} |
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
228 |
|
315 | 229 |
if (lst[0] == "CONFIGURED") { |
230 |
lst.pop_front(); |
|
573 | 231 |
if(lst.size() < 6) |
232 |
{ |
|
233 |
qWarning("Net: Bad CONFIGURED message"); |
|
234 |
return; |
|
235 |
} |
|
334 | 236 |
emit seedChanged(lst[0]); |
237 |
emit mapChanged(lst[1]); |
|
238 |
emit themeChanged(lst[2]); |
|
239 |
emit initHealthChanged(lst[3].toUInt()); |
|
240 |
emit turnTimeChanged(lst[4].toUInt()); |
|
444 | 241 |
emit fortsModeChanged(lst[5].toInt() != 0); |
315 | 242 |
return; |
243 |
} |
|
244 |
||
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
245 |
if(lst[0]=="TEAM_ACCEPTED") { |
573 | 246 |
if(lst.size() < 3) |
247 |
{ |
|
248 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
249 |
return; |
|
250 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
251 |
m_networkToLocalteams.insert(lst[2].toUInt(), lst[1]); |
373 | 252 |
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
|
253 |
return; |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
254 |
} |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
255 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
256 |
if (lst[0] == "CONFIG_PARAM") { |
573 | 257 |
if(lst.size() < 3) |
258 |
{ |
|
259 |
qWarning("Net: Bad CONFIG_PARAM message"); |
|
260 |
return; |
|
261 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
262 |
if (lst[1] == "SEED") { |
332 | 263 |
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
|
264 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
265 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
266 |
if (lst[1] == "MAP") { |
332 | 267 |
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
|
268 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
269 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
270 |
if (lst[1] == "THEME") { |
332 | 271 |
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
|
272 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
273 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
274 |
if (lst[1] == "HEALTH") { |
332 | 275 |
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
|
276 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
277 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
278 |
if (lst[1] == "TURNTIME") { |
332 | 279 |
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
|
280 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
281 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
282 |
if (lst[1] == "FORTSMODE") { |
332 | 283 |
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
|
284 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
285 |
} |
697 | 286 |
if (lst[1] == "AMMO") { |
287 |
emit ammoChanged(lst[2]); |
|
288 |
return; |
|
289 |
} |
|
401 | 290 |
QStringList hhTmpList=lst[1].split('+'); |
291 |
if (hhTmpList[0] == "TEAM_COLOR") { |
|
292 |
HWTeam tmptm(hhTmpList[1], hhTmpList[2].toUInt()); |
|
293 |
if(m_networkToLocalteams.find(hhTmpList[2].toUInt())!=m_networkToLocalteams.end()) { |
|
294 |
tmptm=HWTeam(hhTmpList[1]); // local team should be changed |
|
372 | 295 |
} |
401 | 296 |
tmptm.teamColor=QColor(lst[2]); |
372 | 297 |
emit teamColorChanged(tmptm); |
298 |
return; |
|
299 |
} |
|
401 | 300 |
if (hhTmpList[0] == "HHNUM") { |
399 | 301 |
HWTeam tmptm(hhTmpList[1], hhTmpList[2].toUInt()); |
302 |
if(m_networkToLocalteams.find(hhTmpList[2].toUInt())!=m_networkToLocalteams.end()) { |
|
303 |
tmptm=HWTeam(hhTmpList[1]); // local team should be changed |
|
304 |
} |
|
305 |
tmptm.numHedgehogs=lst[2].toUInt(); |
|
306 |
emit hhnumChanged(tmptm); |
|
307 |
return; |
|
308 |
} |
|
573 | 309 |
qWarning(QString("Net: Unknown 'CONFIG_PARAM' message: '%1'").arg(msg).toAscii().data()); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
310 |
return; |
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 |
|
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 |
// 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
|
315 |
// "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
|
316 |
if (lst[0] == "GAMEMSG:") { |
573 | 317 |
if(lst.size() < 2) |
318 |
{ |
|
319 |
qWarning("Net: Bad LEFT message"); |
|
320 |
return; |
|
321 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
322 |
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
|
323 |
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
|
324 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
325 |
} |
573 | 326 |
|
327 |
qWarning(QString("Net: Unknown message: '%1'").arg(msg).toAscii().data()); |
|
315 | 328 |
} |
329 |
||
330 |
||
331 |
void HWNewNet::ConfigAsked() |
|
332 |
{ |
|
574 | 333 |
QString map = m_pGameCFGWidget->getCurrentMap(); |
334 |
if (map.size()) |
|
335 |
onMapChanged(map); |
|
336 |
||
335 | 337 |
onSeedChanged(m_pGameCFGWidget->getCurrentSeed()); |
338 |
onThemeChanged(m_pGameCFGWidget->getCurrentTheme()); |
|
339 |
onInitHealthChanged(m_pGameCFGWidget->getInitHealth()); |
|
340 |
onTurnTimeChanged(m_pGameCFGWidget->getTurnTime()); |
|
444 | 341 |
onFortsModeChanged(m_pGameCFGWidget->getGameFlags() & 0x1); |
697 | 342 |
// always initialize with default ammo (also avoiding complicated cross-class dependencies) |
343 |
onWeaponsNameChanged(cDefaultAmmoStore->mid(10)); |
|
315 | 344 |
} |
345 |
||
346 |
void HWNewNet::RunGame() |
|
347 |
{ |
|
660 | 348 |
emit AskForRunGame(); |
431 | 349 |
} |
350 |
||
352 | 351 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
352 |
{ |
|
455 | 353 |
RawSendNet(QString("HHNUM%1%2%1%3%1%4").arg(delimeter).arg(team.TeamName)\ |
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
354 |
.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
|
355 |
.arg(team.numHedgehogs)); |
352 | 356 |
} |
357 |
||
372 | 358 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
359 |
{ |
|
401 | 360 |
RawSendNet(QString("CONFIG_PARAM%1TEAM_COLOR+%2+%3%1%4").arg(delimeter).arg(team.TeamName)\ |
372 | 361 |
.arg(team.getNetID() ? team.getNetID() : m_networkToLocalteams.key(team.TeamName))\ |
362 |
.arg(team.teamColor.name())); |
|
363 |
} |
|
364 |
||
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
365 |
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
|
366 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
367 |
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
|
368 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
369 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
370 |
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
|
371 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
372 |
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
|
373 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
374 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
375 |
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
|
376 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
377 |
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
|
378 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
379 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
380 |
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
|
381 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
382 |
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
|
383 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
384 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
385 |
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
|
386 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
387 |
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
|
388 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
389 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
390 |
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
|
391 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
392 |
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
|
393 |
} |
453 | 394 |
|
697 | 395 |
void HWNewNet::onWeaponsNameChanged(const QString& ammo) |
396 |
{ |
|
397 |
RawSendNet(QString("CONFIG_PARAM%1AMMO%1%2").arg(delimeter).arg(ammo)); |
|
398 |
} |
|
399 |
||
453 | 400 |
void HWNewNet::chatLineToNet(const QString& str) |
401 |
{ |
|
402 |
if(str!="") { |
|
403 |
RawSendNet(QString("CHAT_STRING")+delimeter+mynick+delimeter+str); |
|
404 |
emit(chatStringFromNet(QStringList(mynick) << str)); |
|
405 |
} |
|
406 |
} |