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