author | koda |
Sun, 24 Jan 2010 13:38:14 +0000 | |
changeset 2706 | 935b7d618cf0 |
parent 2543 | bf1da5037433 |
child 2747 | 7889a3a9724f |
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 + |
1245
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
114 |
QString::number(team.difficulty); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
115 |
|
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
116 |
for(int i = 0; i < 8; ++i) |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
117 |
{ |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
118 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
119 |
cmd.append(team.HHName[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
120 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
121 |
cmd.append(team.HHHat[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
122 |
} |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
123 |
RawSendNet(cmd); |
315 | 124 |
} |
125 |
||
347 | 126 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
127 |
{ |
|
1329 | 128 |
RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName); |
347 | 129 |
} |
130 |
||
1404 | 131 |
void HWNewNet::ToggleReady() |
315 | 132 |
{ |
1404 | 133 |
RawSendNet(QString("TOGGLE_READY")); |
315 | 134 |
} |
135 |
||
136 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
137 |
{ |
|
138 |
QString msg = QString(buf.toBase64()); |
|
139 |
||
1866 | 140 |
RawSendNet(QString("EM%1%2").arg(delimeter).arg(msg)); |
315 | 141 |
} |
142 |
||
143 |
void HWNewNet::RawSendNet(const QString & str) |
|
144 |
{ |
|
145 |
RawSendNet(str.toUtf8()); |
|
146 |
} |
|
147 |
||
148 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
149 |
{ |
|
2543 | 150 |
// qDebug() << "Client: " << QString(buf).split("\n"); |
1369 | 151 |
NetSocket.write(buf); |
152 |
NetSocket.write("\n\n", 2); |
|
315 | 153 |
} |
154 |
||
155 |
void HWNewNet::ClientRead() |
|
156 |
{ |
|
1082 | 157 |
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
|
158 |
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
|
159 |
if (s.endsWith('\n')) s.chop(1); |
1082 | 160 |
|
161 |
if (s.size() == 0) { |
|
162 |
ParseCmd(cmdbuf); |
|
163 |
cmdbuf.clear(); |
|
164 |
} else |
|
165 |
cmdbuf << s; |
|
166 |
} |
|
315 | 167 |
} |
168 |
||
169 |
void HWNewNet::OnConnect() |
|
170 |
{ |
|
171 |
} |
|
172 |
||
173 |
void HWNewNet::OnDisconnect() |
|
174 |
{ |
|
1875 | 175 |
if(m_game_connected) emit Disconnected(); |
176 |
m_game_connected = false; |
|
315 | 177 |
} |
178 |
||
179 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
180 |
{ |
|
1800 | 181 |
emit Disconnected(); |
2377 | 182 |
|
1302 | 183 |
switch (socketError) { |
184 |
case QAbstractSocket::RemoteHostClosedError: |
|
185 |
break; |
|
186 |
case QAbstractSocket::HostNotFoundError: |
|
1800 | 187 |
emit showMessage(tr("The host was not found. Please check the host name and port settings.")); |
1302 | 188 |
break; |
189 |
case QAbstractSocket::ConnectionRefusedError: |
|
1800 | 190 |
emit showMessage(tr("Connection refused")); |
1302 | 191 |
break; |
192 |
default: |
|
1800 | 193 |
emit showMessage(NetSocket.errorString()); |
1302 | 194 |
} |
315 | 195 |
} |
196 |
||
1082 | 197 |
void HWNewNet::ParseCmd(const QStringList & lst) |
315 | 198 |
{ |
2543 | 199 |
// qDebug() << "Server: " << lst; |
1305 | 200 |
|
201 |
if(!lst.size()) |
|
202 |
{ |
|
203 |
qWarning("Net client: Bad message"); |
|
204 |
return; |
|
205 |
} |
|
320 | 206 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
207 |
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
|
208 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
209 |
mynick = lst[1]; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
210 |
return ; |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
211 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
212 |
|
2108 | 213 |
if (lst[0] == "PROTO") |
214 |
return ; |
|
215 |
||
1305 | 216 |
if (lst[0] == "ERROR") { |
217 |
if (lst.size() == 2) |
|
1600 | 218 |
emit showMessage("Error: " + lst[1]); |
1305 | 219 |
else |
1600 | 220 |
emit showMessage("Unknown error"); |
1305 | 221 |
return; |
222 |
} |
|
315 | 223 |
|
1307 | 224 |
if (lst[0] == "WARNING") { |
225 |
if (lst.size() == 2) |
|
1600 | 226 |
emit showMessage("Warning: " + lst[1]); |
1307 | 227 |
else |
1600 | 228 |
emit showMessage("Unknown warning"); |
1307 | 229 |
return; |
230 |
} |
|
231 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
232 |
if (lst[0] == "CONNECTED") { |
1471 | 233 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
234 |
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
|
235 |
netClientState = 1; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
236 |
m_game_connected = true; |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
237 |
emit adminAccess(false); |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
238 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
239 |
} |
315 | 240 |
|
1462 | 241 |
if (lst[0] == "PING") { |
1929 | 242 |
if (lst.size() > 1) |
243 |
RawSendNet(QString("PONG%1%2").arg(delimeter).arg(lst[1])); |
|
244 |
else |
|
245 |
RawSendNet(QString("PONG")); |
|
1462 | 246 |
return; |
247 |
} |
|
248 |
||
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
249 |
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
|
250 |
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
|
251 |
tmp.removeFirst(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
252 |
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
|
253 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
254 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
255 |
|
1377 | 256 |
if (lst[0] == "SERVER_MESSAGE") { |
257 |
if(lst.size() < 2) |
|
258 |
{ |
|
259 |
qWarning("Net: Empty SERVERMESSAGE message"); |
|
260 |
return; |
|
261 |
} |
|
262 |
emit serverMessage(lst[1]); |
|
263 |
return; |
|
264 |
} |
|
265 |
||
1815 | 266 |
if (lst[0] == "CHAT") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
267 |
if(lst.size() < 3) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
268 |
{ |
1815 | 269 |
qWarning("Net: Empty CHAT message"); |
1377 | 270 |
return; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
271 |
} |
1568 | 272 |
if (netClientState == 2) |
2405 | 273 |
emit chatStringLobby(HWProto::formatChatMsg(lst[1], lst[2])); |
1568 | 274 |
else |
2405 | 275 |
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
|
276 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
277 |
} |
453 | 278 |
|
1577 | 279 |
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
|
280 |
if(lst.size() < 5) |
1577 | 281 |
{ |
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
|
282 |
qWarning("Net: Malformed INFO message"); |
1577 | 283 |
return; |
284 |
} |
|
285 |
QStringList tmp = lst; |
|
286 |
tmp.removeFirst(); |
|
287 |
if (netClientState == 2) |
|
2478 | 288 |
emit chatStringLobby(tmp.join("\n").prepend('\x01')); |
1577 | 289 |
else |
2478 | 290 |
emit chatStringFromNet(tmp.join("\n").prepend('\x01')); |
1577 | 291 |
return; |
292 |
} |
|
293 |
||
1405 | 294 |
if (lst[0] == "READY") { |
1829 | 295 |
if(lst.size() < 2) |
1405 | 296 |
{ |
297 |
qWarning("Net: Malformed READY message"); |
|
298 |
return; |
|
299 |
} |
|
1829 | 300 |
for(int i = 1; i < lst.size(); ++i) |
301 |
{ |
|
302 |
if (lst[i] == mynick) |
|
303 |
emit setMyReadyStatus(true); |
|
304 |
emit setReadyStatus(lst[i], true); |
|
305 |
} |
|
1405 | 306 |
return; |
307 |
} |
|
2377 | 308 |
|
1405 | 309 |
if (lst[0] == "NOT_READY") { |
1829 | 310 |
if(lst.size() < 2) |
1405 | 311 |
{ |
312 |
qWarning("Net: Malformed NOT_READY message"); |
|
313 |
return; |
|
314 |
} |
|
1829 | 315 |
for(int i = 1; i < lst.size(); ++i) |
316 |
{ |
|
317 |
if (lst[i] == mynick) |
|
318 |
emit setMyReadyStatus(false); |
|
319 |
emit setReadyStatus(lst[i], false); |
|
320 |
} |
|
1405 | 321 |
return; |
322 |
} |
|
323 |
||
1325 | 324 |
if (lst[0] == "ADD_TEAM") { |
1683 | 325 |
if(lst.size() != 23) |
1321 | 326 |
{ |
1325 | 327 |
qWarning("Net: Bad ADDTEAM message"); |
1321 | 328 |
return; |
329 |
} |
|
330 |
QStringList tmp = lst; |
|
331 |
tmp.removeFirst(); |
|
332 |
emit AddNetTeam(tmp); |
|
333 |
return; |
|
334 |
} |
|
315 | 335 |
|
1338 | 336 |
if (lst[0] == "REMOVE_TEAM") { |
337 |
if(lst.size() != 2) |
|
338 |
{ |
|
339 |
qWarning("Net: Bad REMOVETEAM message"); |
|
340 |
return; |
|
341 |
} |
|
342 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1])); |
|
343 |
return; |
|
344 |
} |
|
347 | 345 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
346 |
if(lst[0] == "ROOMABANDONED") { |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
347 |
netClientState = 2; |
1600 | 348 |
emit showMessage(HWNewNet::tr("Room destroyed")); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
349 |
emit LeftRoom(); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
350 |
return; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
351 |
} |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
352 |
|
1879 | 353 |
if(lst[0] == "KICKED") { |
354 |
netClientState = 2; |
|
355 |
emit showMessage(HWNewNet::tr("You got kicked")); |
|
356 |
emit LeftRoom(); |
|
357 |
return; |
|
358 |
} |
|
359 |
||
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
360 |
if(lst[0] == "JOINED") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
361 |
if(lst.size() < 2) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
362 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
363 |
qWarning("Net: Bad JOINED message"); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
364 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
365 |
} |
2377 | 366 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
367 |
for(int i = 1; i < lst.size(); ++i) |
1311 | 368 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
369 |
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
|
370 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
371 |
netClientState = 3; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
372 |
emit EnteredGame(); |
1860 | 373 |
emit roomMaster(isChief); |
1316 | 374 |
if (isChief) |
1875 | 375 |
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
|
376 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
377 |
emit nickAdded(lst[i]); |
2396 | 378 |
emit chatStringFromNet(tr("%1 *** %2 has joined the room").arg('\x03').arg(lst[i])); |
1311 | 379 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
380 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
381 |
} |
455 | 382 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
383 |
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
|
384 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
385 |
{ |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
386 |
qWarning("Net: Bad JOINED message"); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
387 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
388 |
} |
2377 | 389 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
390 |
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
|
391 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
392 |
if (lst[i] == mynick) |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
393 |
{ |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
394 |
netClientState = 2; |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
395 |
RawSendNet(QString("LIST")); |
1842
96a4757dfeb8
Move from 'connecting' page to lobby only when account checked
unc0rr
parents:
1841
diff
changeset
|
396 |
emit Connected(); |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
397 |
} |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
398 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
399 |
emit nickAddedLobby(lst[i]); |
2396 | 400 |
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
|
401 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
402 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
403 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
404 |
|
1325 | 405 |
if(lst[0] == "LEFT") { |
1310 | 406 |
if(lst.size() < 2) |
407 |
{ |
|
408 |
qWarning("Net: Bad LEFT message"); |
|
409 |
return; |
|
410 |
} |
|
411 |
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
|
412 |
if (lst.size() < 3) |
2442 | 413 |
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
|
414 |
else |
2442 | 415 |
emit chatStringFromNet(tr("%1 *** %2 has left (%3)").arg('\x03').arg(lst[1], lst[2])); |
1310 | 416 |
return; |
417 |
} |
|
461 | 418 |
|
1591 | 419 |
if(lst[0] == "ROOM") { |
420 |
if(lst.size() < 2) |
|
421 |
{ |
|
422 |
qWarning("Net: Bad ROOM message"); |
|
423 |
return; |
|
424 |
} |
|
425 |
RawSendNet(QString("LIST")); |
|
426 |
return; |
|
427 |
} |
|
428 |
||
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
429 |
if(lst[0] == "LOBBY:LEFT") { |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
430 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
431 |
{ |
1581 | 432 |
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
|
433 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
434 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
435 |
emit nickRemovedLobby(lst[1]); |
1568 | 436 |
if (lst.size() < 3) |
2442 | 437 |
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
|
438 |
else |
2442 | 439 |
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
|
440 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
441 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
442 |
|
1338 | 443 |
if (lst[0] == "RUN_GAME") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
444 |
netClientState = 5; |
2345
daf1785f2337
- Frontend: reorganize code controlling widgets state, fix problems getting room admin status
unc0rr
parents:
2344
diff
changeset
|
445 |
emit AskForRunGame(); |
1325 | 446 |
return; |
447 |
} |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
448 |
|
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
449 |
if (lst[0] == "ASKPASSWORD") { |
2138 | 450 |
int passLength = config->value("net/passwordlength", 0).toInt(); |
2335 | 451 |
QString hash = config->value("net/passwordhash", "").toString(); |
452 |
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 | 453 |
|
2138 | 454 |
if (!passLength || password!=QString(passLength, '\0')) { |
455 |
hash = QCryptographicHash::hash(password.toLatin1(), QCryptographicHash::Md5).toHex(); |
|
456 |
config->setValue("net/passwordhash", hash); |
|
457 |
config->setValue("net/passwordlength", password.size()); |
|
458 |
} |
|
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
459 |
|
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
460 |
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
|
461 |
return; |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
462 |
} |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
463 |
|
1325 | 464 |
if (lst[0] == "TEAM_ACCEPTED") { |
465 |
if (lst.size() != 2) |
|
466 |
{ |
|
467 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
468 |
return; |
|
469 |
} |
|
470 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
|
471 |
return; |
|
472 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
473 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
474 |
|
1814 | 475 |
if (lst[0] == "CFG") { |
1319 | 476 |
if(lst.size() < 3) |
477 |
{ |
|
1817 | 478 |
qWarning("Net: Bad CFG message"); |
1319 | 479 |
return; |
480 |
} |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
481 |
QStringList tmp = lst; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
482 |
tmp.removeFirst(); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
483 |
tmp.removeFirst(); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
484 |
if (lst[1] == "SCHEME") |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
485 |
emit netSchemeConfig(tmp); |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
486 |
else |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1898
diff
changeset
|
487 |
emit paramChanged(lst[1], tmp); |
1319 | 488 |
return; |
697 | 489 |
} |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
490 |
|
1327 | 491 |
if (lst[0] == "HH_NUM") { |
492 |
if (lst.size() != 3) |
|
493 |
{ |
|
494 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
495 |
return; |
|
496 |
} |
|
497 |
HWTeam tmptm(lst[1]); |
|
498 |
tmptm.numHedgehogs = lst[2].toUInt(); |
|
499 |
emit hhnumChanged(tmptm); |
|
500 |
return; |
|
501 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
502 |
|
1330 | 503 |
if (lst[0] == "TEAM_COLOR") { |
504 |
if (lst.size() != 3) |
|
505 |
{ |
|
506 |
qWarning("Net: Bad TEAM_COLOR message"); |
|
507 |
return; |
|
508 |
} |
|
509 |
HWTeam tmptm(lst[1]); |
|
510 |
tmptm.teamColor = QColor(lst[2]); |
|
511 |
emit teamColorChanged(tmptm); |
|
512 |
return; |
|
513 |
} |
|
514 |
||
1866 | 515 |
if (lst[0] == "EM") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
516 |
if(lst.size() < 2) |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
517 |
{ |
1866 | 518 |
qWarning("Net: Bad EM message"); |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
519 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
520 |
} |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
521 |
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
|
522 |
{ |
1559
71e1f67dcfe7
Now spectating works for those who joined after game start
unc0rr
parents:
1558
diff
changeset
|
523 |
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
|
524 |
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
|
525 |
} |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
526 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
527 |
} |
573 | 528 |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
529 |
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
|
530 |
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
|
531 |
{ |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
532 |
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
|
533 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
534 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
535 |
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
|
536 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
537 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
538 |
|
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
539 |
|
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
540 |
if (lst[0] == "ADMIN_ACCESS") { |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
541 |
emit adminAccess(true); |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
542 |
return; |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
543 |
} |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
544 |
|
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
|
545 |
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
|
546 |
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
|
547 |
{ |
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 |
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
|
549 |
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
|
550 |
} |
2344
63b3da03ce46
Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents:
2340
diff
changeset
|
551 |
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
|
552 |
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
|
553 |
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
|
554 |
isChief = b; |
2345
daf1785f2337
- Frontend: reorganize code controlling widgets state, fix problems getting room admin status
unc0rr
parents:
2344
diff
changeset
|
555 |
emit roomMaster(isChief); |
2344
63b3da03ce46
Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents:
2340
diff
changeset
|
556 |
|
63b3da03ce46
Fix frontend ROOM_CONTROL_ACCESS protocol command handler
unc0rr
parents:
2340
diff
changeset
|
557 |
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
|
558 |
} |
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 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
560 |
qWarning() << "Net: Unknown message:" << lst; |
315 | 561 |
} |
562 |
||
352 | 563 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
564 |
{ |
|
1330 | 565 |
if (isChief) |
1327 | 566 |
RawSendNet(QString("HH_NUM%1%2%1%3") |
1324 | 567 |
.arg(delimeter) |
568 |
.arg(team.TeamName) |
|
1321 | 569 |
.arg(team.numHedgehogs)); |
352 | 570 |
} |
571 |
||
372 | 572 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
573 |
{ |
|
1330 | 574 |
if (isChief) |
575 |
RawSendNet(QString("TEAM_COLOR%1%2%1%3") |
|
1324 | 576 |
.arg(delimeter) |
577 |
.arg(team.TeamName) |
|
1321 | 578 |
.arg(team.teamColor.name())); |
372 | 579 |
} |
580 |
||
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
581 |
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
|
582 |
{ |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
583 |
if (isChief) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
584 |
RawSendNet( |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
585 |
QString("CFG%1%2%1%3") |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
586 |
.arg(delimeter) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
587 |
.arg(param) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
588 |
.arg(value.join(QString(delimeter))) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
589 |
); |
1797 | 590 |
} |
591 |
||
453 | 592 |
void HWNewNet::chatLineToNet(const QString& str) |
593 |
{ |
|
1568 | 594 |
if(str != "") { |
1815 | 595 |
RawSendNet(QString("CHAT") + delimeter + str); |
2405 | 596 |
emit(chatStringFromMe(HWProto::formatChatMsg(mynick, str))); |
1568 | 597 |
} |
598 |
} |
|
599 |
||
600 |
void HWNewNet::chatLineToLobby(const QString& str) |
|
601 |
{ |
|
602 |
if(str != "") { |
|
1815 | 603 |
RawSendNet(QString("CHAT") + delimeter + str); |
2405 | 604 |
emit(chatStringFromMeLobby(HWProto::formatChatMsg(mynick, str))); |
1568 | 605 |
} |
453 | 606 |
} |
1315 | 607 |
|
2403 | 608 |
void HWNewNet::SendTeamMessage(const QString& str) |
609 |
{ |
|
610 |
RawSendNet(QString("TEAMCHAT") + delimeter + str); |
|
611 |
} |
|
612 |
||
1315 | 613 |
void HWNewNet::askRoomsList() |
614 |
{ |
|
615 |
if(netClientState != 2) |
|
616 |
{ |
|
1321 | 617 |
qWarning("Illegal try to get rooms list!"); |
1315 | 618 |
return; |
619 |
} |
|
620 |
RawSendNet(QString("LIST")); |
|
621 |
} |
|
1339 | 622 |
|
623 |
bool HWNewNet::isRoomChief() |
|
624 |
{ |
|
625 |
return isChief; |
|
626 |
} |
|
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
627 |
|
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
628 |
void HWNewNet::gameFinished() |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
629 |
{ |
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
|
630 |
if (netClientState == 5) netClientState = 3; |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
631 |
RawSendNet(QString("ROUNDFINISHED")); |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
632 |
} |
1378 | 633 |
|
1860 | 634 |
void HWNewNet::banPlayer(const QString & nick) |
635 |
{ |
|
636 |
RawSendNet(QString("BAN%1%2").arg(delimeter).arg(nick)); |
|
637 |
} |
|
638 |
||
1391 | 639 |
void HWNewNet::kickPlayer(const QString & nick) |
640 |
{ |
|
641 |
RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick)); |
|
642 |
} |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
643 |
|
1577 | 644 |
void HWNewNet::infoPlayer(const QString & nick) |
645 |
{ |
|
646 |
RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick)); |
|
647 |
} |
|
648 |
||
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
|
649 |
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
|
650 |
{ |
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 |
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
|
652 |
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
|
653 |
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
|
654 |
} |
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 |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
657 |
void HWNewNet::startGame() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
658 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
659 |
RawSendNet(QString("START_GAME")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
660 |
} |
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 |
void HWNewNet::toggleRestrictJoins() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
663 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
664 |
RawSendNet(QString("TOGGLE_RESTRICT_JOINS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
665 |
} |
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 |
void HWNewNet::toggleRestrictTeamAdds() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
668 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
669 |
RawSendNet(QString("TOGGLE_RESTRICT_TEAMS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
670 |
} |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
671 |
|
2155
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
672 |
void HWNewNet::clearAccountsCache() |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
673 |
{ |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
674 |
RawSendNet(QString("CLEAR_ACCOUNTS_CACHE")); |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
675 |
} |
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2149
diff
changeset
|
676 |
|
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
677 |
void HWNewNet::partRoom() |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
678 |
{ |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
679 |
netClientState = 2; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
680 |
RawSendNet(QString("PART")); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
681 |
} |
1671 | 682 |
|
683 |
bool HWNewNet::isInRoom() |
|
684 |
{ |
|
685 |
return netClientState > 2; |
|
686 |
} |
|
1925 | 687 |
|
688 |
void HWNewNet::newServerMessage(const QString & msg) |
|
689 |
{ |
|
690 |
RawSendNet(QString("SET_SERVER_MESSAGE%1%2").arg(delimeter).arg(msg)); |
|
691 |
} |