author | unc0rr |
Sun, 04 May 2008 14:21:47 +0000 | |
changeset 903 | d4e5d8cbe449 |
parent 884 | 99cc72c8a812 |
child 1066 | 1f1b3686a2b0 |
permissions | -rw-r--r-- |
315 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
883 | 3 |
* Copyright (c) 2006-2008 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 |
|
747 | 29 |
char delimeter=0x17; |
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); |
884 | 148 |
//qDebug() << "Parsing: " << lst; |
315 | 149 |
if (lst[0] == "ERRONEUSNICKNAME") { |
150 |
QMessageBox::information(0, 0, "Your net nickname is in use or cannot be used"); |
|
151 |
return; |
|
152 |
} |
|
153 |
||
154 |
if (lst[0] == "CONNECTED") { |
|
383 | 155 |
m_game_connected=true; |
315 | 156 |
emit Connected(); |
157 |
emit EnteredGame(); |
|
158 |
return; |
|
159 |
} |
|
160 |
||
453 | 161 |
if (lst[0] == "CHAT_STRING") { |
162 |
lst.pop_front(); |
|
573 | 163 |
if(lst.size() < 2) |
164 |
{ |
|
165 |
qWarning("Net: Empty CHAT_STRING message"); |
|
166 |
return; |
|
167 |
} |
|
453 | 168 |
emit chatStringFromNet(lst); |
169 |
return; |
|
170 |
} |
|
171 |
||
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
172 |
if (lst[0] == "ADDTEAM:") { |
574 | 173 |
if(lst.size() < 14) |
174 |
{ |
|
175 |
qWarning("Net: Too short ADDTEAM message"); |
|
176 |
return; |
|
177 |
} |
|
315 | 178 |
lst.pop_front(); |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
179 |
emit AddNetTeam(lst); |
315 | 180 |
return; |
181 |
} |
|
182 |
||
347 | 183 |
if (lst[0] == "REMOVETEAM:") { |
573 | 184 |
if(lst.size() < 3) |
185 |
{ |
|
186 |
qWarning("Net: Bad REMOVETEAM message"); |
|
187 |
return; |
|
188 |
} |
|
352 | 189 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1], lst[2].toUInt())); |
347 | 190 |
return; |
191 |
} |
|
192 |
||
349 | 193 |
if(lst[0]=="SLAVE") { |
194 |
m_pGameCFGWidget->setEnabled(false); |
|
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
195 |
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
|
196 |
return; |
349 | 197 |
} |
198 |
||
455 | 199 |
if(lst[0]=="JOINED") { |
573 | 200 |
if(lst.size() < 2) |
201 |
{ |
|
202 |
qWarning("Net: Bad JOINED message"); |
|
203 |
return; |
|
204 |
} |
|
465 | 205 |
emit nickAdded(lst[1]); |
455 | 206 |
return; |
207 |
} |
|
208 |
||
461 | 209 |
if(lst[0]=="LEFT") { |
573 | 210 |
if(lst.size() < 2) |
211 |
{ |
|
212 |
qWarning("Net: Bad LEFT message"); |
|
213 |
return; |
|
214 |
} |
|
465 | 215 |
emit nickRemoved(lst[1]); |
461 | 216 |
return; |
217 |
} |
|
218 |
||
315 | 219 |
if (lst[0] == "CONFIGASKED") { |
334 | 220 |
isChief=true; |
315 | 221 |
ConfigAsked(); |
222 |
return; |
|
223 |
} |
|
320 | 224 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
225 |
if (lst[0] == "RUNGAME") { |
396 | 226 |
RunGame(); |
227 |
return; |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
228 |
} |
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
229 |
|
315 | 230 |
if (lst[0] == "CONFIGURED") { |
231 |
lst.pop_front(); |
|
573 | 232 |
if(lst.size() < 6) |
233 |
{ |
|
234 |
qWarning("Net: Bad CONFIGURED message"); |
|
235 |
return; |
|
236 |
} |
|
334 | 237 |
emit seedChanged(lst[0]); |
238 |
emit mapChanged(lst[1]); |
|
239 |
emit themeChanged(lst[2]); |
|
240 |
emit initHealthChanged(lst[3].toUInt()); |
|
241 |
emit turnTimeChanged(lst[4].toUInt()); |
|
444 | 242 |
emit fortsModeChanged(lst[5].toInt() != 0); |
315 | 243 |
return; |
244 |
} |
|
245 |
||
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
246 |
if(lst[0]=="TEAM_ACCEPTED") { |
573 | 247 |
if(lst.size() < 3) |
248 |
{ |
|
249 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
250 |
return; |
|
251 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
252 |
m_networkToLocalteams.insert(lst[2].toUInt(), lst[1]); |
373 | 253 |
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
|
254 |
return; |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
255 |
} |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
256 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
257 |
if (lst[0] == "CONFIG_PARAM") { |
573 | 258 |
if(lst.size() < 3) |
259 |
{ |
|
260 |
qWarning("Net: Bad CONFIG_PARAM message"); |
|
261 |
return; |
|
262 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
263 |
if (lst[1] == "SEED") { |
332 | 264 |
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
|
265 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
266 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
267 |
if (lst[1] == "MAP") { |
332 | 268 |
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
|
269 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
270 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
271 |
if (lst[1] == "THEME") { |
332 | 272 |
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
|
273 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
274 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
275 |
if (lst[1] == "HEALTH") { |
332 | 276 |
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
|
277 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
278 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
279 |
if (lst[1] == "TURNTIME") { |
332 | 280 |
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
|
281 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
282 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
283 |
if (lst[1] == "FORTSMODE") { |
332 | 284 |
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
|
285 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
286 |
} |
697 | 287 |
if (lst[1] == "AMMO") { |
703 | 288 |
if(lst.size() < 4) return; |
289 |
emit ammoChanged(lst[3], lst[2]); |
|
697 | 290 |
return; |
291 |
} |
|
401 | 292 |
QStringList hhTmpList=lst[1].split('+'); |
293 |
if (hhTmpList[0] == "TEAM_COLOR") { |
|
294 |
HWTeam tmptm(hhTmpList[1], hhTmpList[2].toUInt()); |
|
295 |
if(m_networkToLocalteams.find(hhTmpList[2].toUInt())!=m_networkToLocalteams.end()) { |
|
296 |
tmptm=HWTeam(hhTmpList[1]); // local team should be changed |
|
372 | 297 |
} |
401 | 298 |
tmptm.teamColor=QColor(lst[2]); |
372 | 299 |
emit teamColorChanged(tmptm); |
300 |
return; |
|
301 |
} |
|
401 | 302 |
if (hhTmpList[0] == "HHNUM") { |
399 | 303 |
HWTeam tmptm(hhTmpList[1], hhTmpList[2].toUInt()); |
304 |
if(m_networkToLocalteams.find(hhTmpList[2].toUInt())!=m_networkToLocalteams.end()) { |
|
305 |
tmptm=HWTeam(hhTmpList[1]); // local team should be changed |
|
306 |
} |
|
307 |
tmptm.numHedgehogs=lst[2].toUInt(); |
|
308 |
emit hhnumChanged(tmptm); |
|
309 |
return; |
|
310 |
} |
|
573 | 311 |
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
|
312 |
return; |
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 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
316 |
// 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
|
317 |
// "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
|
318 |
if (lst[0] == "GAMEMSG:") { |
573 | 319 |
if(lst.size() < 2) |
320 |
{ |
|
321 |
qWarning("Net: Bad LEFT message"); |
|
322 |
return; |
|
323 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
324 |
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
|
325 |
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
|
326 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
327 |
} |
573 | 328 |
|
329 |
qWarning(QString("Net: Unknown message: '%1'").arg(msg).toAscii().data()); |
|
315 | 330 |
} |
331 |
||
332 |
||
333 |
void HWNewNet::ConfigAsked() |
|
334 |
{ |
|
574 | 335 |
QString map = m_pGameCFGWidget->getCurrentMap(); |
336 |
if (map.size()) |
|
337 |
onMapChanged(map); |
|
338 |
||
335 | 339 |
onSeedChanged(m_pGameCFGWidget->getCurrentSeed()); |
340 |
onThemeChanged(m_pGameCFGWidget->getCurrentTheme()); |
|
341 |
onInitHealthChanged(m_pGameCFGWidget->getInitHealth()); |
|
342 |
onTurnTimeChanged(m_pGameCFGWidget->getTurnTime()); |
|
444 | 343 |
onFortsModeChanged(m_pGameCFGWidget->getGameFlags() & 0x1); |
697 | 344 |
// always initialize with default ammo (also avoiding complicated cross-class dependencies) |
703 | 345 |
onWeaponsNameChanged("Default", cDefaultAmmoStore->mid(10)); |
315 | 346 |
} |
347 |
||
348 |
void HWNewNet::RunGame() |
|
349 |
{ |
|
660 | 350 |
emit AskForRunGame(); |
431 | 351 |
} |
352 |
||
352 | 353 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
354 |
{ |
|
455 | 355 |
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
|
356 |
.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
|
357 |
.arg(team.numHedgehogs)); |
352 | 358 |
} |
359 |
||
372 | 360 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
361 |
{ |
|
401 | 362 |
RawSendNet(QString("CONFIG_PARAM%1TEAM_COLOR+%2+%3%1%4").arg(delimeter).arg(team.TeamName)\ |
372 | 363 |
.arg(team.getNetID() ? team.getNetID() : m_networkToLocalteams.key(team.TeamName))\ |
364 |
.arg(team.teamColor.name())); |
|
365 |
} |
|
366 |
||
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
367 |
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
|
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 |
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
|
370 |
} |
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 |
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
|
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 |
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
|
375 |
} |
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 |
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
|
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 |
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
|
380 |
} |
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 |
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
|
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 |
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
|
385 |
} |
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 |
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
|
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 |
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
|
390 |
} |
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 |
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
|
393 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
394 |
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
|
395 |
} |
453 | 396 |
|
703 | 397 |
void HWNewNet::onWeaponsNameChanged(const QString& name, const QString& ammo) |
697 | 398 |
{ |
703 | 399 |
RawSendNet(QString("CONFIG_PARAM%1AMMO%1%2%1%3").arg(delimeter).arg(ammo).arg(name)); |
697 | 400 |
} |
401 |
||
453 | 402 |
void HWNewNet::chatLineToNet(const QString& str) |
403 |
{ |
|
404 |
if(str!="") { |
|
405 |
RawSendNet(QString("CHAT_STRING")+delimeter+mynick+delimeter+str); |
|
406 |
emit(chatStringFromNet(QStringList(mynick) << str)); |
|
407 |
} |
|
408 |
} |