author | unc0rr |
Mon, 03 Nov 2008 11:28:41 +0000 | |
changeset 1466 | c68b0a0969d3 |
parent 1462 | d3323637da1f |
child 1471 | b5295ec49e94 |
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> |
|
1189
f66cdbbfc4b6
Fix compile under Ubuntu (why it compiles everywhere else?)
unc0rr
parents:
1083
diff
changeset
|
20 |
#include <QDebug> |
315 | 21 |
|
697 | 22 |
#include "hwconsts.h" |
315 | 23 |
#include "newnetclient.h" |
24 |
#include "proto.h" |
|
25 |
#include "gameuiconfig.h" |
|
26 |
#include "game.h" |
|
334 | 27 |
#include "gamecfgwidget.h" |
347 | 28 |
#include "teamselect.h" |
315 | 29 |
|
1082 | 30 |
char delimeter='\n'; |
315 | 31 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
32 |
HWNewNet::HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget) : |
334 | 33 |
config(config), |
34 |
m_pGameCFGWidget(pGameCFGWidget), |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
35 |
m_pTeamSelWidget(pTeamSelWidget), |
383 | 36 |
isChief(false), |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
37 |
m_game_connected(false), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
38 |
loginStep(0), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
39 |
netClientState(0) |
315 | 40 |
{ |
1418 | 41 |
connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead())); |
42 |
connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect())); |
|
43 |
connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect())); |
|
44 |
connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, |
|
45 |
SLOT(displayError(QAbstractSocket::SocketError))); |
|
315 | 46 |
} |
47 |
||
48 |
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
|
49 |
{ |
|
1418 | 50 |
mynick = nick; |
51 |
NetSocket.connectToHost(hostName, port); |
|
315 | 52 |
} |
53 |
||
54 |
void HWNewNet::Disconnect() |
|
55 |
{ |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
56 |
if (m_game_connected) |
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
57 |
RawSendNet(QString("QUIT")); |
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
58 |
m_game_connected = false; |
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
59 |
NetSocket.disconnectFromHost(); |
315 | 60 |
} |
61 |
||
1082 | 62 |
void HWNewNet::CreateRoom(const QString & room) |
315 | 63 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
64 |
if(netClientState != 2) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
65 |
{ |
1321 | 66 |
qWarning("Illegal try to create room!"); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
67 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
68 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
69 |
|
1082 | 70 |
RawSendNet(QString("CREATE%1%2").arg(delimeter).arg(room)); |
1336
4e88eccbe7f6
Fix team colors mismatch on some conditions (just synchronize them when team is added)
unc0rr
parents:
1333
diff
changeset
|
71 |
m_pGameCFGWidget->setEnabled(true); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
72 |
isChief = true; |
1082 | 73 |
} |
74 |
||
75 |
void HWNewNet::JoinRoom(const QString & room) |
|
76 |
{ |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
77 |
if(netClientState != 2) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
78 |
{ |
1321 | 79 |
qWarning("Illegal try to join room!"); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
80 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
81 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
82 |
|
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
83 |
loginStep++; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
84 |
|
1082 | 85 |
RawSendNet(QString("JOIN%1%2").arg(delimeter).arg(room)); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
86 |
m_pGameCFGWidget->setEnabled(false); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
87 |
m_pTeamSelWidget->setNonInteractive(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
88 |
isChief = false; |
315 | 89 |
} |
90 |
||
91 |
void HWNewNet::AddTeam(const HWTeam & team) |
|
92 |
{ |
|
1327 | 93 |
QString cmd = QString("ADD_TEAM") + delimeter + |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
94 |
team.TeamName + delimeter + |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
95 |
team.teamColor.name() + delimeter + |
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
96 |
team.Grave + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
97 |
team.Fort + delimeter + |
1245
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
98 |
QString::number(team.difficulty); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
99 |
|
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
100 |
for(int i = 0; i < 8; ++i) |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
101 |
{ |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
102 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
103 |
cmd.append(team.HHName[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
104 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
105 |
cmd.append(team.HHHat[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
106 |
} |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
107 |
RawSendNet(cmd); |
315 | 108 |
} |
109 |
||
347 | 110 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
111 |
{ |
|
1329 | 112 |
RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName); |
347 | 113 |
} |
114 |
||
1404 | 115 |
void HWNewNet::ToggleReady() |
315 | 116 |
{ |
1404 | 117 |
RawSendNet(QString("TOGGLE_READY")); |
315 | 118 |
} |
119 |
||
120 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
121 |
{ |
|
122 |
QString msg = QString(buf.toBase64()); |
|
123 |
||
1311 | 124 |
RawSendNet(QString("GAMEMSG%1%2").arg(delimeter).arg(msg)); |
315 | 125 |
} |
126 |
||
127 |
void HWNewNet::RawSendNet(const QString & str) |
|
128 |
{ |
|
129 |
RawSendNet(str.toUtf8()); |
|
130 |
} |
|
131 |
||
132 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
133 |
{ |
|
1369 | 134 |
//qDebug() << "Client: " << QString(buf).split("\n"); |
135 |
NetSocket.write(buf); |
|
136 |
NetSocket.write("\n\n", 2); |
|
315 | 137 |
} |
138 |
||
139 |
void HWNewNet::ClientRead() |
|
140 |
{ |
|
1082 | 141 |
while (NetSocket.canReadLine()) { |
142 |
QString s = QString::fromUtf8(NetSocket.readLine().trimmed()); |
|
143 |
||
144 |
if (s.size() == 0) { |
|
145 |
ParseCmd(cmdbuf); |
|
146 |
cmdbuf.clear(); |
|
147 |
} else |
|
148 |
cmdbuf << s; |
|
149 |
} |
|
315 | 150 |
} |
151 |
||
152 |
void HWNewNet::OnConnect() |
|
153 |
{ |
|
1310 | 154 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
155 |
RawSendNet(QString("PROTO%1%2").arg(delimeter).arg(*cProtoVer)); |
|
315 | 156 |
} |
157 |
||
158 |
void HWNewNet::OnDisconnect() |
|
159 |
{ |
|
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
160 |
//emit ChangeInTeams(QStringList()); |
383 | 161 |
if(m_game_connected) emit Disconnected(); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
162 |
m_game_connected = false; |
315 | 163 |
} |
164 |
||
165 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
166 |
{ |
|
1302 | 167 |
switch (socketError) { |
168 |
case QAbstractSocket::RemoteHostClosedError: |
|
169 |
break; |
|
170 |
case QAbstractSocket::HostNotFoundError: |
|
171 |
QMessageBox::information(0, tr("Error"), |
|
172 |
tr("The host was not found. Please check the host name and port settings.")); |
|
173 |
break; |
|
174 |
case QAbstractSocket::ConnectionRefusedError: |
|
175 |
QMessageBox::information(0, tr("Error"), |
|
176 |
tr("Connection refused")); |
|
177 |
break; |
|
178 |
default: |
|
179 |
QMessageBox::information(0, tr("Error"), |
|
180 |
NetSocket.errorString()); |
|
181 |
} |
|
315 | 182 |
} |
183 |
||
1082 | 184 |
void HWNewNet::ParseCmd(const QStringList & lst) |
315 | 185 |
{ |
1385 | 186 |
//qDebug() << "Server: " << lst; |
1305 | 187 |
|
188 |
if(!lst.size()) |
|
189 |
{ |
|
190 |
qWarning("Net client: Bad message"); |
|
191 |
return; |
|
192 |
} |
|
320 | 193 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
194 |
if ((lst[0] == "NICK") || (lst[0] == "PROTO")) |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
195 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
196 |
loginStep++; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
197 |
if (loginStep == 2) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
198 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
199 |
netClientState = 2; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
200 |
RawSendNet(QString("LIST")); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
201 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
202 |
return ; |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
203 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
204 |
|
1305 | 205 |
if (lst[0] == "ERROR") { |
206 |
if (lst.size() == 2) |
|
1307 | 207 |
QMessageBox::information(0, 0, "Error: " + lst[1]); |
1305 | 208 |
else |
209 |
QMessageBox::information(0, 0, "Unknown error"); |
|
210 |
return; |
|
211 |
} |
|
315 | 212 |
|
1307 | 213 |
if (lst[0] == "WARNING") { |
214 |
if (lst.size() == 2) |
|
215 |
QMessageBox::information(0, 0, "Warning: " + lst[1]); |
|
216 |
else |
|
217 |
QMessageBox::information(0, 0, "Unknown warning"); |
|
218 |
return; |
|
219 |
} |
|
220 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
221 |
if (lst[0] == "CONNECTED") { |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
222 |
netClientState = 1; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
223 |
m_game_connected = true; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
224 |
emit Connected(); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
225 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
226 |
} |
315 | 227 |
|
1462 | 228 |
if (lst[0] == "PING") { |
229 |
RawSendNet(QString("PONG")); |
|
230 |
return; |
|
231 |
} |
|
232 |
||
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
233 |
if (lst[0] == "ROOMS") { |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
234 |
QStringList tmp = lst; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
235 |
tmp.removeFirst(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
236 |
emit roomsList(tmp); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
237 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
238 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
239 |
|
1377 | 240 |
if (lst[0] == "SERVER_MESSAGE") { |
241 |
if(lst.size() < 2) |
|
242 |
{ |
|
243 |
qWarning("Net: Empty SERVERMESSAGE message"); |
|
244 |
return; |
|
245 |
} |
|
246 |
emit serverMessage(lst[1]); |
|
247 |
return; |
|
248 |
} |
|
249 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
250 |
if (lst[0] == "CHAT_STRING") { |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
251 |
if(lst.size() < 3) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
252 |
{ |
1377 | 253 |
qWarning("Net: Empty CHAT_STRING message"); |
254 |
return; |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
255 |
} |
1378 | 256 |
emit chatStringFromNet(formatChatMsg(lst[1], lst[2])); |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
257 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
258 |
} |
453 | 259 |
|
1405 | 260 |
if (lst[0] == "READY") { |
261 |
if(lst.size() != 2) |
|
262 |
{ |
|
263 |
qWarning("Net: Malformed READY message"); |
|
264 |
return; |
|
265 |
} |
|
266 |
emit setReadyStatus(lst[1], true); |
|
267 |
return; |
|
268 |
} |
|
269 |
if (lst[0] == "NOT_READY") { |
|
270 |
if(lst.size() != 2) |
|
271 |
{ |
|
272 |
qWarning("Net: Malformed NOT_READY message"); |
|
273 |
return; |
|
274 |
} |
|
275 |
emit setReadyStatus(lst[1], false); |
|
276 |
return; |
|
277 |
} |
|
278 |
||
1325 | 279 |
if (lst[0] == "ADD_TEAM") { |
280 |
if(lst.size() != 21) |
|
1321 | 281 |
{ |
1325 | 282 |
qWarning("Net: Bad ADDTEAM message"); |
1321 | 283 |
return; |
284 |
} |
|
285 |
QStringList tmp = lst; |
|
286 |
tmp.removeFirst(); |
|
287 |
emit AddNetTeam(tmp); |
|
288 |
return; |
|
289 |
} |
|
315 | 290 |
|
1338 | 291 |
if (lst[0] == "REMOVE_TEAM") { |
292 |
if(lst.size() != 2) |
|
293 |
{ |
|
294 |
qWarning("Net: Bad REMOVETEAM message"); |
|
295 |
return; |
|
296 |
} |
|
297 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1])); |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
298 |
if (netClientState == 5) // we're in game, need to tell the engine about this |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
299 |
{ |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
300 |
QByteArray em; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
301 |
HWProto::addStringToBuffer(em, "F" + lst[1]); |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
302 |
emit FromNet(em); |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
303 |
} |
1338 | 304 |
return; |
305 |
} |
|
347 | 306 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
307 |
if(lst[0]=="JOINED") { |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
308 |
if(lst.size() < 2) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
309 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
310 |
qWarning("Net: Bad JOINED message"); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
311 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
312 |
} |
1311 | 313 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
314 |
for(int i = 1; i < lst.size(); ++i) |
1311 | 315 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
316 |
if (lst[i] == mynick) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
317 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
318 |
netClientState = 3; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
319 |
emit EnteredGame(); |
1316 | 320 |
if (isChief) |
321 |
ConfigAsked(); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
322 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
323 |
emit nickAdded(lst[i]); |
1378 | 324 |
emit chatStringFromNet(QString(tr("*** %1 joined")).arg(lst[i])); |
1311 | 325 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
326 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
327 |
} |
455 | 328 |
|
1325 | 329 |
if(lst[0] == "LEFT") { |
1310 | 330 |
if(lst.size() < 2) |
331 |
{ |
|
332 |
qWarning("Net: Bad LEFT message"); |
|
333 |
return; |
|
334 |
} |
|
335 |
emit nickRemoved(lst[1]); |
|
1378 | 336 |
emit chatStringFromNet(QString(tr("*** %1 left")).arg(lst[1])); |
1310 | 337 |
return; |
338 |
} |
|
461 | 339 |
|
1338 | 340 |
if (lst[0] == "RUN_GAME") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
341 |
netClientState = 5; |
1325 | 342 |
RunGame(); |
343 |
return; |
|
344 |
} |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
345 |
|
1325 | 346 |
if (lst[0] == "TEAM_ACCEPTED") { |
347 |
if (lst.size() != 2) |
|
348 |
{ |
|
349 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
350 |
return; |
|
351 |
} |
|
352 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
|
353 |
return; |
|
354 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
355 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
356 |
if (lst[0] == "MAP") { |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
357 |
if (lst.size() != 2) |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
358 |
{ |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
359 |
qWarning("Net: Bad MAP message"); |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
360 |
return; |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
361 |
} |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
362 |
emit mapChanged(lst[1]); |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
363 |
return; |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
364 |
} |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
365 |
|
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
366 |
|
1319 | 367 |
if (lst[0] == "CONFIG_PARAM") { |
368 |
if(lst.size() < 3) |
|
369 |
{ |
|
370 |
qWarning("Net: Bad CONFIG_PARAM message"); |
|
371 |
return; |
|
372 |
} |
|
373 |
if (lst[1] == "SEED") { |
|
374 |
emit seedChanged(lst[2]); |
|
375 |
return; |
|
376 |
} |
|
377 |
if (lst[1] == "THEME") { |
|
378 |
emit themeChanged(lst[2]); |
|
379 |
return; |
|
380 |
} |
|
381 |
if (lst[1] == "HEALTH") { |
|
382 |
emit initHealthChanged(lst[2].toUInt()); |
|
383 |
return; |
|
384 |
} |
|
385 |
if (lst[1] == "TURNTIME") { |
|
386 |
emit turnTimeChanged(lst[2].toUInt()); |
|
387 |
return; |
|
388 |
} |
|
389 |
if (lst[1] == "FORTSMODE") { |
|
390 |
emit fortsModeChanged(lst[2].toInt() != 0); |
|
391 |
return; |
|
392 |
} |
|
1427 | 393 |
if (lst[1] == "DIVIDETEAMS") { |
394 |
emit teamsDivideChanged(lst[2].toInt() != 0); |
|
395 |
return; |
|
396 |
} |
|
1319 | 397 |
if (lst[1] == "AMMO") { |
398 |
if(lst.size() < 4) return; |
|
399 |
emit ammoChanged(lst[3], lst[2]); |
|
400 |
return; |
|
401 |
} |
|
402 |
qWarning() << "Net: Unknown 'CONFIG_PARAM' message:" << lst; |
|
403 |
return; |
|
697 | 404 |
} |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
405 |
|
1327 | 406 |
if (lst[0] == "HH_NUM") { |
407 |
if (lst.size() != 3) |
|
408 |
{ |
|
409 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
410 |
return; |
|
411 |
} |
|
412 |
HWTeam tmptm(lst[1]); |
|
413 |
tmptm.numHedgehogs = lst[2].toUInt(); |
|
414 |
emit hhnumChanged(tmptm); |
|
415 |
return; |
|
416 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
417 |
|
1330 | 418 |
if (lst[0] == "TEAM_COLOR") { |
419 |
if (lst.size() != 3) |
|
420 |
{ |
|
421 |
qWarning("Net: Bad TEAM_COLOR message"); |
|
422 |
return; |
|
423 |
} |
|
424 |
HWTeam tmptm(lst[1]); |
|
425 |
tmptm.teamColor = QColor(lst[2]); |
|
426 |
emit teamColorChanged(tmptm); |
|
427 |
return; |
|
428 |
} |
|
429 |
||
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
430 |
if (lst[0] == "GAMEMSG") { |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
431 |
if(lst.size() < 2) |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
432 |
{ |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
433 |
qWarning("Net: Bad GAMEMSG message"); |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
434 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
435 |
} |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
436 |
QByteArray em = QByteArray::fromBase64(lst[1].toAscii()); |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
437 |
emit FromNet(em); |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
438 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
439 |
} |
573 | 440 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
441 |
qWarning() << "Net: Unknown message:" << lst; |
315 | 442 |
} |
443 |
||
444 |
||
445 |
void HWNewNet::ConfigAsked() |
|
446 |
{ |
|
1310 | 447 |
QString map = m_pGameCFGWidget->getCurrentMap(); |
448 |
if (map.size()) |
|
449 |
onMapChanged(map); |
|
574 | 450 |
|
1310 | 451 |
onSeedChanged(m_pGameCFGWidget->getCurrentSeed()); |
452 |
onThemeChanged(m_pGameCFGWidget->getCurrentTheme()); |
|
453 |
onInitHealthChanged(m_pGameCFGWidget->getInitHealth()); |
|
454 |
onTurnTimeChanged(m_pGameCFGWidget->getTurnTime()); |
|
455 |
onFortsModeChanged(m_pGameCFGWidget->getGameFlags() & 0x1); |
|
456 |
// always initialize with default ammo (also avoiding complicated cross-class dependencies) |
|
457 |
onWeaponsNameChanged("Default", cDefaultAmmoStore->mid(10)); |
|
315 | 458 |
} |
459 |
||
460 |
void HWNewNet::RunGame() |
|
461 |
{ |
|
1310 | 462 |
emit AskForRunGame(); |
431 | 463 |
} |
464 |
||
352 | 465 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
466 |
{ |
|
1330 | 467 |
if (isChief) |
1327 | 468 |
RawSendNet(QString("HH_NUM%1%2%1%3") |
1324 | 469 |
.arg(delimeter) |
470 |
.arg(team.TeamName) |
|
1321 | 471 |
.arg(team.numHedgehogs)); |
352 | 472 |
} |
473 |
||
372 | 474 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
475 |
{ |
|
1330 | 476 |
if (isChief) |
477 |
RawSendNet(QString("TEAM_COLOR%1%2%1%3") |
|
1324 | 478 |
.arg(delimeter) |
479 |
.arg(team.TeamName) |
|
1321 | 480 |
.arg(team.teamColor.name())); |
372 | 481 |
} |
482 |
||
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
483 |
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
|
484 |
{ |
1318 | 485 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1SEED%1%2").arg(delimeter).arg(seed)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
486 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
487 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
488 |
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
|
489 |
{ |
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
490 |
if (isChief) RawSendNet(QString("MAP%1%2").arg(delimeter).arg(map)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
491 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
492 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
493 |
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
|
494 |
{ |
1318 | 495 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1THEME%1%2").arg(delimeter).arg(theme)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
496 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
497 |
|
1427 | 498 |
void HWNewNet::onInitHealthChanged(int health) |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
499 |
{ |
1318 | 500 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1HEALTH%1%2").arg(delimeter).arg(health)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
501 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
502 |
|
1427 | 503 |
void HWNewNet::onTurnTimeChanged(int time) |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
504 |
{ |
1318 | 505 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1TURNTIME%1%2").arg(delimeter).arg(time)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
506 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
507 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
508 |
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
|
509 |
{ |
1318 | 510 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1FORTSMODE%1%2").arg(delimeter).arg(value)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
511 |
} |
453 | 512 |
|
1427 | 513 |
void HWNewNet::onTeamsDivideChanged(bool value) |
514 |
{ |
|
515 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1DIVIDETEAMS%1%2").arg(delimeter).arg(value)); |
|
516 |
} |
|
517 |
||
703 | 518 |
void HWNewNet::onWeaponsNameChanged(const QString& name, const QString& ammo) |
697 | 519 |
{ |
1318 | 520 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1AMMO%1%2%1%3").arg(delimeter).arg(ammo).arg(name)); |
697 | 521 |
} |
522 |
||
453 | 523 |
void HWNewNet::chatLineToNet(const QString& str) |
524 |
{ |
|
525 |
if(str!="") { |
|
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
526 |
RawSendNet(QString("CHAT_STRING")+delimeter+str); |
1378 | 527 |
emit(chatStringFromMe(formatChatMsg(mynick, str))); |
453 | 528 |
} |
529 |
} |
|
1315 | 530 |
|
531 |
void HWNewNet::askRoomsList() |
|
532 |
{ |
|
533 |
if(netClientState != 2) |
|
534 |
{ |
|
1321 | 535 |
qWarning("Illegal try to get rooms list!"); |
1315 | 536 |
return; |
537 |
} |
|
538 |
RawSendNet(QString("LIST")); |
|
539 |
} |
|
1339 | 540 |
|
541 |
bool HWNewNet::isRoomChief() |
|
542 |
{ |
|
543 |
return isChief; |
|
544 |
} |
|
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
545 |
|
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
546 |
void HWNewNet::gameFinished() |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
547 |
{ |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
548 |
netClientState = 3; |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
549 |
RawSendNet(QString("ROUNDFINISHED")); |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
550 |
} |
1378 | 551 |
|
552 |
QString HWNewNet::formatChatMsg(const QString & nick, const QString & msg) |
|
553 |
{ |
|
554 |
if(msg.left(4) == "/me ") |
|
555 |
return QString("* %1 %2").arg(nick).arg(msg.mid(4)); |
|
556 |
else |
|
557 |
return QString("%1: %2").arg(nick).arg(msg); |
|
558 |
} |
|
1391 | 559 |
|
560 |
void HWNewNet::kickPlayer(const QString & nick) |
|
561 |
{ |
|
562 |
RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick)); |
|
563 |
} |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
564 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
565 |
void HWNewNet::startGame() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
566 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
567 |
RawSendNet(QString("START_GAME")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
568 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
569 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
570 |
void HWNewNet::toggleRestrictJoins() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
571 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
572 |
RawSendNet(QString("TOGGLE_RESTRICT_JOINS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
573 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
574 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
575 |
void HWNewNet::toggleRestrictTeamAdds() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
576 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
577 |
RawSendNet(QString("TOGGLE_RESTRICT_TEAMS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
578 |
} |