author | unc0rr |
Mon, 09 Mar 2009 10:54:44 +0000 | |
changeset 1875 | 189370d394db |
parent 1873 | 815a3ff1fe4b |
child 1878 | b3b277d2b891 |
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> |
22 |
||
23 |
#include <QtCrypto> |
|
315 | 24 |
|
697 | 25 |
#include "hwconsts.h" |
315 | 26 |
#include "newnetclient.h" |
27 |
#include "proto.h" |
|
28 |
#include "gameuiconfig.h" |
|
29 |
#include "game.h" |
|
334 | 30 |
#include "gamecfgwidget.h" |
347 | 31 |
#include "teamselect.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 |
{ |
1418 | 44 |
connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead())); |
45 |
connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect())); |
|
46 |
connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect())); |
|
47 |
connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, |
|
48 |
SLOT(displayError(QAbstractSocket::SocketError))); |
|
315 | 49 |
} |
50 |
||
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
51 |
HWNewNet::~HWNewNet() |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
52 |
{ |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
53 |
if (m_game_connected) |
1800 | 54 |
{ |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
55 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1800 | 56 |
emit Disconnected(); |
57 |
} |
|
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
58 |
NetSocket.flush(); |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
59 |
} |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
60 |
|
315 | 61 |
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
62 |
{ |
|
1418 | 63 |
mynick = nick; |
64 |
NetSocket.connectToHost(hostName, port); |
|
315 | 65 |
} |
66 |
||
67 |
void HWNewNet::Disconnect() |
|
68 |
{ |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
69 |
if (m_game_connected) |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
70 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
71 |
m_game_connected = false; |
1800 | 72 |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
73 |
NetSocket.disconnectFromHost(); |
315 | 74 |
} |
75 |
||
1082 | 76 |
void HWNewNet::CreateRoom(const QString & room) |
315 | 77 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
78 |
if(netClientState != 2) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
79 |
{ |
1321 | 80 |
qWarning("Illegal try to 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
|
81 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
82 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
83 |
|
1082 | 84 |
RawSendNet(QString("CREATE%1%2").arg(delimeter).arg(room)); |
1336
4e88eccbe7f6
Fix team colors mismatch on some conditions (just synchronize them when team is added)
unc0rr
parents:
1333
diff
changeset
|
85 |
m_pGameCFGWidget->setEnabled(true); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
86 |
m_pTeamSelWidget->setInteractivity(true); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
87 |
isChief = true; |
1082 | 88 |
} |
89 |
||
90 |
void HWNewNet::JoinRoom(const QString & room) |
|
91 |
{ |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
92 |
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
|
93 |
{ |
1321 | 94 |
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
|
95 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
96 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
97 |
|
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
98 |
loginStep++; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
99 |
|
1082 | 100 |
RawSendNet(QString("JOIN%1%2").arg(delimeter).arg(room)); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
101 |
m_pGameCFGWidget->setEnabled(false); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
102 |
m_pTeamSelWidget->setInteractivity(false); |
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 |
{ |
|
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1683
diff
changeset
|
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()) { |
158 |
QString s = QString::fromUtf8(NetSocket.readLine().trimmed()); |
|
159 |
||
160 |
if (s.size() == 0) { |
|
161 |
ParseCmd(cmdbuf); |
|
162 |
cmdbuf.clear(); |
|
163 |
} else |
|
164 |
cmdbuf << s; |
|
165 |
} |
|
315 | 166 |
} |
167 |
||
168 |
void HWNewNet::OnConnect() |
|
169 |
{ |
|
170 |
} |
|
171 |
||
172 |
void HWNewNet::OnDisconnect() |
|
173 |
{ |
|
1875 | 174 |
if(m_game_connected) emit Disconnected(); |
175 |
m_game_connected = false; |
|
315 | 176 |
} |
177 |
||
178 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
179 |
{ |
|
1800 | 180 |
emit Disconnected(); |
181 |
||
1302 | 182 |
switch (socketError) { |
183 |
case QAbstractSocket::RemoteHostClosedError: |
|
184 |
break; |
|
185 |
case QAbstractSocket::HostNotFoundError: |
|
1800 | 186 |
emit showMessage(tr("The host was not found. Please check the host name and port settings.")); |
1302 | 187 |
break; |
188 |
case QAbstractSocket::ConnectionRefusedError: |
|
1800 | 189 |
emit showMessage(tr("Connection refused")); |
1302 | 190 |
break; |
191 |
default: |
|
1800 | 192 |
emit showMessage(NetSocket.errorString()); |
1302 | 193 |
} |
315 | 194 |
} |
195 |
||
1082 | 196 |
void HWNewNet::ParseCmd(const QStringList & lst) |
315 | 197 |
{ |
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1683
diff
changeset
|
198 |
qDebug() << "Server: " << lst; |
1305 | 199 |
|
200 |
if(!lst.size()) |
|
201 |
{ |
|
202 |
qWarning("Net client: Bad message"); |
|
203 |
return; |
|
204 |
} |
|
320 | 205 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
206 |
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
|
207 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
208 |
mynick = lst[1]; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
209 |
return ; |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
210 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
211 |
|
1305 | 212 |
if (lst[0] == "ERROR") { |
213 |
if (lst.size() == 2) |
|
1600 | 214 |
emit showMessage("Error: " + lst[1]); |
1305 | 215 |
else |
1600 | 216 |
emit showMessage("Unknown error"); |
1305 | 217 |
return; |
218 |
} |
|
315 | 219 |
|
1307 | 220 |
if (lst[0] == "WARNING") { |
221 |
if (lst.size() == 2) |
|
1600 | 222 |
emit showMessage("Warning: " + lst[1]); |
1307 | 223 |
else |
1600 | 224 |
emit showMessage("Unknown warning"); |
1307 | 225 |
return; |
226 |
} |
|
227 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
228 |
if (lst[0] == "CONNECTED") { |
1471 | 229 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
230 |
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
|
231 |
netClientState = 1; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
232 |
m_game_connected = true; |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
233 |
emit adminAccess(false); |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
234 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
235 |
} |
315 | 236 |
|
1462 | 237 |
if (lst[0] == "PING") { |
238 |
RawSendNet(QString("PONG")); |
|
239 |
return; |
|
240 |
} |
|
241 |
||
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
242 |
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
|
243 |
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
|
244 |
tmp.removeFirst(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
245 |
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
|
246 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
247 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
248 |
|
1377 | 249 |
if (lst[0] == "SERVER_MESSAGE") { |
250 |
if(lst.size() < 2) |
|
251 |
{ |
|
252 |
qWarning("Net: Empty SERVERMESSAGE message"); |
|
253 |
return; |
|
254 |
} |
|
255 |
emit serverMessage(lst[1]); |
|
256 |
return; |
|
257 |
} |
|
258 |
||
1815 | 259 |
if (lst[0] == "CHAT") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
260 |
if(lst.size() < 3) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
261 |
{ |
1815 | 262 |
qWarning("Net: Empty CHAT message"); |
1377 | 263 |
return; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
264 |
} |
1568 | 265 |
if (netClientState == 2) |
266 |
emit chatStringLobby(formatChatMsg(lst[1], lst[2])); |
|
267 |
else |
|
268 |
emit chatStringFromNet(formatChatMsg(lst[1], lst[2])); |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
269 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
270 |
} |
453 | 271 |
|
1577 | 272 |
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
|
273 |
if(lst.size() < 5) |
1577 | 274 |
{ |
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
|
275 |
qWarning("Net: Malformed INFO message"); |
1577 | 276 |
return; |
277 |
} |
|
278 |
QStringList tmp = lst; |
|
279 |
tmp.removeFirst(); |
|
280 |
if (netClientState == 2) |
|
1587 | 281 |
emit chatStringLobby(tmp.join("\n")); |
1577 | 282 |
else |
1587 | 283 |
emit chatStringFromNet(tmp.join("\n")); |
1577 | 284 |
return; |
285 |
} |
|
286 |
||
1405 | 287 |
if (lst[0] == "READY") { |
1829 | 288 |
if(lst.size() < 2) |
1405 | 289 |
{ |
290 |
qWarning("Net: Malformed READY message"); |
|
291 |
return; |
|
292 |
} |
|
1829 | 293 |
for(int i = 1; i < lst.size(); ++i) |
294 |
{ |
|
295 |
if (lst[i] == mynick) |
|
296 |
emit setMyReadyStatus(true); |
|
297 |
emit setReadyStatus(lst[i], true); |
|
298 |
} |
|
1405 | 299 |
return; |
300 |
} |
|
1591 | 301 |
|
1405 | 302 |
if (lst[0] == "NOT_READY") { |
1829 | 303 |
if(lst.size() < 2) |
1405 | 304 |
{ |
305 |
qWarning("Net: Malformed NOT_READY message"); |
|
306 |
return; |
|
307 |
} |
|
1829 | 308 |
for(int i = 1; i < lst.size(); ++i) |
309 |
{ |
|
310 |
if (lst[i] == mynick) |
|
311 |
emit setMyReadyStatus(false); |
|
312 |
emit setReadyStatus(lst[i], false); |
|
313 |
} |
|
1405 | 314 |
return; |
315 |
} |
|
316 |
||
1325 | 317 |
if (lst[0] == "ADD_TEAM") { |
1683 | 318 |
if(lst.size() != 23) |
1321 | 319 |
{ |
1325 | 320 |
qWarning("Net: Bad ADDTEAM message"); |
1321 | 321 |
return; |
322 |
} |
|
323 |
QStringList tmp = lst; |
|
324 |
tmp.removeFirst(); |
|
325 |
emit AddNetTeam(tmp); |
|
326 |
return; |
|
327 |
} |
|
315 | 328 |
|
1338 | 329 |
if (lst[0] == "REMOVE_TEAM") { |
330 |
if(lst.size() != 2) |
|
331 |
{ |
|
332 |
qWarning("Net: Bad REMOVETEAM message"); |
|
333 |
return; |
|
334 |
} |
|
335 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1])); |
|
336 |
return; |
|
337 |
} |
|
347 | 338 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
339 |
if(lst[0] == "ROOMABANDONED") { |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
340 |
netClientState = 2; |
1600 | 341 |
emit showMessage(HWNewNet::tr("Room destroyed")); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
342 |
emit LeftRoom(); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
343 |
return; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
344 |
} |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
345 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
346 |
if(lst[0] == "JOINED") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
347 |
if(lst.size() < 2) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
348 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
349 |
qWarning("Net: Bad JOINED message"); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
350 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
351 |
} |
1311 | 352 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
353 |
for(int i = 1; i < lst.size(); ++i) |
1311 | 354 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
355 |
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
|
356 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
357 |
netClientState = 3; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
358 |
emit EnteredGame(); |
1860 | 359 |
emit roomMaster(isChief); |
1316 | 360 |
if (isChief) |
1875 | 361 |
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
|
362 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
363 |
emit nickAdded(lst[i]); |
1378 | 364 |
emit chatStringFromNet(QString(tr("*** %1 joined")).arg(lst[i])); |
1311 | 365 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
366 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
367 |
} |
455 | 368 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
369 |
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
|
370 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
371 |
{ |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
372 |
qWarning("Net: Bad JOINED message"); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
373 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
374 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
375 |
|
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
376 |
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
|
377 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
378 |
if (lst[i] == mynick) |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
379 |
{ |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
380 |
netClientState = 2; |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
381 |
RawSendNet(QString("LIST")); |
1842
96a4757dfeb8
Move from 'connecting' page to lobby only when account checked
unc0rr
parents:
1841
diff
changeset
|
382 |
emit Connected(); |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
383 |
} |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
384 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
385 |
emit nickAddedLobby(lst[i]); |
1568 | 386 |
emit chatStringLobby(QString(tr("*** %1 joined")).arg(lst[i])); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
387 |
} |
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 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
390 |
|
1325 | 391 |
if(lst[0] == "LEFT") { |
1310 | 392 |
if(lst.size() < 2) |
393 |
{ |
|
394 |
qWarning("Net: Bad LEFT message"); |
|
395 |
return; |
|
396 |
} |
|
397 |
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
|
398 |
if (lst.size() < 3) |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
399 |
emit chatStringFromNet(QString(tr("*** %1 left")).arg(lst[1])); |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
400 |
else |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
401 |
emit chatStringFromNet(QString(tr("*** %1 left (%2)")).arg(lst[1], lst[2])); |
1310 | 402 |
return; |
403 |
} |
|
461 | 404 |
|
1591 | 405 |
if(lst[0] == "ROOM") { |
406 |
if(lst.size() < 2) |
|
407 |
{ |
|
408 |
qWarning("Net: Bad ROOM message"); |
|
409 |
return; |
|
410 |
} |
|
411 |
RawSendNet(QString("LIST")); |
|
412 |
return; |
|
413 |
} |
|
414 |
||
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
415 |
if(lst[0] == "LOBBY:LEFT") { |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
416 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
417 |
{ |
1581 | 418 |
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
|
419 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
420 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
421 |
emit nickRemovedLobby(lst[1]); |
1568 | 422 |
if (lst.size() < 3) |
423 |
emit chatStringLobby(QString(tr("*** %1 left")).arg(lst[1])); |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
424 |
else |
1568 | 425 |
emit chatStringLobby(QString(tr("*** %1 left (%2)")).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
|
426 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
427 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
428 |
|
1338 | 429 |
if (lst[0] == "RUN_GAME") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
430 |
netClientState = 5; |
1325 | 431 |
RunGame(); |
432 |
return; |
|
433 |
} |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
434 |
|
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
435 |
if (lst[0] == "ASKPASSWORD") { |
1844 | 436 |
QString password = QInputDialog::getText(0, tr("Password"), tr("Enter your password:"), QLineEdit::Password); |
437 |
||
438 |
QCA::Initializer qcaInit; |
|
439 |
QCA::Hash shaHash("md5"); |
|
440 |
shaHash.update(password.toLatin1()); |
|
441 |
QByteArray hashResult = shaHash.final().toByteArray(); |
|
442 |
||
443 |
RawSendNet(QString("PASSWORD%1%2").arg(delimeter).arg(QCA::arrayToHex(hashResult))); |
|
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
444 |
return; |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
445 |
} |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
446 |
|
1325 | 447 |
if (lst[0] == "TEAM_ACCEPTED") { |
448 |
if (lst.size() != 2) |
|
449 |
{ |
|
450 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
451 |
return; |
|
452 |
} |
|
453 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
|
454 |
return; |
|
455 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
456 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
457 |
|
1814 | 458 |
if (lst[0] == "CFG") { |
1319 | 459 |
if(lst.size() < 3) |
460 |
{ |
|
1817 | 461 |
qWarning("Net: Bad CFG message"); |
1319 | 462 |
return; |
463 |
} |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
464 |
QStringList tmp = lst; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
465 |
tmp.removeFirst(); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
466 |
tmp.removeFirst(); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
467 |
emit paramChanged(lst[1], tmp); |
1319 | 468 |
return; |
697 | 469 |
} |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
470 |
|
1327 | 471 |
if (lst[0] == "HH_NUM") { |
472 |
if (lst.size() != 3) |
|
473 |
{ |
|
474 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
475 |
return; |
|
476 |
} |
|
477 |
HWTeam tmptm(lst[1]); |
|
478 |
tmptm.numHedgehogs = lst[2].toUInt(); |
|
479 |
emit hhnumChanged(tmptm); |
|
480 |
return; |
|
481 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
482 |
|
1330 | 483 |
if (lst[0] == "TEAM_COLOR") { |
484 |
if (lst.size() != 3) |
|
485 |
{ |
|
486 |
qWarning("Net: Bad TEAM_COLOR message"); |
|
487 |
return; |
|
488 |
} |
|
489 |
HWTeam tmptm(lst[1]); |
|
490 |
tmptm.teamColor = QColor(lst[2]); |
|
491 |
emit teamColorChanged(tmptm); |
|
492 |
return; |
|
493 |
} |
|
494 |
||
1866 | 495 |
if (lst[0] == "EM") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
496 |
if(lst.size() < 2) |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
497 |
{ |
1866 | 498 |
qWarning("Net: Bad EM message"); |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
499 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
500 |
} |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
501 |
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
|
502 |
{ |
1559
71e1f67dcfe7
Now spectating works for those who joined after game start
unc0rr
parents:
1558
diff
changeset
|
503 |
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
|
504 |
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
|
505 |
} |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
506 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
507 |
} |
573 | 508 |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
509 |
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
|
510 |
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
|
511 |
{ |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
512 |
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
|
513 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
514 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
515 |
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
|
516 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
517 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
518 |
|
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
519 |
|
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
520 |
if (lst[0] == "ADMIN_ACCESS") { |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
521 |
emit adminAccess(true); |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
522 |
return; |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
523 |
} |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
524 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
525 |
qWarning() << "Net: Unknown message:" << lst; |
315 | 526 |
} |
527 |
||
528 |
void HWNewNet::RunGame() |
|
529 |
{ |
|
1310 | 530 |
emit AskForRunGame(); |
431 | 531 |
} |
532 |
||
352 | 533 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
534 |
{ |
|
1330 | 535 |
if (isChief) |
1327 | 536 |
RawSendNet(QString("HH_NUM%1%2%1%3") |
1324 | 537 |
.arg(delimeter) |
538 |
.arg(team.TeamName) |
|
1321 | 539 |
.arg(team.numHedgehogs)); |
352 | 540 |
} |
541 |
||
372 | 542 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
543 |
{ |
|
1330 | 544 |
if (isChief) |
545 |
RawSendNet(QString("TEAM_COLOR%1%2%1%3") |
|
1324 | 546 |
.arg(delimeter) |
547 |
.arg(team.TeamName) |
|
1321 | 548 |
.arg(team.teamColor.name())); |
372 | 549 |
} |
550 |
||
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
551 |
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
|
552 |
{ |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
553 |
if (isChief) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
554 |
RawSendNet( |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
555 |
QString("CFG%1%2%1%3") |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
556 |
.arg(delimeter) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
557 |
.arg(param) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
558 |
.arg(value.join(QString(delimeter))) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
559 |
); |
1797 | 560 |
} |
561 |
||
453 | 562 |
void HWNewNet::chatLineToNet(const QString& str) |
563 |
{ |
|
1568 | 564 |
if(str != "") { |
1815 | 565 |
RawSendNet(QString("CHAT") + delimeter + str); |
1568 | 566 |
emit(chatStringFromMe(formatChatMsg(mynick, str))); |
567 |
} |
|
568 |
} |
|
569 |
||
570 |
void HWNewNet::chatLineToLobby(const QString& str) |
|
571 |
{ |
|
572 |
if(str != "") { |
|
1815 | 573 |
RawSendNet(QString("CHAT") + delimeter + str); |
1568 | 574 |
emit(chatStringFromMeLobby(formatChatMsg(mynick, str))); |
575 |
} |
|
453 | 576 |
} |
1315 | 577 |
|
578 |
void HWNewNet::askRoomsList() |
|
579 |
{ |
|
580 |
if(netClientState != 2) |
|
581 |
{ |
|
1321 | 582 |
qWarning("Illegal try to get rooms list!"); |
1315 | 583 |
return; |
584 |
} |
|
585 |
RawSendNet(QString("LIST")); |
|
586 |
} |
|
1339 | 587 |
|
588 |
bool HWNewNet::isRoomChief() |
|
589 |
{ |
|
590 |
return isChief; |
|
591 |
} |
|
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
592 |
|
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
593 |
void HWNewNet::gameFinished() |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
594 |
{ |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
595 |
netClientState = 3; |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
596 |
RawSendNet(QString("ROUNDFINISHED")); |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
597 |
} |
1378 | 598 |
|
599 |
QString HWNewNet::formatChatMsg(const QString & nick, const QString & msg) |
|
600 |
{ |
|
601 |
if(msg.left(4) == "/me ") |
|
1587 | 602 |
return QString("* %1 %2").arg(nick).arg(msg.mid(4)); |
1378 | 603 |
else |
1587 | 604 |
return QString("%1: %2").arg(nick).arg(msg); |
1378 | 605 |
} |
1391 | 606 |
|
1860 | 607 |
void HWNewNet::banPlayer(const QString & nick) |
608 |
{ |
|
609 |
RawSendNet(QString("BAN%1%2").arg(delimeter).arg(nick)); |
|
610 |
} |
|
611 |
||
1391 | 612 |
void HWNewNet::kickPlayer(const QString & nick) |
613 |
{ |
|
614 |
RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick)); |
|
615 |
} |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
616 |
|
1577 | 617 |
void HWNewNet::infoPlayer(const QString & nick) |
618 |
{ |
|
619 |
RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick)); |
|
620 |
} |
|
621 |
||
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
622 |
void HWNewNet::startGame() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
623 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
624 |
RawSendNet(QString("START_GAME")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
625 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
626 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
627 |
void HWNewNet::toggleRestrictJoins() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
628 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
629 |
RawSendNet(QString("TOGGLE_RESTRICT_JOINS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
630 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
631 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
632 |
void HWNewNet::toggleRestrictTeamAdds() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
633 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
634 |
RawSendNet(QString("TOGGLE_RESTRICT_TEAMS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
635 |
} |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
636 |
|
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
637 |
void HWNewNet::partRoom() |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
638 |
{ |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
639 |
netClientState = 2; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
640 |
RawSendNet(QString("PART")); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
641 |
} |
1671 | 642 |
|
643 |
bool HWNewNet::isInRoom() |
|
644 |
{ |
|
645 |
return netClientState > 2; |
|
646 |
} |