author | nemo |
Sun, 14 Feb 2010 21:53:17 +0000 | |
changeset 2807 | cd131de34d3d |
parent 2777 | 95a1a69d491c |
child 2821 | 67815ee123d7 |
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> |
1569 | 4 |
* Copyright (c) 2009 Andrey Korotaev <unC0Rr@gmail.com> |
315 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
1189
f66cdbbfc4b6
Fix compile under Ubuntu (why it compiles everywhere else?)
unc0rr
parents:
1083
diff
changeset
|
20 |
#include <QDebug> |
1844 | 21 |
#include <QInputDialog> |
1905 | 22 |
#include <QCryptographicHash> |
1844 | 23 |
|
697 | 24 |
#include "hwconsts.h" |
315 | 25 |
#include "newnetclient.h" |
26 |
#include "proto.h" |
|
27 |
#include "gameuiconfig.h" |
|
28 |
#include "game.h" |
|
334 | 29 |
#include "gamecfgwidget.h" |
347 | 30 |
#include "teamselect.h" |
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
31 |
#include "misc.h" |
315 | 32 |
|
1082 | 33 |
char delimeter='\n'; |
315 | 34 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
35 |
HWNewNet::HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget) : |
334 | 36 |
config(config), |
37 |
m_pGameCFGWidget(pGameCFGWidget), |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
38 |
m_pTeamSelWidget(pTeamSelWidget), |
383 | 39 |
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
|
40 |
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
|
41 |
loginStep(0), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
42 |
netClientState(0) |
315 | 43 |
{ |
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
44 |
// socket stuff |
1418 | 45 |
connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead())); |
46 |
connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect())); |
|
47 |
connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect())); |
|
48 |
connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, |
|
49 |
SLOT(displayError(QAbstractSocket::SocketError))); |
|
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
50 |
|
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
51 |
// config stuff |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
52 |
connect(this, SIGNAL(paramChanged(const QString &, const QStringList &)), pGameCFGWidget, SLOT(setParam(const QString &, const QStringList &))); |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
53 |
connect(pGameCFGWidget, SIGNAL(paramChanged(const QString &, const QStringList &)), this, SLOT(onParamChanged(const QString &, const QStringList &))); |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
54 |
connect(this, SIGNAL(configAsked()), pGameCFGWidget, SLOT(fullNetConfig())); |
315 | 55 |
} |
56 |
||
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
57 |
HWNewNet::~HWNewNet() |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
58 |
{ |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
59 |
if (m_game_connected) |
1800 | 60 |
{ |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
61 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1800 | 62 |
emit Disconnected(); |
63 |
} |
|
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
64 |
NetSocket.flush(); |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
65 |
} |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
66 |
|
315 | 67 |
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
68 |
{ |
|
2334
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2155
diff
changeset
|
69 |
mynick = nick.isEmpty() ? QLineEdit::tr("unnamed") : nick; |
1418 | 70 |
NetSocket.connectToHost(hostName, port); |
315 | 71 |
} |
72 |
||
73 |
void HWNewNet::Disconnect() |
|
74 |
{ |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
75 |
if (m_game_connected) |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
76 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
77 |
m_game_connected = false; |
2377 | 78 |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
79 |
NetSocket.disconnectFromHost(); |
315 | 80 |
} |
81 |
||
1082 | 82 |
void HWNewNet::CreateRoom(const QString & room) |
315 | 83 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
84 |
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
|
85 |
{ |
1321 | 86 |
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
|
87 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
88 |
} |
2377 | 89 |
|
1905 | 90 |
RawSendNet(QString("CREATE_ROOM%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
|
91 |
isChief = true; |
1082 | 92 |
} |
93 |
||
94 |
void HWNewNet::JoinRoom(const QString & room) |
|
95 |
{ |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
96 |
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
|
97 |
{ |
1321 | 98 |
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
|
99 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
100 |
} |
2377 | 101 |
|
1905 | 102 |
RawSendNet(QString("JOIN_ROOM%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
|
103 |
isChief = false; |
315 | 104 |
} |
105 |
||
106 |
void HWNewNet::AddTeam(const HWTeam & team) |
|
107 |
{ |
|
1327 | 108 |
QString cmd = QString("ADD_TEAM") + delimeter + |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
109 |
team.TeamName + delimeter + |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
110 |
team.teamColor.name() + delimeter + |
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
111 |
team.Grave + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
112 |
team.Fort + delimeter + |
1661 | 113 |
team.Voicepack + delimeter + |
2747 | 114 |
team.Flag + delimeter + |
1245
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
115 |
QString::number(team.difficulty); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
116 |
|
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
117 |
for(int i = 0; i < 8; ++i) |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
118 |
{ |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
119 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
120 |
cmd.append(team.HHName[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
121 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
122 |
cmd.append(team.HHHat[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
123 |
} |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
124 |
RawSendNet(cmd); |
315 | 125 |
} |
126 |
||
347 | 127 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
128 |
{ |
|
1329 | 129 |
RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName); |
347 | 130 |
} |
131 |
||
1404 | 132 |
void HWNewNet::ToggleReady() |
315 | 133 |
{ |
1404 | 134 |
RawSendNet(QString("TOGGLE_READY")); |
315 | 135 |
} |
136 |
||
137 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
138 |
{ |
|
139 |
QString msg = QString(buf.toBase64()); |
|
140 |
||
1866 | 141 |
RawSendNet(QString("EM%1%2").arg(delimeter).arg(msg)); |
315 | 142 |
} |
143 |
||
144 |
void HWNewNet::RawSendNet(const QString & str) |
|
145 |
{ |
|
146 |
RawSendNet(str.toUtf8()); |
|
147 |
} |
|
148 |
||
149 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
150 |
{ |
|
2543 | 151 |
// qDebug() << "Client: " << QString(buf).split("\n"); |
1369 | 152 |
NetSocket.write(buf); |
153 |
NetSocket.write("\n\n", 2); |
|
315 | 154 |
} |
155 |
||
156 |
void HWNewNet::ClientRead() |
|
157 |
{ |
|
1082 | 158 |
while (NetSocket.canReadLine()) { |
2149
2eda77999bec
Fix a bug in frontend leading to incorrect behaviour when dealing with names starting/ending with whitespace
unc0rr
parents:
2138
diff
changeset
|
159 |
QString s = QString::fromUtf8(NetSocket.readLine()); |
2eda77999bec
Fix a bug in frontend leading to incorrect behaviour when dealing with names starting/ending with whitespace
unc0rr
parents:
2138
diff
changeset
|
160 |
if (s.endsWith('\n')) s.chop(1); |
1082 | 161 |
|
162 |
if (s.size() == 0) { |
|
163 |
ParseCmd(cmdbuf); |
|
164 |
cmdbuf.clear(); |
|
165 |
} else |
|
166 |
cmdbuf << s; |
|
167 |
} |
|
315 | 168 |
} |
169 |
||
170 |
void HWNewNet::OnConnect() |
|
171 |
{ |
|
172 |
} |
|
173 |
||
174 |
void HWNewNet::OnDisconnect() |
|
175 |
{ |
|
1875 | 176 |
if(m_game_connected) emit Disconnected(); |
177 |
m_game_connected = false; |
|
315 | 178 |
} |
179 |
||
180 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
181 |
{ |
|
1800 | 182 |
emit Disconnected(); |
2377 | 183 |
|
1302 | 184 |
switch (socketError) { |
185 |
case QAbstractSocket::RemoteHostClosedError: |
|
186 |
break; |
|
187 |
case QAbstractSocket::HostNotFoundError: |
|
1800 | 188 |
emit showMessage(tr("The host was not found. Please check the host name and port settings.")); |
1302 | 189 |
break; |
190 |
case QAbstractSocket::ConnectionRefusedError: |
|
1800 | 191 |
emit showMessage(tr("Connection refused")); |
1302 | 192 |
break; |
193 |
default: |
|
1800 | 194 |
emit showMessage(NetSocket.errorString()); |
1302 | 195 |
} |
315 | 196 |
} |
197 |
||
1082 | 198 |
void HWNewNet::ParseCmd(const QStringList & lst) |
315 | 199 |
{ |
2543 | 200 |
// qDebug() << "Server: " << lst; |
1305 | 201 |
|
202 |
if(!lst.size()) |
|
203 |
{ |
|
204 |
qWarning("Net client: Bad message"); |
|
205 |
return; |
|
206 |
} |
|
320 | 207 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
208 |
if (lst[0] == "NICK") |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
209 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
210 |
mynick = lst[1]; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
211 |
return ; |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
212 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
213 |
|
2108 | 214 |
if (lst[0] == "PROTO") |
215 |
return ; |
|
216 |
||
1305 | 217 |
if (lst[0] == "ERROR") { |
218 |
if (lst.size() == 2) |
|
1600 | 219 |
emit showMessage("Error: " + lst[1]); |
1305 | 220 |
else |
1600 | 221 |
emit showMessage("Unknown error"); |
1305 | 222 |
return; |
223 |
} |
|
315 | 224 |
|
1307 | 225 |
if (lst[0] == "WARNING") { |
226 |
if (lst.size() == 2) |
|
1600 | 227 |
emit showMessage("Warning: " + lst[1]); |
1307 | 228 |
else |
1600 | 229 |
emit showMessage("Unknown warning"); |
1307 | 230 |
return; |
231 |
} |
|
232 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
233 |
if (lst[0] == "CONNECTED") { |
1471 | 234 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
235 |
RawSendNet(QString("PROTO%1%2").arg(delimeter).arg(*cProtoVer)); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
236 |
netClientState = 1; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
237 |
m_game_connected = true; |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
238 |
emit adminAccess(false); |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
239 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
240 |
} |
315 | 241 |
|
1462 | 242 |
if (lst[0] == "PING") { |
1929 | 243 |
if (lst.size() > 1) |
244 |
RawSendNet(QString("PONG%1%2").arg(delimeter).arg(lst[1])); |
|
245 |
else |
|
246 |
RawSendNet(QString("PONG")); |
|
1462 | 247 |
return; |
248 |
} |
|
249 |
||
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
250 |
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
|
251 |
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
|
252 |
tmp.removeFirst(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
253 |
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
|
254 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
255 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
256 |
|
1377 | 257 |
if (lst[0] == "SERVER_MESSAGE") { |
258 |
if(lst.size() < 2) |
|
259 |
{ |
|
260 |
qWarning("Net: Empty SERVERMESSAGE message"); |
|
261 |
return; |
|
262 |
} |
|
263 |
emit serverMessage(lst[1]); |
|
264 |
return; |
|
265 |
} |
|
266 |
||
1815 | 267 |
if (lst[0] == "CHAT") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
268 |
if(lst.size() < 3) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
269 |
{ |
1815 | 270 |
qWarning("Net: Empty CHAT message"); |
1377 | 271 |
return; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
272 |
} |
1568 | 273 |
if (netClientState == 2) |
2405 | 274 |
emit chatStringLobby(HWProto::formatChatMsg(lst[1], lst[2])); |
1568 | 275 |
else |
2405 | 276 |
emit chatStringFromNet(HWProto::formatChatMsg(lst[1], lst[2])); |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
277 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
278 |
} |
453 | 279 |
|
1577 | 280 |
if (lst[0] == "INFO") { |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1581
diff
changeset
|
281 |
if(lst.size() < 5) |
1577 | 282 |
{ |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1581
diff
changeset
|
283 |
qWarning("Net: Malformed INFO message"); |
1577 | 284 |
return; |
285 |
} |
|
286 |
QStringList tmp = lst; |
|
287 |
tmp.removeFirst(); |
|
288 |
if (netClientState == 2) |
|
2478 | 289 |
emit chatStringLobby(tmp.join("\n").prepend('\x01')); |
1577 | 290 |
else |
2478 | 291 |
emit chatStringFromNet(tmp.join("\n").prepend('\x01')); |
1577 | 292 |
return; |
293 |
} |
|
294 |
||
1405 | 295 |
if (lst[0] == "READY") { |
1829 | 296 |
if(lst.size() < 2) |
1405 | 297 |
{ |
298 |
qWarning("Net: Malformed READY message"); |
|
299 |
return; |
|
300 |
} |
|
1829 | 301 |
for(int i = 1; i < lst.size(); ++i) |
302 |
{ |
|
303 |
if (lst[i] == mynick) |
|
304 |
emit setMyReadyStatus(true); |
|
305 |
emit setReadyStatus(lst[i], true); |
|
306 |
} |
|
1405 | 307 |
return; |
308 |
} |
|
2377 | 309 |
|
1405 | 310 |
if (lst[0] == "NOT_READY") { |
1829 | 311 |
if(lst.size() < 2) |
1405 | 312 |
{ |
313 |
qWarning("Net: Malformed NOT_READY message"); |
|
314 |
return; |
|
315 |
} |
|
1829 | 316 |
for(int i = 1; i < lst.size(); ++i) |
317 |
{ |
|
318 |
if (lst[i] == mynick) |
|
319 |
emit setMyReadyStatus(false); |
|
320 |
emit setReadyStatus(lst[i], false); |
|
321 |
} |
|
1405 | 322 |
return; |
323 |
} |
|
324 |
||
1325 | 325 |
if (lst[0] == "ADD_TEAM") { |
2747 | 326 |
if(lst.size() != 24) |
1321 | 327 |
{ |
1325 | 328 |
qWarning("Net: Bad ADDTEAM message"); |
1321 | 329 |
return; |
330 |
} |
|
331 |
QStringList tmp = lst; |
|
332 |
tmp.removeFirst(); |
|
333 |
emit AddNetTeam(tmp); |
|
334 |
return; |
|
335 |
} |
|
315 | 336 |
|
1338 | 337 |
if (lst[0] == "REMOVE_TEAM") { |
338 |
if(lst.size() != 2) |
|
339 |
{ |
|
340 |
qWarning("Net: Bad REMOVETEAM message"); |
|
341 |
return; |
|
342 |
} |
|
343 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1])); |
|
344 |
return; |
|
345 |
} |
|
347 | 346 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
347 |
if(lst[0] == "ROOMABANDONED") { |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
348 |
netClientState = 2; |
1600 | 349 |
emit showMessage(HWNewNet::tr("Room destroyed")); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
350 |
emit LeftRoom(); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
351 |
return; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
352 |
} |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
353 |
|
1879 | 354 |
if(lst[0] == "KICKED") { |
355 |
netClientState = 2; |
|
356 |
emit showMessage(HWNewNet::tr("You got kicked")); |
|
357 |
emit LeftRoom(); |
|
358 |
return; |
|
359 |
} |
|
360 |
||
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
361 |
if(lst[0] == "JOINED") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
362 |
if(lst.size() < 2) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
363 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
364 |
qWarning("Net: Bad JOINED message"); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
365 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
366 |
} |
2377 | 367 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
368 |
for(int i = 1; i < lst.size(); ++i) |
1311 | 369 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
370 |
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
|
371 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
372 |
netClientState = 3; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
373 |
emit EnteredGame(); |
1860 | 374 |
emit roomMaster(isChief); |
1316 | 375 |
if (isChief) |
1875 | 376 |
emit configAsked(); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
377 |
} |
2777 | 378 |
emit nickAdded(lst[i], isChief && (lst[i] != mynick)); |
379 |
emit chatStringFromNet(tr("%1 *** %2 has joined the room").arg('\x03').arg(lst[i])); |
|
1311 | 380 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
381 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
382 |
} |
455 | 383 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
384 |
if(lst[0] == "LOBBY:JOINED") { |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
385 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
386 |
{ |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
387 |
qWarning("Net: Bad JOINED message"); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
388 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
389 |
} |
2377 | 390 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
391 |
for(int i = 1; i < lst.size(); ++i) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
392 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
393 |
if (lst[i] == mynick) |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
394 |
{ |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
395 |
netClientState = 2; |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
396 |
RawSendNet(QString("LIST")); |
1842
96a4757dfeb8
Move from 'connecting' page to lobby only when account checked
unc0rr
parents:
1841
diff
changeset
|
397 |
emit Connected(); |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
398 |
} |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
399 |
|
2776 | 400 |
emit nickAddedLobby(lst[i], false); |
2396 | 401 |
emit chatStringLobby(tr("%1 *** %2 has joined").arg('\x03').arg(lst[i])); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
402 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
403 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
404 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
405 |
|
1325 | 406 |
if(lst[0] == "LEFT") { |
1310 | 407 |
if(lst.size() < 2) |
408 |
{ |
|
409 |
qWarning("Net: Bad LEFT message"); |
|
410 |
return; |
|
411 |
} |
|
412 |
emit nickRemoved(lst[1]); |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
413 |
if (lst.size() < 3) |
2442 | 414 |
emit chatStringFromNet(tr("%1 *** %2 has left").arg('\x03').arg(lst[1])); |
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
415 |
else |
2442 | 416 |
emit chatStringFromNet(tr("%1 *** %2 has left (%3)").arg('\x03').arg(lst[1], lst[2])); |
1310 | 417 |
return; |
418 |
} |
|
461 | 419 |
|
1591 | 420 |
if(lst[0] == "ROOM") { |
421 |
if(lst.size() < 2) |
|
422 |
{ |
|
423 |
qWarning("Net: Bad ROOM message"); |
|
424 |
return; |
|
425 |
} |
|
426 |
RawSendNet(QString("LIST")); |
|
427 |
return; |
|
428 |
} |
|
429 |
||
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
430 |
if(lst[0] == "LOBBY:LEFT") { |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
431 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
432 |
{ |
1581 | 433 |
qWarning("Net: Bad LOBBY:LEFT message"); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
434 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
435 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
436 |
emit nickRemovedLobby(lst[1]); |
1568 | 437 |
if (lst.size() < 3) |
2442 | 438 |
emit chatStringLobby(tr("%1 *** %2 has left").arg('\x03').arg(lst[1])); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
439 |
else |
2442 | 440 |
emit chatStringLobby(tr("%1 *** %2 has left (%3)").arg('\x03').arg(lst[1], lst[2])); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
441 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
442 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
443 |
|
1338 | 444 |
if (lst[0] == "RUN_GAME") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
445 |
netClientState = 5; |
2345
daf1785f2337
- Frontend: reorganize code controlling widgets state, fix problems getting room admin status
unc0rr
parents:
2344
diff
changeset
|
446 |
emit AskForRunGame(); |
1325 | 447 |
return; |
448 |
} |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
449 |
|
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
450 |
if (lst[0] == "ASKPASSWORD") { |
2138 | 451 |
int passLength = config->value("net/passwordlength", 0).toInt(); |
2335 | 452 |
QString hash = config->value("net/passwordhash", "").toString(); |
453 |
QString password = QInputDialog::getText(0, tr("Password"), tr("Your nickname %1 is\nregistered on Hedgewars.org\nPlease provide your password\nor pick another nickname:").arg(mynick), QLineEdit::Password, passLength==0?NULL:QString(passLength,'\0')); |
|
1844 | 454 |
|
2138 | 455 |
if (!passLength || password!=QString(passLength, '\0')) { |
456 |
hash = QCryptographicHash::hash(password.toLatin1(), QCryptographicHash::Md5).toHex(); |
|
457 |
config->setValue("net/passwordhash", hash); |
|
458 |
config->setValue("net/passwordlength", password.size()); |
|
459 |
} |
|
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
460 |
|
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
461 |
RawSendNet(QString("PASSWORD%1%2").arg(delimeter).arg(hash)); |
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
462 |
return; |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
463 |
} |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
464 |
|
1325 | 465 |
if (lst[0] == "TEAM_ACCEPTED") { |
466 |
if (lst.size() != 2) |
|
467 |
{ |
|
468 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
469 |
return; |
|
470 |
} |
|
471 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
|
472 |
return; |
|
473 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
474 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
475 |
|
1814 | 476 |
if (lst[0] == "CFG") { |
1319 | 477 |
if(lst.size() < 3) |
478 |
{ |
|
1817 | 479 |
qWarning("Net: Bad CFG message"); |
1319 | 480 |
return; |
481 |
} |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
482 |
QStringList tmp = lst; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
483 |
tmp.removeFirst(); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
484 |
tmp.removeFirst(); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
485 |
if (lst[1] == "SCHEME") |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
486 |
emit netSchemeConfig(tmp); |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
487 |
else |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
488 |
emit paramChanged(lst[1], tmp); |
1319 | 489 |
return; |
697 | 490 |
} |
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 |
|
1327 | 492 |
if (lst[0] == "HH_NUM") { |
493 |
if (lst.size() != 3) |
|
494 |
{ |
|
495 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
496 |
return; |
|
497 |
} |
|
498 |
HWTeam tmptm(lst[1]); |
|
499 |
tmptm.numHedgehogs = lst[2].toUInt(); |
|
500 |
emit hhnumChanged(tmptm); |
|
501 |
return; |
|
502 |
} |
|
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 |
|
1330 | 504 |
if (lst[0] == "TEAM_COLOR") { |
505 |
if (lst.size() != 3) |
|
506 |
{ |
|
507 |
qWarning("Net: Bad TEAM_COLOR message"); |
|
508 |
return; |
|
509 |
} |
|
510 |
HWTeam tmptm(lst[1]); |
|
511 |
tmptm.teamColor = QColor(lst[2]); |
|
512 |
emit teamColorChanged(tmptm); |
|
513 |
return; |
|
514 |
} |
|
515 |
||
1866 | 516 |
if (lst[0] == "EM") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
517 |
if(lst.size() < 2) |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
518 |
{ |
1866 | 519 |
qWarning("Net: Bad EM message"); |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
520 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
521 |
} |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
522 |
for(int i = 1; i < lst.size(); ++i) |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
523 |
{ |
1559
71e1f67dcfe7
Now spectating works for those who joined after game start
unc0rr
parents:
1558
diff
changeset
|
524 |
QByteArray em = QByteArray::fromBase64(lst[i].toAscii()); |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
525 |
emit FromNet(em); |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
526 |
} |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
527 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
528 |
} |
573 | 529 |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
530 |
if (lst[0] == "BYE") { |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
531 |
if (lst.size() < 2) |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
532 |
{ |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
533 |
qWarning("Net: Bad BYE message"); |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
534 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
535 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
536 |
emit showMessage(HWNewNet::tr("Quit reason: ") + lst[1]); |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
537 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
538 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
539 |
|
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
540 |
|
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
541 |
if (lst[0] == "ADMIN_ACCESS") { |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
542 |
emit adminAccess(true); |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
543 |
return; |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
544 |
} |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
545 |
|
2340
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
546 |
if (lst[0] == "ROOM_CONTROL_ACCESS") { |
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
547 |
if (lst.size() < 2) |
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
548 |
{ |
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
549 |
qWarning("Net: Bad BYE message"); |
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
550 |
return; |
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
551 |
} |
2344
63b3da03ce46
Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents:
2340
diff
changeset
|
552 |
bool b = lst[1] != "0"; |
2340
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
553 |
m_pGameCFGWidget->setEnabled(b); |
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
554 |
m_pTeamSelWidget->setInteractivity(b); |
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
555 |
isChief = b; |
2345
daf1785f2337
- Frontend: reorganize code controlling widgets state, fix problems getting room admin status
unc0rr
parents:
2344
diff
changeset
|
556 |
emit roomMaster(isChief); |
2344
63b3da03ce46
Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents:
2340
diff
changeset
|
557 |
|
63b3da03ce46
Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents:
2340
diff
changeset
|
558 |
return; |
2340
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
559 |
} |
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
560 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
561 |
qWarning() << "Net: Unknown message:" << lst; |
315 | 562 |
} |
563 |
||
352 | 564 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
565 |
{ |
|
1330 | 566 |
if (isChief) |
1327 | 567 |
RawSendNet(QString("HH_NUM%1%2%1%3") |
1324 | 568 |
.arg(delimeter) |
569 |
.arg(team.TeamName) |
|
1321 | 570 |
.arg(team.numHedgehogs)); |
352 | 571 |
} |
572 |
||
372 | 573 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
574 |
{ |
|
1330 | 575 |
if (isChief) |
576 |
RawSendNet(QString("TEAM_COLOR%1%2%1%3") |
|
1324 | 577 |
.arg(delimeter) |
578 |
.arg(team.TeamName) |
|
1321 | 579 |
.arg(team.teamColor.name())); |
372 | 580 |
} |
581 |
||
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
582 |
void HWNewNet::onParamChanged(const QString & param, const QStringList & value) |
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
583 |
{ |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
584 |
if (isChief) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
585 |
RawSendNet( |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
586 |
QString("CFG%1%2%1%3") |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
587 |
.arg(delimeter) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
588 |
.arg(param) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
589 |
.arg(value.join(QString(delimeter))) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
590 |
); |
1797 | 591 |
} |
592 |
||
453 | 593 |
void HWNewNet::chatLineToNet(const QString& str) |
594 |
{ |
|
1568 | 595 |
if(str != "") { |
1815 | 596 |
RawSendNet(QString("CHAT") + delimeter + str); |
2405 | 597 |
emit(chatStringFromMe(HWProto::formatChatMsg(mynick, str))); |
1568 | 598 |
} |
599 |
} |
|
600 |
||
601 |
void HWNewNet::chatLineToLobby(const QString& str) |
|
602 |
{ |
|
603 |
if(str != "") { |
|
1815 | 604 |
RawSendNet(QString("CHAT") + delimeter + str); |
2405 | 605 |
emit(chatStringFromMeLobby(HWProto::formatChatMsg(mynick, str))); |
1568 | 606 |
} |
453 | 607 |
} |
1315 | 608 |
|
2403 | 609 |
void HWNewNet::SendTeamMessage(const QString& str) |
610 |
{ |
|
611 |
RawSendNet(QString("TEAMCHAT") + delimeter + str); |
|
612 |
} |
|
613 |
||
1315 | 614 |
void HWNewNet::askRoomsList() |
615 |
{ |
|
616 |
if(netClientState != 2) |
|
617 |
{ |
|
1321 | 618 |
qWarning("Illegal try to get rooms list!"); |
1315 | 619 |
return; |
620 |
} |
|
621 |
RawSendNet(QString("LIST")); |
|
622 |
} |
|
1339 | 623 |
|
624 |
bool HWNewNet::isRoomChief() |
|
625 |
{ |
|
626 |
return isChief; |
|
627 |
} |
|
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
628 |
|
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
629 |
void HWNewNet::gameFinished() |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
630 |
{ |
2340
3b35fd5f67c7
Fix a bug when you are unable to do anything in lobby when room is closed during round
unc0rr
parents:
2335
diff
changeset
|
631 |
if (netClientState == 5) netClientState = 3; |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
632 |
RawSendNet(QString("ROUNDFINISHED")); |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
633 |
} |
1378 | 634 |
|
1860 | 635 |
void HWNewNet::banPlayer(const QString & nick) |
636 |
{ |
|
637 |
RawSendNet(QString("BAN%1%2").arg(delimeter).arg(nick)); |
|
638 |
} |
|
639 |
||
1391 | 640 |
void HWNewNet::kickPlayer(const QString & nick) |
641 |
{ |
|
642 |
RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick)); |
|
643 |
} |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
644 |
|
1577 | 645 |
void HWNewNet::infoPlayer(const QString & nick) |
646 |
{ |
|
647 |
RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick)); |
|
648 |
} |
|
649 |
||
2706
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2543
diff
changeset
|
650 |
void HWNewNet::followPlayer(const QString & nick) |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2543
diff
changeset
|
651 |
{ |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2543
diff
changeset
|
652 |
if (!isInRoom()) { |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2543
diff
changeset
|
653 |
RawSendNet(QString("FOLLOW%1%2").arg(delimeter).arg(nick)); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2543
diff
changeset
|
654 |
isChief = false; |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2543
diff
changeset
|
655 |
} |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2543
diff
changeset
|
656 |
} |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2543
diff
changeset
|
657 |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
658 |
void HWNewNet::startGame() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
659 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
660 |
RawSendNet(QString("START_GAME")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
661 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
662 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
663 |
void HWNewNet::toggleRestrictJoins() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
664 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
665 |
RawSendNet(QString("TOGGLE_RESTRICT_JOINS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
666 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
667 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
668 |
void HWNewNet::toggleRestrictTeamAdds() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
669 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
670 |
RawSendNet(QString("TOGGLE_RESTRICT_TEAMS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
671 |
} |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
672 |
|
2155
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
673 |
void HWNewNet::clearAccountsCache() |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
674 |
{ |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
675 |
RawSendNet(QString("CLEAR_ACCOUNTS_CACHE")); |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
676 |
} |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
677 |
|
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
678 |
void HWNewNet::partRoom() |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
679 |
{ |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
680 |
netClientState = 2; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
681 |
RawSendNet(QString("PART")); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
682 |
} |
1671 | 683 |
|
684 |
bool HWNewNet::isInRoom() |
|
685 |
{ |
|
686 |
return netClientState > 2; |
|
687 |
} |
|
1925 | 688 |
|
689 |
void HWNewNet::newServerMessage(const QString & msg) |
|
690 |
{ |
|
691 |
RawSendNet(QString("SET_SERVER_MESSAGE%1%2").arg(delimeter).arg(msg)); |
|
692 |
} |