author | displacer |
Mon, 19 Feb 2007 15:31:40 +0000 | |
changeset 455 | 925891c52e40 |
parent 453 | 4b1236759402 |
child 461 | 105af110b0e6 |
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 |
{ |
|
407 | 54 |
m_game_connected=false; |
383 | 55 |
NetSocket.disconnectFromHost(); |
315 | 56 |
} |
57 |
||
58 |
void HWNewNet::JoinGame(const QString & game) |
|
59 |
{ |
|
60 |
RawSendNet(QString("JOIN %1").arg(game)); |
|
61 |
} |
|
62 |
||
63 |
void HWNewNet::AddTeam(const HWTeam & team) |
|
64 |
{ |
|
65 |
RawSendNet(QString("ADDTEAM:") + delimeter + |
|
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
66 |
team.TeamName + delimeter + |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
67 |
team.teamColor.name() + delimeter + |
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
68 |
team.Grave + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
69 |
team.Fort + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
70 |
QString::number(team.difficulty) + delimeter + |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
71 |
team.HHName[0] + delimeter + team.HHName[1] + delimeter + |
315 | 72 |
team.HHName[2] + delimeter + team.HHName[3] + delimeter + team.HHName[4] + delimeter + |
73 |
team.HHName[5] + delimeter + team.HHName[6] + delimeter + team.HHName[7]); |
|
74 |
} |
|
75 |
||
347 | 76 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
77 |
{ |
|
78 |
RawSendNet(QString("REMOVETEAM:") + delimeter + team.TeamName); |
|
401 | 79 |
m_networkToLocalteams.remove(m_networkToLocalteams.key(team.TeamName)); |
347 | 80 |
} |
81 |
||
315 | 82 |
void HWNewNet::StartGame() |
83 |
{ |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
84 |
RawSendNet(QString("START:")); |
315 | 85 |
} |
86 |
||
87 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
88 |
{ |
|
89 |
QString msg = QString(buf.toBase64()); |
|
90 |
||
91 |
//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
|
92 |
RawSendNet(QString("GAMEMSG:%1%2").arg(delimeter).arg(msg)); |
315 | 93 |
} |
94 |
||
95 |
void HWNewNet::RawSendNet(const QString & str) |
|
96 |
{ |
|
97 |
RawSendNet(str.toUtf8()); |
|
98 |
} |
|
99 |
||
100 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
101 |
{ |
|
102 |
NetSocket.write(buf); |
|
103 |
NetSocket.write("\n", 1); |
|
104 |
} |
|
105 |
||
106 |
void HWNewNet::ClientRead() |
|
107 |
{ |
|
108 |
while (NetSocket.canReadLine()) { |
|
109 |
ParseLine(NetSocket.readLine().trimmed()); |
|
110 |
} |
|
111 |
} |
|
112 |
||
113 |
void HWNewNet::OnConnect() |
|
114 |
{ |
|
115 |
RawSendNet(QString("USER") + delimeter + "hwgame 1 2 Hedgewars game"); |
|
116 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
|
117 |
} |
|
118 |
||
119 |
void HWNewNet::OnDisconnect() |
|
120 |
{ |
|
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
121 |
//emit ChangeInTeams(QStringList()); |
383 | 122 |
if(m_game_connected) emit Disconnected(); |
123 |
m_game_connected=false; |
|
315 | 124 |
} |
125 |
||
126 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
127 |
{ |
|
128 |
switch (socketError) { |
|
129 |
case QAbstractSocket::RemoteHostClosedError: |
|
130 |
break; |
|
131 |
case QAbstractSocket::HostNotFoundError: |
|
132 |
QMessageBox::information(0, tr("Error"), |
|
133 |
tr("The host was not found. Please check the host name and port settings.")); |
|
134 |
break; |
|
135 |
case QAbstractSocket::ConnectionRefusedError: |
|
136 |
QMessageBox::information(0, tr("Error"), |
|
137 |
tr("Connection refused")); |
|
138 |
break; |
|
139 |
default: |
|
140 |
QMessageBox::information(0, tr("Error"), |
|
141 |
NetSocket.errorString()); |
|
142 |
} |
|
143 |
} |
|
144 |
||
145 |
void HWNewNet::ParseLine(const QByteArray & line) |
|
146 |
{ |
|
147 |
QString msg = QString::fromUtf8 (line.data(), line.size()); |
|
320 | 148 |
|
315 | 149 |
QStringList lst = msg.split(delimeter); |
150 |
if (lst[0] == "ERRONEUSNICKNAME") { |
|
151 |
QMessageBox::information(0, 0, "Your net nickname is in use or cannot be used"); |
|
152 |
return; |
|
153 |
} |
|
154 |
||
155 |
if (lst[0] == "CONNECTED") { |
|
383 | 156 |
m_game_connected=true; |
315 | 157 |
emit Connected(); |
158 |
emit EnteredGame(); |
|
159 |
return; |
|
160 |
} |
|
161 |
||
453 | 162 |
if (lst[0] == "CHAT_STRING") { |
163 |
lst.pop_front(); |
|
164 |
if(lst.size() < 2) return; |
|
165 |
emit chatStringFromNet(lst); |
|
166 |
return; |
|
167 |
} |
|
168 |
||
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
169 |
if (lst[0] == "ADDTEAM:") { |
315 | 170 |
lst.pop_front(); |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
171 |
emit AddNetTeam(lst); |
315 | 172 |
return; |
173 |
} |
|
174 |
||
347 | 175 |
if (lst[0] == "REMOVETEAM:") { |
352 | 176 |
if(lst.size()<3) return; |
177 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1], lst[2].toUInt())); |
|
347 | 178 |
return; |
179 |
} |
|
180 |
||
349 | 181 |
if(lst[0]=="SLAVE") { |
182 |
m_pGameCFGWidget->setEnabled(false); |
|
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
183 |
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
|
184 |
return; |
349 | 185 |
} |
186 |
||
455 | 187 |
if(lst[0]=="JOINED") { |
188 |
if(lst.size()<2) return; |
|
189 |
qDebug() << "JOINED" << lst[1]; |
|
190 |
return; |
|
191 |
} |
|
192 |
||
315 | 193 |
if (lst[0] == "CONFIGASKED") { |
334 | 194 |
isChief=true; |
315 | 195 |
ConfigAsked(); |
196 |
return; |
|
197 |
} |
|
320 | 198 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
199 |
if (lst[0] == "RUNGAME") { |
396 | 200 |
RunGame(); |
201 |
return; |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
202 |
} |
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
203 |
|
315 | 204 |
if (lst[0] == "CONFIGURED") { |
205 |
lst.pop_front(); |
|
334 | 206 |
if(lst.size()<5) return; |
207 |
qDebug() << lst; |
|
208 |
emit seedChanged(lst[0]); |
|
209 |
emit mapChanged(lst[1]); |
|
210 |
emit themeChanged(lst[2]); |
|
211 |
emit initHealthChanged(lst[3].toUInt()); |
|
212 |
emit turnTimeChanged(lst[4].toUInt()); |
|
444 | 213 |
emit fortsModeChanged(lst[5].toInt() != 0); |
315 | 214 |
return; |
215 |
} |
|
216 |
||
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
217 |
if(lst[0]=="TEAM_ACCEPTED") { |
401 | 218 |
qDebug() << "accepted " << lst[2].toUInt() << " team"; |
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
219 |
m_networkToLocalteams.insert(lst[2].toUInt(), lst[1]); |
373 | 220 |
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
|
221 |
return; |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
222 |
} |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
223 |
|
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 |
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
|
225 |
if (lst[1] == "SEED") { |
332 | 226 |
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
|
227 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
228 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
229 |
if (lst[1] == "MAP") { |
332 | 230 |
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
|
231 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
232 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
233 |
if (lst[1] == "THEME") { |
332 | 234 |
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
|
235 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
236 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
237 |
if (lst[1] == "HEALTH") { |
332 | 238 |
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
|
239 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
240 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
241 |
if (lst[1] == "TURNTIME") { |
332 | 242 |
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
|
243 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
244 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
245 |
if (lst[1] == "FORTSMODE") { |
332 | 246 |
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
|
247 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
248 |
} |
401 | 249 |
QStringList hhTmpList=lst[1].split('+'); |
250 |
if (hhTmpList[0] == "TEAM_COLOR") { |
|
251 |
HWTeam tmptm(hhTmpList[1], hhTmpList[2].toUInt()); |
|
252 |
if(m_networkToLocalteams.find(hhTmpList[2].toUInt())!=m_networkToLocalteams.end()) { |
|
253 |
tmptm=HWTeam(hhTmpList[1]); // local team should be changed |
|
372 | 254 |
} |
401 | 255 |
tmptm.teamColor=QColor(lst[2]); |
372 | 256 |
emit teamColorChanged(tmptm); |
257 |
return; |
|
258 |
} |
|
401 | 259 |
if (hhTmpList[0] == "HHNUM") { |
399 | 260 |
HWTeam tmptm(hhTmpList[1], hhTmpList[2].toUInt()); |
261 |
if(m_networkToLocalteams.find(hhTmpList[2].toUInt())!=m_networkToLocalteams.end()) { |
|
262 |
tmptm=HWTeam(hhTmpList[1]); // local team should be changed |
|
263 |
} |
|
264 |
tmptm.numHedgehogs=lst[2].toUInt(); |
|
265 |
emit hhnumChanged(tmptm); |
|
266 |
return; |
|
267 |
} |
|
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 |
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
|
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 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
272 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
273 |
// 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
|
274 |
// "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
|
275 |
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
|
276 |
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
|
277 |
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
|
278 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
279 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
280 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
281 |
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
|
282 |
|
315 | 283 |
} |
284 |
||
285 |
||
286 |
void HWNewNet::ConfigAsked() |
|
287 |
{ |
|
335 | 288 |
onSeedChanged(m_pGameCFGWidget->getCurrentSeed()); |
289 |
onMapChanged(m_pGameCFGWidget->getCurrentMap()); |
|
290 |
onThemeChanged(m_pGameCFGWidget->getCurrentTheme()); |
|
291 |
onInitHealthChanged(m_pGameCFGWidget->getInitHealth()); |
|
292 |
onTurnTimeChanged(m_pGameCFGWidget->getTurnTime()); |
|
444 | 293 |
onFortsModeChanged(m_pGameCFGWidget->getGameFlags() & 0x1); |
315 | 294 |
} |
295 |
||
296 |
void HWNewNet::RunGame() |
|
297 |
{ |
|
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
298 |
HWGame* game = new HWGame(config, m_pGameCFGWidget, m_pTeamSelWidget); |
448 | 299 |
connect(game, SIGNAL(GameStateChanged(GameState)), this, SIGNAL(GameStateChanged(GameState))); |
315 | 300 |
connect(game, SIGNAL(SendNet(const QByteArray &)), this, SLOT(SendNet(const QByteArray &))); |
301 |
connect(this, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &))); |
|
302 |
connect(this, SIGNAL(LocalCFG(const QString &)), game, SLOT(LocalCFG(const QString &))); |
|
431 | 303 |
connect(game, SIGNAL(ErrorMessage(const QString &)), this, SLOT(ShowErrorMessage(const QString &)), Qt::QueuedConnection); |
315 | 304 |
game->StartNet(); |
305 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
306 |
|
431 | 307 |
void HWNewNet::ShowErrorMessage(const QString & msg) |
308 |
{ |
|
309 |
QMessageBox::warning(0, |
|
310 |
"Hedgewars", |
|
311 |
msg); |
|
312 |
} |
|
313 |
||
352 | 314 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
315 |
{ |
|
455 | 316 |
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
|
317 |
.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
|
318 |
.arg(team.numHedgehogs)); |
352 | 319 |
} |
320 |
||
372 | 321 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
322 |
{ |
|
323 |
qDebug() << team.getNetID() << ":" << team.teamColor.name(); |
|
401 | 324 |
RawSendNet(QString("CONFIG_PARAM%1TEAM_COLOR+%2+%3%1%4").arg(delimeter).arg(team.TeamName)\ |
372 | 325 |
.arg(team.getNetID() ? team.getNetID() : m_networkToLocalteams.key(team.TeamName))\ |
326 |
.arg(team.teamColor.name())); |
|
327 |
} |
|
328 |
||
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
329 |
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
|
330 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
331 |
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
|
332 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
333 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
334 |
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
|
335 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
336 |
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
|
337 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
338 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
339 |
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
|
340 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
341 |
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
|
342 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
343 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
344 |
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
|
345 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
346 |
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
|
347 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
348 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
349 |
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
|
350 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
351 |
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
|
352 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
353 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
354 |
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
|
355 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
356 |
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
|
357 |
} |
453 | 358 |
|
359 |
void HWNewNet::chatLineToNet(const QString& str) |
|
360 |
{ |
|
361 |
if(str!="") { |
|
362 |
RawSendNet(QString("CHAT_STRING")+delimeter+mynick+delimeter+str); |
|
363 |
emit(chatStringFromNet(QStringList(mynick) << str)); |
|
364 |
} |
|
365 |
} |