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