author | displacer |
Wed, 14 Feb 2007 22:15:55 +0000 | |
changeset 443 | eec37eb7f5db |
parent 431 | 79ac59673df3 |
child 444 | e3aaa862a28e |
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 |
||
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
162 |
if (lst[0] == "ADDTEAM:") { |
315 | 163 |
lst.pop_front(); |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
164 |
emit AddNetTeam(lst); |
315 | 165 |
return; |
166 |
} |
|
167 |
||
347 | 168 |
if (lst[0] == "REMOVETEAM:") { |
352 | 169 |
if(lst.size()<3) return; |
170 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1], lst[2].toUInt())); |
|
347 | 171 |
return; |
172 |
} |
|
173 |
||
349 | 174 |
if(lst[0]=="SLAVE") { |
175 |
m_pGameCFGWidget->setEnabled(false); |
|
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
176 |
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
|
177 |
return; |
349 | 178 |
} |
179 |
||
315 | 180 |
if (lst[0] == "CONFIGASKED") { |
334 | 181 |
isChief=true; |
315 | 182 |
ConfigAsked(); |
183 |
return; |
|
184 |
} |
|
320 | 185 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
186 |
if (lst[0] == "RUNGAME") { |
396 | 187 |
RunGame(); |
188 |
return; |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
189 |
} |
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
190 |
|
315 | 191 |
if (lst[0] == "CONFIGURED") { |
192 |
lst.pop_front(); |
|
334 | 193 |
if(lst.size()<5) return; |
194 |
qDebug() << lst; |
|
195 |
emit seedChanged(lst[0]); |
|
196 |
emit mapChanged(lst[1]); |
|
197 |
emit themeChanged(lst[2]); |
|
198 |
emit initHealthChanged(lst[3].toUInt()); |
|
199 |
emit turnTimeChanged(lst[4].toUInt()); |
|
200 |
//emit fortsModeChanged(lst[5].toInt() != 0); // FIXME: add a getFortsMode in ConfigAsked |
|
315 | 201 |
return; |
202 |
} |
|
203 |
||
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
204 |
if(lst[0]=="TEAM_ACCEPTED") { |
401 | 205 |
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
|
206 |
m_networkToLocalteams.insert(lst[2].toUInt(), lst[1]); |
373 | 207 |
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
|
208 |
return; |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
209 |
} |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
210 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
211 |
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
|
212 |
if (lst[1] == "SEED") { |
332 | 213 |
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
|
214 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
215 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
216 |
if (lst[1] == "MAP") { |
332 | 217 |
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
|
218 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
219 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
220 |
if (lst[1] == "THEME") { |
332 | 221 |
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
|
222 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
223 |
} |
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[1] == "HEALTH") { |
332 | 225 |
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
|
226 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
227 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
228 |
if (lst[1] == "TURNTIME") { |
332 | 229 |
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
|
230 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
231 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
232 |
if (lst[1] == "FORTSMODE") { |
332 | 233 |
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
|
234 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
235 |
} |
401 | 236 |
QStringList hhTmpList=lst[1].split('+'); |
237 |
if (hhTmpList[0] == "TEAM_COLOR") { |
|
238 |
HWTeam tmptm(hhTmpList[1], hhTmpList[2].toUInt()); |
|
239 |
if(m_networkToLocalteams.find(hhTmpList[2].toUInt())!=m_networkToLocalteams.end()) { |
|
240 |
tmptm=HWTeam(hhTmpList[1]); // local team should be changed |
|
372 | 241 |
} |
401 | 242 |
tmptm.teamColor=QColor(lst[2]); |
372 | 243 |
emit teamColorChanged(tmptm); |
244 |
return; |
|
245 |
} |
|
401 | 246 |
if (hhTmpList[0] == "HHNUM") { |
399 | 247 |
qDebug() << "NEW HHNUM!"; |
248 |
HWTeam tmptm(hhTmpList[1], hhTmpList[2].toUInt()); |
|
249 |
if(m_networkToLocalteams.find(hhTmpList[2].toUInt())!=m_networkToLocalteams.end()) { |
|
250 |
tmptm=HWTeam(hhTmpList[1]); // local team should be changed |
|
251 |
} |
|
252 |
tmptm.numHedgehogs=lst[2].toUInt(); |
|
253 |
emit hhnumChanged(tmptm); |
|
254 |
return; |
|
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 |
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
|
257 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
258 |
} |
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 |
// 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
|
262 |
// "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
|
263 |
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
|
264 |
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
|
265 |
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
|
266 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
267 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
268 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
269 |
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
|
270 |
|
315 | 271 |
} |
272 |
||
273 |
||
274 |
void HWNewNet::ConfigAsked() |
|
275 |
{ |
|
335 | 276 |
onSeedChanged(m_pGameCFGWidget->getCurrentSeed()); |
277 |
onMapChanged(m_pGameCFGWidget->getCurrentMap()); |
|
278 |
onThemeChanged(m_pGameCFGWidget->getCurrentTheme()); |
|
279 |
onInitHealthChanged(m_pGameCFGWidget->getInitHealth()); |
|
280 |
onTurnTimeChanged(m_pGameCFGWidget->getTurnTime()); |
|
315 | 281 |
} |
282 |
||
283 |
void HWNewNet::RunGame() |
|
284 |
{ |
|
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
285 |
HWGame* game = new HWGame(config, m_pGameCFGWidget, m_pTeamSelWidget); |
315 | 286 |
connect(game, SIGNAL(SendNet(const QByteArray &)), this, SLOT(SendNet(const QByteArray &))); |
287 |
connect(this, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &))); |
|
288 |
connect(this, SIGNAL(LocalCFG(const QString &)), game, SLOT(LocalCFG(const QString &))); |
|
431 | 289 |
connect(game, SIGNAL(ErrorMessage(const QString &)), this, SLOT(ShowErrorMessage(const QString &)), Qt::QueuedConnection); |
315 | 290 |
game->StartNet(); |
291 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
292 |
|
431 | 293 |
void HWNewNet::ShowErrorMessage(const QString & msg) |
294 |
{ |
|
295 |
QMessageBox::warning(0, |
|
296 |
"Hedgewars", |
|
297 |
msg); |
|
298 |
} |
|
299 |
||
352 | 300 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
301 |
{ |
|
302 |
qDebug() << team.getNetID() << ":" << team.numHedgehogs; |
|
399 | 303 |
RawSendNet(QString("CONFIG_PARAM%1HHNUM+%2+%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
|
304 |
.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
|
305 |
.arg(team.numHedgehogs)); |
352 | 306 |
} |
307 |
||
372 | 308 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
309 |
{ |
|
310 |
qDebug() << team.getNetID() << ":" << team.teamColor.name(); |
|
401 | 311 |
RawSendNet(QString("CONFIG_PARAM%1TEAM_COLOR+%2+%3%1%4").arg(delimeter).arg(team.TeamName)\ |
372 | 312 |
.arg(team.getNetID() ? team.getNetID() : m_networkToLocalteams.key(team.TeamName))\ |
313 |
.arg(team.teamColor.name())); |
|
314 |
} |
|
315 |
||
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
316 |
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
|
317 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
318 |
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
|
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 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
321 |
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
|
322 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
323 |
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
|
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 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
326 |
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
|
327 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
328 |
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
|
329 |
} |
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 |
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
|
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 |
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
|
334 |
} |
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 |
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
|
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 |
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
|
339 |
} |
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 |
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
|
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 |
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
|
344 |
} |